forked from madewithangular/madewithangular.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
travel.html
24 lines (24 loc) · 793 Bytes
/
travel.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
---
layout: default
title: Home
permalink: /categories/travel/
---
<div class="projects row">
{% for post in site.categories.travel %}
<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>
{% endfor %}
</div>