-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·33 lines (28 loc) · 874 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·33 lines (28 loc) · 874 Bytes
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
---
layout: default
---
{% include jumbotron.html %}
<section class="container mt-5" id="work">
<div class="home text-center">
<h1 class="page-heading">Latest Work</h1>
<div class="row my-5">
{% for post in site.posts %}
<div class="col-sm-6 mb-5">
<div class="browser-mockup mb-3">
<a href="{{ site.baseurl }}{{ post.url }}">
<img src="{{ post.image_path }}" alt="{{ post.title }}" class="img-fluid mb-4">
</a>
</div>
<h4>
<a class="post-link" href="{{ site.baseurl }}{{ post.url }}">
<b>{{ post.title | escape }}</b>
</a>
</h4>
<div class="text-sm text-muted">
<a href="{{ post.link }}" target="_blank">{{ post.link }}</a>
</div>
</div>
{% endfor %}
</div>
</div>
</section>