-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
53 lines (48 loc) · 1.79 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
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
title: Automation Tails from the FoxHole
food: Pizza
layout: page
show_sidebar: true
hero_image: /assets/images/foxdeployMOUNTAINTOP_hero.webp
---
<style>
meta{
color: #426f86;
font-family: Raleway,Arial,Helvetica,sans-serif;
/* font-size: 13px; */
font-size: 0.6rem;
margin-top: 1em;
}
</style>
{% for post in paginator.posts %}
<h2 style="margin-top: 0em!important;">
<a href="{{ post.url }}" title="Click to view post '{{ post.title }}'">{{ post.title }}</a></h2>
<div class="meta"><span class="icon-list-alt"></span> {{ post.date | date: '%B %d, %Y' }}
<span class="icon-user"></span> FoxDeploy
</div>
<a href="{{ post.url }}" title="This is another link to view the post{{ post.title }}"><img src="{{ post.header }}{{ post.coverImage }}" title="hero graphic for the post {{ post.title }}"></a><br>
{{ post.excerpt }}
<i><a href="{{ post.url }}" style="padding-left:25px;">Continue Reading...</a></i>
<div class="tags">
{% for tag in post.tags %}
{% include tag.html tag=tag %}
{% endfor %}
</div>
<hr>
{% endfor %}
<!-- Pagination links -->
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">Previous</a>
{% else %}
<span class="previous">Previous</span>
{% endif %}
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Next</a>
{% else %}
<span class="next ">Next</span>
{% endif %}
</div>