-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (77 loc) · 2.52 KB
/
index.html
File metadata and controls
98 lines (77 loc) · 2.52 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
---
layout: default
---
<div id="sidebar">
<div class="sidebar-item" id="about">
<h2 class="section_title">About</h2>
<p>I'm <strong>Nick Bain</strong>.</p>
<p>A developer, JavaScript enthusiast and technology fiend.</p>
<ul class="sidebar-item no-bullet">
<li class="contact-item"><a href="https://github.com/NickBain" target="_blank" title="github">/github</a></li>
<li class="contact-item"><a href="https://uk.linkedin.com/pub/nicholas-bain/4b/305/4ab/en" target="_blank" title="twitter_link">/linkedin</a></li>
<li class="contact-item">/nick<span style="display:none">-nay-spam</span>@nbain.co.uk</li>
</ul>
</div>
</div>
<div class="content home-content">
<section>
<h2 class="section_title">Projects</h2>
<p><a href="https://www.logrequest.com">logrequest</a> - a free tool to debug HTTP request. Great for testing webhooks</p>
</section>
<!-- Pagination links -->
<div id="post-pagination" class="pagination">
{% if paginator.total_pages > 1%}
{% if paginator.previous_page %}
<p class="previous">
{% if paginator.previous_page == 1 %}
<a href="/">Previous</a>
{% else %}
<a href="/page{{paginator.previous_page}}">Previous</a>
{% endif %}
</p>
{% else %}
<p class="previous disabled">
<span>Previous</span>
</p>
{% endif %}
<ul class="pages">
<li class="page">
{% if paginator.page == 1 %}
<span class="current-page">1</span>
{% else %}
<a href="/">1</a>
{% endif %}
</li>
{% for count in (2..paginator.total_pages) %}
<li class="page">
{% if count == paginator.page %}
<span class="current-page">{{count}}</span>
{% else %}
<a href="/page{{count}}">{{count}}</a>
{% endif %}
</li>
{% endfor %}
</ul>
{% if paginator.next_page %}
<p class="next">
<a href="/page{{paginator.next_page}}">Next</a>
</p>
{% else %}
<p class="next disabled">
<span>Next</span>
</p>
{% endif %}
{% endif %}
</div>
</div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'nbain'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'http://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>