Github page clones from TETRIS-2000 repositionnary
This commit is contained in:
37
_layouts/home.html
Normal file
37
_layouts/home.html
Normal file
@ -0,0 +1,37 @@
|
||||
---
|
||||
layout: page
|
||||
---
|
||||
<img src="https://github.com/adrienmalin/Tetris-2000/raw/gh-pages/screenshots/Tetris2000.png"/>
|
||||
|
||||
{% for post in site.posts limit:10 %}
|
||||
<h2 class="post-title">
|
||||
<a href="{{ post.url | relative_url }}">
|
||||
{{ post.title }}
|
||||
</a>
|
||||
</h2>
|
||||
|
||||
<div class="post-meta">
|
||||
<div class="post-time">
|
||||
<i class="fa fa-calendar-alt"></i>
|
||||
<time datetime='{{ post.date | date: "%Y-%m-%d" }}'>{{ post.date | date_to_string }}</time>
|
||||
</div>
|
||||
<ul>
|
||||
{% for tag in post.tags %}
|
||||
<li><a href="{{'/tag/' | append: tag | relative_url }}">{{ tag }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="post-descr">
|
||||
<p>
|
||||
{{ post.description }}
|
||||
</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
|
||||
<div class="post-footer">
|
||||
<div class="column-full">
|
||||
<h3><a href="{{ '/archive.html' | relative_url }}">Blog archive</a></h3>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user