-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·64 lines (62 loc) · 2.71 KB
/
index.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
layout: default
---
<section class="hero is-primary bgheader">
<!--<div class="hero-body" style="background-image: url(/assets/images/ptn.jpg)">-->
<div class="hero-body">
<div class="container is-fluid">
<h1 class="title" style="font-variant: small-caps !important">
<!--<img src="{{ "/assets/images/logo-square-300.png" | prepend: site.baseurl }}" width="32px" height="32px"> -->
<!--<p style="color:#F57C00"></p>-->
GarbageIO
</h1>
<!-- <hr style="width: 16rem"> -->
<h2 class="subtitle">
ML applications with no real world application.
</h2>
</div>
</div>
</section>
<section class="section is-paddingless-touch">
<div class="container is-fluid">
{% for post in paginator.posts %}
<div class="card post-card">
{% if post.thumbnail %}
<div class="card-image">
<figure class="image-card-home">
<a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title }}">
<img src="{{ post.thumbnail | prepend: site.baseurl }}" alt="{{ post.title }}">
</a>
</figure>
</div>
{% endif %}
<div class="card-content">
<h3 class="post-title"><a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h3>
<p class="post-categories">
{% for category in post.categories %}
<a href="/{{ category | prepend: 'categories#category-' | prepend: site.baseurl }}" class="tagg {% if site.data.category[category].color %} is-{{ site.data.category[category].color }} {% endif %}">{{ category }}</a>
{% endfor %}
</p>
{{ post.excerpt }}
{% if post.author %}
<br>
{% assign author = site.authors | where:"name", post.author | first %}
<p><small><i>by <a href="{{ author.url }}">{{ author.name }} </a> on {{ post.date | date: '%B %-d, %Y' }}</i></small></p>
{% endif %}
</div>
</div>
<br>
{% endfor %}
<nav class="pagination is-centered">
<a {% if paginator.previous_page %}href="..{{ paginator.previous_page_path }}"{% endif %} class="pagination-previous {% if paginator.previous_page %}{% else %} is-disabled {% endif %}">Prev</a>
<a {% if paginator.next_page %}href="..{{ paginator.next_page_path }}"{% endif %} class="pagination-next {% if paginator.next_page %}{% else %} is-disabled {% endif %}">Next</a>
<ul class="pagination-list">
{% for page in (1..paginator.total_pages) %}
<li>
<a {% if page == paginator.page %}{% else %} href="{% if page == 1 %}../{% else %}{% if paginator.page != 1 %}../{% endif %}{{ page }}{% endif %}" {% endif %} class="pagination-link {% if page == paginator.page %} is-current {% endif %}">{{ page }}</a>
</li>
{% endfor %}
</ul>
</nav>
</div>
</section>