diff options
-rw-r--r-- | _config.yml | 15 | ||||
-rw-r--r-- | _layouts/blog.html | 18 | ||||
-rw-r--r-- | _layouts/master.html | 1 |
3 files changed, 25 insertions, 9 deletions
diff --git a/_config.yml b/_config.yml index 238fb12..26be7f0 100644 --- a/_config.yml +++ b/_config.yml @@ -1,19 +1,20 @@ # Config options markdown: kramdown sass: - style: :compressed - sass_dir: _sass + style: :compressed + sass_dir: _sass permalink: /posts/:title/ gems: - - jekyll-redirect-from + - jekyll-redirect-from + - jekyll-feed timezone: America/New_York # Site-level data name: Ben Burwell keywords: - - ben burwell - - software engineer - - developer - - web applications + - ben burwell + - software engineer + - developer + - web applications description: "I like to make awesome things with code. Software engineer, student, hacker. Passionate about kerning and coffee." excerpt_separator: <!--more--> diff --git a/_layouts/blog.html b/_layouts/blog.html index 7ede35a..8d11c64 100644 --- a/_layouts/blog.html +++ b/_layouts/blog.html @@ -8,6 +8,20 @@ layout: master {{ content }} </main> <footer> - <p><a href="/">about</a> ~ <a href="/posts/">posts</a> ~ <a href="/projects/">projects</a> ~ <a href="https://github.com/benburwell">github</a></p> - <p><a href="/license/">© 2016</a> ~ <a href="/privacy/">privacy</a></p> + <p> + <a href="/">about</a> + ~ + <a href="/posts/">posts</a> + ~ + <a href="/projects/">projects</a> + ~ + <a href="https://github.com/benburwell">github</a> + </p> + <p> + <a href="/license/">© 2016</a> + ~ + <a href="/privacy/">privacy</a> + ~ + <a href="/feed.xml">rss</a> + </p> </footer> diff --git a/_layouts/master.html b/_layouts/master.html index 36e39c1..1719260 100644 --- a/_layouts/master.html +++ b/_layouts/master.html @@ -16,6 +16,7 @@ <link rel="apple-touch-icon" href="/assets/images/icons/apple/apple-touch-icon-120x120.png" sizes="120x120"> <link rel="apple-touch-icon" href="/assets/images/icons/apple/apple-touch-icon-144x144.png" sizes="144x144"> <link rel="apple-touch-icon" href="/assets/images/icons/apple/apple-touch-icon-152x152.png" sizes="152x152"> + <link rel="alternate" type="application/atom+xml" title="benburwell.com blog posts" href="/feed.xml"> <meta name="author" content="Ben Burwell"> {% if page.description %} <meta name="description" content="{{ page.description }}"> |