-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·73 lines (67 loc) · 2.77 KB
/
index.html
File metadata and controls
executable file
·73 lines (67 loc) · 2.77 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
layout: default
title: "Home"
---
<!-- One -->
<section id="one">
<div class="container">
<header class="major">
<h2>{{ site.project.title }}</h2>
<p>by {{ site.title }}</p>
</header>
<p>{{ site.project.title }} is {{ site.project.description }}. It is currently being developed by {{ site.owners | map: "name" | array_to_sentence_string }} as a project for Software Engineering Fundamentals (CEN 3031). When complete, {{ site.project.title }} will be available as a Windows application.</p>
</div>
</section>
<!-- Two -->
<!-- <section id="two">
<div class="container">
<h3>Features</h3>
<p>Integer eu ante ornare amet commetus vestibulum blandit integer in curae ac faucibus integer non. Adipiscing cubilia elementum integer lorem ipsum dolor sit amet.</p>
<ul class="feature-icons">
<li class="fa-code">Write all the code</li>
<li class="fa-cubes">Stack small boxes</li>
<li class="fa-book">Read books and stuff</li>
<li class="fa-coffee">Drink much coffee</li>
<li class="fa-bolt">Lightning bolt</li>
<li class="fa-users">Shadow clone technique</li>
</ul>
</div>
</section> -->
<!-- Three -->
<section id="three">
<div class="container">
<div class="features">
<h3>Recent Journal Entries</h3>
<p>
In accordance with our project requirements, we will be keeping a journal of of progress building {{ site.project.title }}. Our most recent entries are listed below, and all of our entries can be found in the <a href="archive.html">journal archive</a>.
</p>
{% for post in site.posts limit:3 %}
<article>
<section class="excerpt">
<header>
<h3>
<a href="{{ post.url }}">{{ post.title }}</a>
</h3>
</header>
{% if post.excerpt %}
{{ post.excerpt }}
{% else %}
{{ post.content | truncatewords: 30 }}
{% endif %}
</section>
<footer>
<ul class="actions">
<li>
<a href="{{ post.url }}" class="button">Read More</a>
</li>
</ul>
</footer>
<div class="clear"></div>
</article>
{% endfor %}
</div>
<span style="text-align:right;display: inline-block;width:100%;">
<a href="/archive.html" style="align:right;">View All Journal Entries</a>
</span>
</div>
</section>