mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 15:55:04 +00:00
Update index.html
This commit is contained in:
parent
7225a43d73
commit
a7514880bd
1 changed files with 7 additions and 4 deletions
|
@ -8,6 +8,7 @@
|
||||||
<title>{{ site.title }}</title>
|
<title>{{ site.title }}</title>
|
||||||
<meta name="description" content="{{ site.description }}">
|
<meta name="description" content="{{ site.description }}">
|
||||||
<link rel="canonical" href="{{ site.url }}/">
|
<link rel="canonical" href="{{ site.url }}/">
|
||||||
|
<link rel="alternate" type="application/atom+xml" href="/feed.xml">
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
/* Fonts */
|
/* Fonts */
|
||||||
@font-face {
|
@font-face {
|
||||||
|
@ -404,10 +405,12 @@
|
||||||
<h2>News</h2>
|
<h2>News</h2>
|
||||||
<div id="box">
|
<div id="box">
|
||||||
<ul>
|
<ul>
|
||||||
{% for post in site.posts %}<li>
|
{% for post in site.posts %}
|
||||||
|
<li>
|
||||||
{{ post.content }}
|
{{ post.content }}
|
||||||
<span>{{ post.date | date: "%B %e, %Y" }}</span>
|
<span>{{ post.date | date: "%B %e, %Y" }}</span>
|
||||||
</li>{% endfor %}
|
</li>
|
||||||
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue