-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathweb.html
More file actions
49 lines (49 loc) · 1.89 KB
/
web.html
File metadata and controls
49 lines (49 loc) · 1.89 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
---
layout: compress
---
<!DOCTYPE html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"><!--<![endif]-->
<head>
{% include head.html %}
</head>
<body>
{% include nav.html %}
<!-- Header -->
<header class="header" role="banner">
<div class="wrapper animated fadeIn">
<div class="content">
<div class="post-title {% if page.feature %} feature {% endif %}">
<h1>{{ page.title }}</h1>
<h4>{{ page.date | date_to_string }}</h4>
{% if site.reading_time %}
<p class="reading-time">
<i class="fa fa-clock-o"></i>
{% include read-time.html %}
</p><!-- /.entry-reading-time -->
{% endif %}
{% if page.project %}
<a class="btn zoombtn" href="{{site.url}}/projects/">
{% else %}
<a class="btn zoombtn" href="{{site.url}}/posts/">
{% endif %}
<i class="fa fa-chevron-left"></i>
</a>
</div>
{{ content }}
<div class="entry-meta">
{% include meta.html %}
</div>
</div>
</div>
{% if page.comments and site.disqus_shortname %}<section id="disqus_thread" class="animated fadeInUp"></section><!-- /#disqus_thread -->{% endif %}
</header>
{% include scripts.html %}
{% if site.mathjax == true %}
<!-- MathJax -->
<script async src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
{% endif %}
</body>
</html>