This repository was archived by the owner on Feb 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnews.html
More file actions
executable file
·70 lines (54 loc) · 2.18 KB
/
news.html
File metadata and controls
executable file
·70 lines (54 loc) · 2.18 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
---
layout:
title: News
published: false
---
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body>
{% include navbar.html %}
<!-- *****************************************************************************************************************
BLUE WRAP
***************************************************************************************************************** -->
<div id="blue">
<div class="container">
<div class="row">
<h3>News.</h3>
</div><!-- /row -->
</div> <!-- /container -->
</div><!-- /blue -->
<!-- *****************************************************************************************************************
BLOG CONTENT
***************************************************************************************************************** -->
<div class="container mtb">
<div class="row">
<! -- BLOG POSTS LIST -->
<div class="col-lg-8">
{% for post in site.posts limit: 5 %}
{% if post.image != empty %}<p><img class="img-responsive" src="{{ post.image }}"></p>{% endif %}
<a href="{{ post.url }}"><h3 class="ctitle">{{ post.title }}</h3></a>
<p><csmall>Posted: {{ post.date | date_to_string }}.</csmall> | <csmall2>By: {{ post.author }}</csmall2></p>
{{ post.excerpt }}
<p><a href="{{ post.url }}">[Read More]</a></p>
<div class="hline"></div>
<div class="spacing"></div>
{% endfor %}
</div><! --/col-lg-8 -->
{% include post_sidebar.html %}
</div><! --/row -->
</div><! --/container -->
{% include footer.html %}
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="/assets/js/bootstrap.min.js"></script>
<script src="/assets/js/retina-1.1.0.js"></script>
<script src="/assets/js/jquery.hoverdir.js"></script>
<script src="/assets/js/jquery.hoverex.min.js"></script>
<script src="/assets/js/jquery.prettyPhoto.js"></script>
<script src="/assets/js/jquery.isotope.min.js"></script>
<script src="/assets/js/custom.js"></script>
</body>
</html>