summaryrefslogtreecommitdiffstats
path: root/index.html
diff options
context:
space:
mode:
authorNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-07 16:55:28 +0200
committerNico von Geyso <Nico.Geyso@FU-Berlin.de>2012-07-07 16:55:28 +0200
commit38857a608bab2ea5eb65bfc1c4614033dbf78597 (patch)
tree04a3000340dba8f1dcb99199759b29744cb8b230 /index.html
downloadwww-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.gz
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.tar.bz2
www-38857a608bab2ea5eb65bfc1c4614033dbf78597.zip
initial commit
Diffstat (limited to 'index.html')
-rw-r--r--index.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..b825f9d
--- /dev/null
+++ b/index.html
@@ -0,0 +1,40 @@
+{% meta %}
+ title: Home
+ top_link: 2
+{% endmeta %}
+
+{% block content %}
+<h2>news</h2>
+{% for post in site.posts|batch(3)|first %}
+<p>
+ <a href="{{ post.get_url() }}">{{ post.title }}</a>
+ -
+ {{ post.date.strftime('%Y, %B %d') }}
+</p>
+{% endfor %}
+
+
+<h2>services</h2>
+<ul id="services">
+{% for page in site.pages %}
+ {% if page.service %}
+ <li>
+ <div class="grid_2 alpha">
+ <img src="{{page.logo_url}}" alt="{{page.title}}" />
+ </div>
+
+ <div class="gird_16 omega"
+ <h3>
+ <a href="{{page.get_url()}}">{{page.title}}</a>
+ </h3>
+
+ <p>
+ {{page.description}}
+ </p>
+ </div>
+ </li>
+ {% endif %}
+{% endfor %}
+</ul>
+
+{% endblock %}