-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwork.html
78 lines (58 loc) · 2.04 KB
/
work.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
72
73
74
75
76
77
78
---
layout: compress
---
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en-US" }}">
<title> Projects | Pier Paolo Ippolito </title>
{% include head.html %}
<body class="site">
{% if site.google_tag_manager %}
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id={{ site.google_tag_manager }}" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
{% endif %}
{% include header.html %}
<div class="hero--small">
<div class="hero__wrap">
<h1 class="hero__title">Projects</h1>
<a href="{{ site.baseurl }}{% link blog/tags.md %}" class="btn">Search by Tag</a>
</div>
</div>
<main class="site__content">
<section class="blog">
<div class="container">
<!-- Search Bar -->
<div id="search-container">
<input style="padding:5px;border: 4px solid #313237;" type="text" id="search-input" placeholder="Project Search...">
<ul style="list-style-type:none;" id="results-container"></ul>
</div>
<!-- Scripts -->
<script src="/assets/js/search-script.js" type="text/javascript"></script>
<script>
SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('results-container'),
json: '/search2.json'
})
</script>
<div class="post-list" itemscope="" itemtype="http://schema.org/Blog">
{% assign sorted = site.work | reverse %}
{% for post in sorted %}
{% include card.html %}
{% endfor %}
<!-- {% include pagination.html %} -->
</div>
</div>
</section>
</main>
{% include footer.html %}
</body>
<script src="https://unpkg.com/vanilla-back-to-top@7.2.1/dist/vanilla-back-to-top.min.js"></script>
<script>
addBackToTop({
diameter: 56,
backgroundColor: '#313237',
textColor: '#fff'
})
</script>
</html>