-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle.html
60 lines (53 loc) · 1.67 KB
/
article.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
{% extends "__base.html" %}
{% block title %}{{ super() }} | {{ article.title }}{% endblock %}
{% block content %}
<header>
<div class="wrapper">
<a class="header-logo" href="http://www.thecrimson.com/">
<img src="assets/img/logo.png" height="18" width="215">
</a>
<ul class="header-nav">
<a href=""><li><img class="back-arrow" src="assets/img/arrow.png"> Back To YIR</li></a>
</ul>
</div>
</header>
<div class="ad-tag top-leader-ad">Advertisement</div>
<div id="TheCrimson_AllArticles_ATF_728x90" class="leader-ad">
<script type='text/javascript'>
if ($(window).width() >= 728) {
googletag.cmd.push(function() { googletag.display('TheCrimson_AllArticles_ATF_728x90'); });
}
</script>
</div>
<div class="content">
<div class="article-heading">
<div class="article-title">
{{ article.title }}
</div>
{% if article.subhead %}
<div class="article-subhead">
{{ article.subhead }}
</div>
{% endif %}
<div class="landing-article-byline">
by {{ article.contributor_line }}
</div>
</div>
<div class="article-body">
{{ article.text }}
</div>
</div>
<div class="ad-tag">Advertisement</div>
<div id="TheCrimson_AllArticles_BTF_728x90" class="leader-ad">
<script type='text/javascript'>
if ($(window).width() >= 728) {
googletag.cmd.push(function() { googletag.display('TheCrimson_AllArticles_BTF_728x90'); });
}
</script>
</div>
<div class="content">
<div class="article-comments">
<div id="disqus_thread"></div>
</div>
</div>
{% endblock %}