-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (64 loc) · 2.42 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
65
66
67
68
69
70
71
---
layout: default
title: Home
about: Lorem ipsum dolor sit amet, ne ius unum solet, denique detraxit in sed, id dicat inimicus has. Eam dico option in. Ne qui erat graeci. Scripta utroque temporibus ne est, tempor laboramus sed ut. Sed probo definitiones cu, cum ut exerci evertitur, indoctum sapientem per eu. Nec te eirmod vocent dolorem, eu nec labores urbanitas. Qui wisi ubique libris in, et erant putant habemus nec. Tamquam copiosae mnesarchum duo no. Cum no utamur tritani evertitur, vel ex munere petentium salutatus, ei verear labitur sententiae nam. Te erat possim detracto has, mei ad tamquam aliquid.
---
<main id="home">
<section id="recent-projects">
<h2>Recent Projects</h2>
<button class="see-all"><a href="{{ site.baseurl }}/projects/">See all</a></button>
<div id="slider-wrapper">
<ul>
{% for project in site.projects %}
{% if project.show_on_home %}
<li>
<a href="{{ site.baseurl }}{{ project.url }}">
<!-- <img src="http://unsplash.it/248/250?random"> -->
<img src="http://unsplash.it/1130/400?random">
<h2>{{ project.title }}</h2>
<p>{{ project.overview | truncatewords: 18 }}</p>
</a>
</li>
{% endif %}
{% endfor %}
</ul>
<button id="slider-prev"><i class="fa fa-caret-left"></i></button>
<button id="slider-next"><i class="fa fa-caret-right"></i></button>
<div id="slider-info">
<h2 class="slider-title"></h2>
<p class="slider-content"></p>
</div>
</div>
</section>
<hr>
<section id="about">
<h2>About The Program</h2>
<p>{{ page.about }}</p>
</section>
<hr>
<section id="recent-resource">
<h2>Recent Resources Post</h2>
<button class="see-all"><a href="{{ site.baseurl }}/resources/">See all</a></button>
<div id="resource-content">
{% for resource in site.resources limit: 1 %}
<a href="{{ site.baseurl }}{{ resource.url }}">
<img src="http://unsplash.it/350?random">
<div class="resource-info">
<h3 class="resource-date">{{ resource.date }}</h3>
<h2 class="resource-title">{{ resource.title }}</h2>
<h3 class="resource-author">Written by {{ resource.author }}</h3>
<h4 class="resource-tags">
Tags:
{% for tag in resource.tags %}
<span>{{ tag }}</span>
{% endfor %}
</h4>
<div class="resource-text">
{{ resource.content | truncatewords: 80 }}
</div>
</div>
</a>
{% endfor %}
</div>
</section>
</main>