-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (102 loc) · 4.14 KB
/
index.html
File metadata and controls
112 lines (102 loc) · 4.14 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
---
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>
<p id="qed" style="color: #999;">☐</p>
<!-- the endfor would go here if I displayed the full first post-->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- experimenting with comments -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
{% if post.comments %}
{% include comments.html %}
{% endif %}
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- ~~~~~~end experiment~~~~~~~ -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
{% endfor %}
</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 interjectionRowWrapper">
<div class="columnBoundingBox interjectionColumnWrapper">
<div>
<script language = "JavaScript">
showQuotation();
</script>
</div>
</div> <!-- end of interjectionColumnWrapper -->
</div> <!-- end of rowBoundingBox -->
<div class="rowBoundingBox" id="recentRowWrapper">
<div class="columnBoundingBox" id="recentColumnWrapper">
<div id="recentTitleParagraph">
{% for post in site.posts offset: 1 limit: 49 %}
<div>
<p style="display: inline; font-family: monospace;">
{{ post.date | date_to_string }}
</p>
<h2 class="postTitle">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
</div>
<!-- <span class="paraTitleSep">Ω</span> -->
{% endfor %}
<!-- {% for post in site.posts offset: 10 limit: 1 %}
<div>
<h2 class="postTitle">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<p style="display: inline;">
{{ post.date | date_to_string }}
</p>
</div>
{% endfor %} -->
</div>
</div>
</div>
<!-- THIS IS THE BEGINNING OF DEFAULT LAYOUT, END OF INDEX/POST CONTENT -->