-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (39 loc) · 1.13 KB
/
index.html
File metadata and controls
47 lines (39 loc) · 1.13 KB
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
---
layout: landing
title: Paperstone
tagline:
---
<div class ="container-fluid featured-container">
<div class="row" id="about-title">
<h1><span class="landing-title">Featured Projects</span></h1>
</div>
<div class="row" id="proj-content">
{% for post in site.posts %}
{% if post.featured %}
<div class ="col-sm-4 col-sm-offset-12 featured-col">
<div class="featured-img" style="background-image: url({{site.BASE_PATH}}/img/{{ post.feat-img }});">
<div class="featured-post" onclick="location.href='{{ post.url }}';">
<div class ="post-header">{{ post.title }}</div>
<div class="post-content">
{% if post.fullview %}
{{ post.content }}
{% else %}
{% if post.shortinfo %}
{{ post.shortinfo }}
{% elsif post.description %}
{{ post.description }}
{% else %}
{{ post.excerpt }}
{% endif %}
{% endif %}
</div>
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<div class="row" id="view-more">
<a href="{{ site.BASE_PATH}}/{{ site.posts_path }}">view all</a>
</div>
</div>