-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (109 loc) · 4.5 KB
/
index.html
File metadata and controls
129 lines (109 loc) · 4.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
# front matter tells Jekyll to process Liquid
# variable
layout: default
title: Home
---
<div >
<article class="post">
<div class="post-content">
Preview of my projects
<br>
<div class="projects row">
{% assign items = site.projects | reverse %}
{% for project in items limit:2 %}
{% if project.show %}
<div class="project-item col-md-4 col-sm-6 col-xs-12" data-tags='{{ project.tags | jsonify | downcase }}'>
<div class="well project-outer">
<div class="project-inner">
<!-- <a href="/static/projects/{{ project.image }}" class="thickbox"> -->
<!-- <div class="project-img bordered" style="background-image: url('/static/projects/{{ project.image }}');"></div>
</a> -->
<!-- <p>{{ project.image | prepend: site.baseurl }}</p> -->
<img src="{{ project.image | prepend: site.baseurl }}" class=" img-thumbnail project-img bordered" alt="{{ image_alt }}" />
{% if project.url %} <a href="{{ project.url }}"> {% endif %}
<h3 class="project-headlines">{{ project.project_title }}</h3>
{% if project.url %} </a> {% endif %}
<div class="project-content">
<div class="tag-holder">
{% if project.tags %}
{% for j in project.tags limit: 5 %}
<span class="label tags tag-filter" data-tag="{{ j | downcase }}">{{ j }}</span>
{% endfor %}
{% endif %}
</div>
</div>
<div class="project-footer">
{% if project.url %}
<a href="{{ project.url }}" class="btn btn-info btn-raised btn-sm project-link">View</a>
{% endif %}
</div>
</div>
</div>
</div>
{% endif %}
{% endfor %}
<div class="project-item col-md-4 col-sm-6 col-xs-12">
<div class="well project-outer">
<div class="project-inner">
<div class="project-content">
<a class="btn btn-primary btn-lg btn-block center" href="/projects" role="button">See more...</a>
</div>
</div>
</div>
</div>
</div>
</div>
</article>
<!-- <h2>
This home page is a WIP, if you are here to see my portfolio, please go to the Projects tab. <br> <br> </h2> -->
<!-- <div class="list-group">
{% for post in paginator.posts %}
<div class="list-group-item">
<div class="row-action-primary">
<i class="fa fa-sticky-note"></i>
</div>
<div class="row-content">
<div class="least-content">{{ post.date | date_to_string }}</div>
<h4 class="list-group-item-heading"><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h4>
<p class="list-group-item-text">{{ post.content | strip_html | truncatewords: 20 }}</p>
</div>
</div>
<div class="list-group-separator"></div>
{% endfor %}
</div>-->
<!-- Pagination links -->
<!--{% if paginator.total_pages > 1 %}
<ul class="pager">
{% if paginator.previous_page %}
<li class="previous">
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">«</a>
</li>
{% else %}
<li class="previous disabled"><span aria-hidden="true">«</span></li>
{% endif %}
<li><a href="/">First</a></li>
{% for page in (1..paginator.total_pages) %}
{% if page == paginator.page %}
<li class="active">
<a>{{ page }}<span class="sr-only">(current)</span></a>
</li>
{% elsif page == 1 %}
<li><a href="/">{{ page }}</a></li>
{% else %}
<li>
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a>
</li>
{% endif %}
{% endfor %}
<li><a href="/page{{ paginator.total_pages }}/">Last</a></li>
{% if paginator.next_page %}
<li class="next">
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">»</a>
</li>
{% else %}
<li class="next disabled"><span>»</span></li>
{% endif %}
</ul>
{% endif %} -->
</div><!-- end #home -->