Welcome to mirror list, hosted at ThFree Co, Russian Federation.

post.html « _layouts - github.com/torch/torch.github.io.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c980c47d7fc1777b7b8771a5744b6950fadb96f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
sectionid: blog
id: blog
---

{% include header.html %}

<section class='content'><div class='width'>

<article class='blogpost'>
    <h1>{{ page.title }}</h1>
    <!-- Look the author details up from the site config. -->
    {% assign author = site.data.authors[page.author] %}

    <p class="meta">{{ page.date | date: "%B %e, %Y" }}
    <!-- Output author details if some exist. -->
    {% if author %}
	    <!-- Personal Info. -->
	    by <a href="{{ author.web }}" target="_blank">{{ author.name }}</a></p>
    {% endif %}


    {{ content }}
    {% include comments.html %}

</article>

</div></section>
{% include footer.html %}