Skip to content

Commit 75c6294

Browse files
committed
second conversion, trying to hook up with new site template
1 parent fe1db7f commit 75c6294

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

_layouts/wiki.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
layout: default
3+
---
4+
<section id="blog" class="container">
5+
<div class="center">
6+
<h2>{{ page.title }}</h2>
7+
<p class="lead">
8+
{{ page.titlebody }}
9+
</p>
10+
</div>
11+
12+
<div class="blog">
13+
<div class="row">
14+
<div class="col-md-8">
15+
<div class="blog-item">
16+
<div class="row">
17+
<div class="col-xs-12 col-sm-2 text-center">
18+
<div class="entry-meta">
19+
<span id="publish_date">{{ page.date | date_to_string }}</span>
20+
<span><i class="fa fa-user"></i> <a href="#">{{ page.author.name }}</a></span>
21+
{% if page.author.twitter %}
22+
<span><i class="fa fa-twitter"></i> <a href="https://www.twitter.com/{{ page.author.twitter }}" target="_blank">{{ page.author.twitter }}</a></span>
23+
{% endif %}
24+
{% if page.author.github %}
25+
<span><i class="fa fa-github"></i> <a href="https://www.github.com/{{ page.author.github }}" target="_blank">{{ page.author.github }}</a></span>
26+
{% endif %}
27+
</div>
28+
</div>
29+
30+
<div class="col-xs-12 col-sm-10 blog-content">
31+
<h2>{{ page.subtitle }}</h2>
32+
{{ content }}
33+
</div>
34+
</div>
35+
</div><!--/.blog-item-->
36+
</div><!--/.col-md-8-->
37+
<aside class="col-md-4">
38+
</aside>
39+
</div><!--/.row-->
40+
</div><!--/.blog-->
41+
</section><!--/#blog-->

0 commit comments

Comments
 (0)