diff options
author | Ben Burwell <ben@benburwell.com> | 2018-02-03 13:40:30 -0500 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2018-02-03 13:40:30 -0500 |
commit | 208821cda116bab74e657d6f0c2cd7c23eff9610 (patch) | |
tree | 2270d719e66c2c45a2cb55f53584795f0cd4f4d3 /_layouts/post.html | |
parent | 72f8e1da25566bb7f9f6df4ff75b5ed0bb015fd2 (diff) |
Vastly simplify site
I was getting tired of feeling like I should put things on my website and keep
it up to date, so I decided to slim it down significantly (from its already
admittedly slim state). No CSS, no JavaScript, just plain old HTML. The posts
are staying for now, though I haven't linked to them from anywhere. Thus they
won't be easily discoverable, but any links that are out there right now
shouldn't break. I've also removed my resume from the site.
Diffstat (limited to '_layouts/post.html')
-rw-r--r-- | _layouts/post.html | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 1449d39..b3dd0c1 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,29 +1,9 @@ --- -layout: blog +layout: master --- -<article itemscope itemtype="http://schema.org/BlogPosting"> - <h1 itemprop="headline">{{ page.title }}</h1> - <p><time datetime="{{ post.date | date: '%Y-%m-%d' }}" itemprop="datePublished">{{ page.date | date: "%-d %B %Y" }}</time></p> +<h1>{{page.title}}</h1> +<p>{{page.date | date: "%Y-%m-%d"}}</p> - <div itemprop="articleBody"> - {{ content }} - </div> -</article> +{{content}} -<footer> - <p> - Share on:<br> - <a title="Share/Discuss on Hacker News" target="_blank" href="https://news.ycombinator.com/submitlink?u=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}&t={{ page.title }}">Hacker News</a><br> - <a title="Share on Twitter" target="_blank" href="https://twitter.com/intent/tweet?text={{ page.title }}&url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}">Twitter</a><br> - <a title="Share on Facebook" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}">Facebook</a><br> - <a title="Share on Google+" target="_blank" href="https://plus.google.com/share?url=http%3A%2F%2Fwww.benburwell.com{{ page.url | cgi_escape }}&t={{ page.title }}">Google Plus</a> - </p> - - <p> - Read more:<br> - {% for related in site.related_posts limit:3 %} - <a href="{{ related.url }}">{{ related.title }}</a><br> - {% endfor %} - </p> -</footer> |