forked from madewithangular/madewithangular.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (36 loc) · 1.17 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
---
layout: default
title: Home
---
<div class="projects row">
{% for post in paginator.posts %}
{% unless post.categories contains 'community' %}
<div class="col-lg-6">
<div class="card">
<a href="/sites/{{ post.slug }}">
<h3>{{ post.title }}</h3>
{% if post.major == 0 %}
<p class="version">Angular at <code>master</code></p>
{% elsif post.major == 1 %}
<p>AngularJS {{ post.version }}</p>
{% else %}
<p>Angular {{ post.version }}</p>
{% endif %}
<img class="lazy" src="/assets/images/site/placeholder.svg" data-src="/assets/images/projects/{{ post.slug }}/thumb.jpg" data-srcset="/assets/images/projects/{{ post.slug }}/thumb.jpg" alt="{{ post.title }}" width="100%">
</a>
</div>
</div>
{% endunless %}
{% endfor %}
</div>
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">
Previous
</a>
{% endif %}
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Next</a>
{% endif %}
</div>