-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathSinglePage.html
More file actions
365 lines (225 loc) · 16.8 KB
/
SinglePage.html
File metadata and controls
365 lines (225 loc) · 16.8 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
---
title: This is not a book
layout: single
---
<section class="toc">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">Contents</h2>
{% assign sortedpages = site.pages | sort: 'sort' %}
{{ site.pages["Introduction.md"].title }}
<p class="front-matter"><a href="#introduction">Introduction</a></p>
<ol>
{% for page in sortedpages %}{% if page.category == null and page.sort and page.path != "Introduction.md" %}
<li><a href="#{{ page.title | slugify }}">{{ page.title }}</a></li>
{% endif %}{% endfor %}
</ol>
<div class="page-break"> </div>
</section>
<section class="chapter first-chapter">
{% for page in site.pages %}{% if page.path == "Introduction.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "Introduction" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "How_did_we_get_here.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "How_did_we_get_here" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "The_Form_of_the_Thing.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "The_Form_of_the_Thing" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% if page.path == "What_is_digital_writing.md" %}{% for page in sortedpages %}{% if page.category == "What_is_digital_writing" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}{% endif %}{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "What_does_the_reader_want.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{% capture href %}href="#fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture fnid %}id="fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnid %}id="fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnhref %}href="#fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{{ page.content | markdownify | replace: 'href="#fn:', href | replace: 'id="fn:', fnid | replace: 'id="fnref:', returnid | replace: 'href="#fnref:', returnhref }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "What_does_the_reader_want" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{% capture href %}href="#fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture fnid %}id="fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnid %}id="fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnhref %}href="#fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{{ page.content | markdownify | replace: 'href="#fn:', href | replace: 'id="fn:', fnid | replace: 'id="fnref:', returnid | replace: 'href="#fnref:', returnhref }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "What_does_the_writer_want.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "What_does_the_writer_want" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "Transmedia.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "Transmedia" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "What_do_books_do.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{% capture href %}href="#fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture fnid %}id="fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnid %}id="fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnhref %}href="#fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{{ page.content | markdownify | replace: 'href="#fn:', href | replace: 'id="fn:', fnid | replace: 'id="fnref:', returnid | replace: 'href="#fnref:', returnhref }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "What_do_books_do" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{% capture href %}href="#fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture fnid %}id="fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnid %}id="fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnhref %}href="#fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{{ page.content | markdownify | replace: 'href="#fn:', href | replace: 'id="fn:', fnid | replace: 'id="fnref:', returnid | replace: 'href="#fnref:', returnhref }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "Choose_your_structural_grammar.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{% capture href %}href="#fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture fnid %}id="fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnid %}id="fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnhref %}href="#fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{{ page.content | markdownify | replace: 'href="#fn:', href | replace: 'id="fn:', fnid | replace: 'id="fnref:', returnid | replace: 'href="#fnref:', returnhref }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "Choose_your_structural_grammar" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{% capture href %}href="#fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture fnid %}id="fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnid %}id="fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnhref %}href="#fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{{ page.content | markdownify | replace: 'href="#fn:', href | replace: 'id="fn:', fnid | replace: 'id="fnref:', returnid | replace: 'href="#fnref:', returnhref }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "Serial_fiction.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "Serial_fiction" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "Ambience.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "Ambience" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{% capture href %}href="#fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture fnid %}id="fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnid %}id="fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnhref %}href="#fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{{ page.content | markdownify | replace: 'href="#fn:', href | replace: 'id="fn:', fnid | replace: 'id="fnref:', returnid | replace: 'href="#fnref:', returnhref }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "Writing_a_fugue.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{% capture href %}href="#fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture fnid %}id="fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnid %}id="fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnhref %}href="#fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{{ page.content | markdownify | replace: 'href="#fn:', href | replace: 'id="fn:', fnid | replace: 'id="fnref:', returnid | replace: 'href="#fnref:', returnhref }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "Writing_a_fugue" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{% capture href %}href="#fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture fnid %}id="fn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnid %}id="fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{% capture returnhref %}href="#fn-rn-{{ page.path | replace: ".md", "" | replace: "/", "-" }}-{% endcapture %}
{{ page.content | markdownify | replace: 'href="#fn:', href | replace: 'id="fn:', fnid | replace: 'id="fnref:', returnid | replace: 'href="#fnref:', returnhref }}
</article>
{% endif %}{% endfor %}
</section>
<section class="chapter">
{% for page in site.pages %}{% if page.path == "This_is_not_a_disruption.md" %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader-title EntryHeader--SingleChapter-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
{% for page in sortedpages %}{% if page.category == "This_is_not_a_disruption" and page.public != false %}
<article class="h-entry Entry Entry--post Entry--single Entry--singlepage e-content EntryContent EntryContent--page{% if page.tags %} EntryContent--{{ page.tags | first }}{% endif %}" id="{{ page.title | slugify }}">
<h2 class="p-name EntryHeader--Single-title">{{ page.title }}</h2>
{{ page.content | markdownify }}
</article>
{% endif %}{% endfor %}
</section>