brew/docs/_layouts/post.html
Mike McQuaid eaf8cc1be0 docs.brew.sh: use brew.sh theming.
Unfortunately there's no easy way to share this code with the brew.sh
site but it's at least able to have the `css/`, `img/` (root) and
`_layouts` directories in sync between the two repositories.

Some small CSS tweaks were needed to make these pages render more
attractively.
2017-03-05 15:25:51 +00:00

12 lines
432 B
HTML

---
layout: base
---
<div id="post">
<h2>{{ page.title }}</h2>
<h3>{{ page.date | date_to_long_string }}</h3>
<h3 class="author"><a href="https://github.com/{{ page.author }}"><img class="avatar" src="https://avatars2.githubusercontent.com/{{ page.author }}?v=3&amp;s=80" alt="{{ page.author }}" width="40" height="40">{{ page.author }}</a></h3>
<div class="postcontent singlepostcontent">
{{ content }}
</div>
</div>