diff options
author | Alan Pearce | 2017-08-29 21:37:44 +0200 |
---|---|---|
committer | Alan Pearce | 2017-08-29 21:37:44 +0200 |
commit | f2daaeb2fd0114831c995fd2b48baf201364dc92 (patch) | |
tree | b742fb0488c52c38758fc9ef9f4fd3a4889f5030 | |
parent | 1938abbd1516e775448af7e9bca58a0a09809270 (diff) | |
download | website-f2daaeb2fd0114831c995fd2b48baf201364dc92.tar.lz website-f2daaeb2fd0114831c995fd2b48baf201364dc92.tar.zst website-f2daaeb2fd0114831c995fd2b48baf201364dc92.zip |
Add about section
-rw-r--r-- | content/_index.md | 4 | ||||
-rw-r--r-- | layouts/index.html | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/content/_index.md b/content/_index.md new file mode 100644 index 0000000..abc687c --- /dev/null +++ b/content/_index.md @@ -0,0 +1,4 @@ +## Hello +Hi. My name is Alan, I currently live in Berlin, where I work as a +Full-stack Engineer. I mostly write about Emacs and +development-related topics. diff --git a/layouts/index.html b/layouts/index.html index 18d5a7f..cbaf82b 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,6 +1,9 @@ {{ partial "head.html" . }} <body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}"> <main class="content container" role="main"> + <section class="about"> + {{ .Content }} + </section> <section class="recent"> <h2>Recent Posts</h2> <ul class="posts"> |