annotate news.md @ 138:88f15c74aa24

Announce OctConf 2018 with alert-box. * _includes/header.html: Add a closeable banner to each page. * _includes/head.html: Include foundation.alert.js.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Mon, 22 Jan 2018 23:44:32 +0100
parents 1222b6208a70
children 585fc24ed727
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
94
e8fc61e077fc Merged closed branch "kai" into default.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
1 ---
96
e7efa40deb17 Fix URLs, Images, Titles to be up with Alex original style.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 94
diff changeset
2 layout: page
94
e8fc61e077fc Merged closed branch "kai" into default.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
3 title: News
96
e7efa40deb17 Fix URLs, Images, Titles to be up with Alex original style.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 94
diff changeset
4 menu: true
94
e8fc61e077fc Merged closed branch "kai" into default.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
5 ---
e8fc61e077fc Merged closed branch "kai" into default.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
6
104
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
7 <section>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
8 <div class="row">
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
9 <div class="columns small-12">
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
10 {% for post in site.posts %}
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
11 <div class="panel callout">
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
12 {% if post == site.posts.first %}
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
13 <a class="right" href="{{ "/feed.xml" | relative_url }}">
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
14 <span class="label warning">
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
15 RSS
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
16 </span>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
17 </a>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
18 {% endif %}
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
19 {% if post.title == "News Archive" %}
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
20 <h3 class="entry-title">
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
21 <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
22 </h3>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
23 {% else %}
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
24 <h3 class="entry-title">
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
25 <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
26 </h3>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
27 <p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</p>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
28 <div class="entry-content">
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
29 {{ post.excerpt }}
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
30 </div>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
31 {% endif %}
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
32 </div>
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
33 {% endfor %}
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
34 </div>
94
e8fc61e077fc Merged closed branch "kai" into default.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
35 </div>
104
1222b6208a70 Take the news-page look of index.html
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 96
diff changeset
36 </section>