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
11
index.html
11
index.html
|
@ -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 {
|
||||||
|
@ -382,8 +383,8 @@
|
||||||
#newscontainer { padding: 2.000em 25% 2.000em 25%; }
|
#newscontainer { padding: 2.000em 25% 2.000em 25%; }
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="intro">
|
<div id="intro">
|
||||||
<div id="introcontainer">
|
<div id="introcontainer">
|
||||||
<i></i>
|
<i></i>
|
||||||
|
@ -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