first commit
This commit is contained in:
commit
3f2cec5cb9
27 changed files with 1159 additions and 0 deletions
17
_layouts/post.html
Normal file
17
_layouts/post.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
layout: default
|
||||
---
|
||||
<h1>{{ page.title }}</h1>
|
||||
<div class="post-item">
|
||||
<div class="page-meta">
|
||||
{{ page.date | date_to_string }} - {{ page.author }}
|
||||
{% if page.tags and page.tags.size > 0 %}
|
||||
<ul class="page-tags">
|
||||
{% for tag in page.tags %}
|
||||
<li>{{ tag }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
</div>
|
||||
{{ content }}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue