1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-02 14:57:50 +01:00
gojekyll/example/github-metadata.md

21 lines
344 B
Markdown
Raw Permalink Normal View History

---
title: GitHub Metadata
---
# {{ page.title }}
2017-08-14 21:23:00 +02:00
{% if jekyll.version contains 'gojekyll' %}
<table>
{% for k in site.github %}
<tr>
<th style="text-align: left; vertical-align: top">{{ k }}</th>
<td>
<div style="max-height: 100px; overflow: scroll">{{ site.github[k] }}
</td>
</tr>
{% endfor %}
</table>
2017-08-14 21:23:00 +02:00
{% endif %}