-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_bak.html
More file actions
152 lines (144 loc) · 5.34 KB
/
index_bak.html
File metadata and controls
152 lines (144 loc) · 5.34 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
---
layout: default
title: Home
---
<!-- THIS IS THE END OF DEFAULT LAYOUT, BEGINNING OF INDEX/POST CONTENT -->
<div class="rowBoundingBox" id="headerNavRowWrapper">
<div class = "columnBoundingBox" id="headerNavColumnWrapper">
<a href="http://erectlocution.com"><img src="/images/masthead_final_090614_small.png" /></a>
</div> <!-- end of columnBoundingBox -->
</div> <!-- end of rowBoundingBox -->
<div class="rowBoundingBox" id="featuredRowWrapper">
<div class = "columnBoundingBox" id="featuredColumnWrapper">
{% for post in site.posts offset: 0 limit: 1 %}
<h2 class="postTitle">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<div class="excerpt"><!--USING EXCERPT PLUGIN FROM stympy GIST-->
<!-- WILL MERELY USE YAML-BASED EXCERPT, NO PLUGIN -->
{% if post.excerpt %}
{{ post.excerpt | markdownify}}
{% else %}
{{ content }}
{% endif %}
</div>
<div class="postMeta">
{{ post.date | date_to_string }}
</div>
<!-- the endfor would go here if I displayed the first post summary only -->
</div> <!-- end of columnBoundingBox -->
</div> <!-- end of rowBoundingBox -->
<!-- <div class="rowBoundingBox" id="blogTitleRowWrapper">
<div class = "columnBoundingBox" id="blogTitleColumnWrapper"> -->
<!-- <h4>ERECTLOCUTION</h4> -->
<!-- THIS WILL NEED TO BE SHOWN ONLY IN THE INDEX TEMPLATE, NOT THE POST TEMPLATE -->
<!-- <img style="margin: 15px 0px; padding: 0px;" src="/images/masthead_final_090614.png" /> -->
<!-- </div> -- ><!-- end of columnBoundingBox -->
</div> <!-- end of rowBoundingBox -->
<!-- ###### adding the full content of a single post here -->
<div class="rowBoundingBox">
<div class="columnBoundingBox">
<div class="post">
{{ post.content }}
</div>
<!-- the endfor would go here if I displayed the full first post-->
{% endfor %}
<p id="qed">☐</p>
</div> <!-- end of columnBoundingBox -->
</div> <!-- end of rowBoundingBox -->
<div class="rowBoundingBox" id="blogTitleRowWrapper">
<div class = "columnBoundingBox" id="blogTitleColumnWrapper">
<!-- <h4>ERECTLOCUTION</h4> -->
<!-- THIS WILL NEED TO BE SHOWN ONLY IN THE INDEX TEMPLATE, NOT THE POST TEMPLATE -->
<img style="margin: 15px 0px; padding: 0px;" src="/images/masthead_final_090614.png" />
</div> <!-- end of columnBoundingBox -->
</div> <!-- end of rowBoundingBox -->
<!-- ###### /adding the full content of a single post here -->
<div class="rowBoundingBox" id="recentRowWrapper">
<div class="columnBoundingBox" id="recentColumnWrapper">
<div id="recentLeft">
{% for post in site.posts offset: 1 limit: 1 %}
<h2 class="postTitle">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<div class="excerpt">
{% if post.excerpt %}
{{ post.excerpt | markdownify}}
{% else %}
{{ content }}
{% endif %}
</div>
{% endfor %}
</div>
<div id="recentRight">
{% for post in site.posts offset: 2 limit: 1 %}
<h2 class="postTitle">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<div class="excerpt">
{% if post.excerpt %}
{{ post.excerpt | markdownify}}
{% else %}
{{ content }}
{% endif %}
</div>
{% endfor %}
</div>
</div> <!-- end of recentColumnWrapper -->
</div> <!-- end of rowBoundingBox -->
<div class="rowBoundingBox interjectionRowWrapper">
<div class="columnBoundingBox interjectionColumnWrapper">
<div>
<script language = "JavaScript">
showQuotation();
</script>
</div>
</div> <!-- end of interjectionColumnWrapper -->
</div> <!-- end of rowBoundingBox -->
<div class="rowBoundingBox" id="notableRowWrapper">
<div class="columnBoundingBox" id="notableColumnWrapper">
<div id="sectionNotableFirst">
{% for post in site.posts offset: 3 limit: 1 %}
<h2 class="postTitle">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<div class="excerpt">
{% if post.excerpt %}
{{ post.excerpt | markdownify}}
{% else %}
{{ content }}
{% endif %}
</div>
{% endfor %}
</div> <!-- end of sectionNotableFirst -->
<div id="sectionNotableSecond">
{% for post in site.posts offset: 4 limit: 1 %}
<h2 class="postTitle">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<div class="excerpt">
{% if post.excerpt %}
{{ post.excerpt | markdownify}}
{% else %}
{{ content }}
{% endif %}
</div>
{% endfor %}
</div> <!-- end of sectionNotableSecond -->
<div id="sectionNotableThird">
{% for post in site.posts offset: 5 limit: 1 %}
<h2 class="postTitle">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<div class="excerpt">
{% if post.excerpt %}
{{ post.excerpt | markdownify}}
{% else %}
{{ content }}
{% endif %}
</div>
{% endfor %}
</div> <!-- end of sectionNotableThird -->
</div> <!-- end of notableColumnWrapper -->
</div> <!-- end of rowBoundingBox -->
<!-- THIS IS THE BEGINNING OF DEFAULT LAYOUT, END OF INDEX/POST CONTENT -->