about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2015-03-09 12:38:03 -0700
committerCase Duckworth2015-03-09 12:38:03 -0700
commit731be1feff43100b367737404bbef3f93d4b3e9b (patch)
treebd3531f5be7a9b08380bdaea29c1b161bb9e4c79
parentUpdate README (diff)
downloadautocento-731be1feff43100b367737404bbef3f93d4b3e9b.tar.gz
autocento-731be1feff43100b367737404bbef3f93d4b3e9b.zip
Re write .thing into #container > .content
-rw-r--r--.TODO.html58
-rw-r--r--.template.html14
-rw-r--r--css/common.css4
-rw-r--r--css/prose.css1
-rw-r--r--css/verse.css5
-rw-r--r--river/.TODO.river65
-rw-r--r--src/.TODO.txt18
-rw-r--r--src/amber-alert.txt5
8 files changed, 20 insertions, 150 deletions
diff --git a/.TODO.html b/.TODO.html deleted file mode 100644 index d36e451..0000000 --- a/.TODO.html +++ /dev/null
@@ -1,58 +0,0 @@
1<!DOCTYPE html>
2<!-- Template for compiled 'Autocento' documents -->
3<html lang="en">
4<head>
5 <meta charset="utf-8">
6 <meta name="generator" content="pandoc">
7 <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
8 <meta name="author" content="Case Duckworth">
9 <!-- more meta tags here -->
10 <title> | Autocento of the breakfast table</title>
11 <!-- general styles & scripts -->
12 <link rel="stylesheet" type="text/css" href="./css/common.css">
13 <script src="./js/lozenge.js" type="text/javascript"> </script>
14 <script src="./js/hylo.js" type="text/javascript"> </script>
15
16 <!--[if lt IE 9]>
17 <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"> </script>
18 <![endif]-->
19 <!-- <script src="js/external.js"> </script> -->
20 </head>
21<body>
22
23 <header>
24 <!-- title -->
25
26
27
28
29 </header>
30
31 <section class="thing ">
32 <h1 id="things-still-to-do-for-autocento.me">THINGS STILL TO DO FOR AUTOCENTO.ME</h1>
33 <ul>
34 <li>Link old poems to new poems</li>
35 <li>add colors &amp; background-colors to projects’ css</li>
36 <li>add a “notes” or “about” page</li>
37 <li>do something about verse:
38 <ul>
39 <li><code>s,&lt;p&gt;\(.*&lt;br /&gt;\),&lt;div class=&quot;stanza&quot;&gt;&lt;p class=&quot;line&quot;&gt;\1,</code> ?</li>
40 <li><code>s,&lt;br /&gt;,&lt;/p&gt;&lt;p class=&quot;line&quot;&gt;,</code> ?</li>
41 </ul></li>
42 <li>think about –html-q-tags option for pandoc</li>
43 <li>think about changing nav links::after to borders
44 <ul>
45 <li>and change :hover thing to contrast hovered navlinks</li>
46 </ul></li>
47 </ul>
48 <h2 id="done">Done</h2>
49 <ul>
50 <li><del>add index page with all pieces</del></li>
51 </ul>
52 </section>
53
54 <nav>
55 <a href="#" id="lozenge" title="Random page"> &loz; </a>
56 </nav>
57</body>
58</html>
diff --git a/.template.html b/.template.html index 8a36551..e3b33e7 100644 --- a/.template.html +++ b/.template.html
@@ -31,6 +31,7 @@
31</head> 31</head>
32<body> 32<body>
33$for(include-before)$ $include-before$ $endfor$ 33$for(include-before)$ $include-before$ $endfor$
34<article id="header">
34 <header> 35 <header>
35 <!-- title --> 36 <!-- title -->
36 $if(title)$<h1 class="title">$title$</h1>$endif$ 37 $if(title)$<h1 class="title">$title$</h1>$endif$
@@ -56,20 +57,23 @@ $for(include-before)$ $include-before$ $endfor$
56 $endif$ 57 $endif$
57 </header> 58 </header>
58 59
59 <section class="thing $genre$"> 60 <section class="content $genre$">
60 $body$ 61 $body$
61 </section> 62 </section>
63</article>
62 64
63 <nav> 65 <nav>
64 $for(project.prev)$ 66 $for(project.prev)$
65 <a class="prevlink" href="$project.prev.link$.html"> 67 <a class="prevlink" href="$project.prev.link$.html"
68 title="Next article$if(project.title)$ in $project.title$$endif$">
66 $project.prev.title$ 69 $project.prev.title$
67 </a> 70 </a>
68 $endfor$ 71 $endfor$
69 <a href="#" id="lozenge" title="Random page"> &loz; </a> 72 <a href="#" id="lozenge" title="Random page"> &loz; </a>
70 $for(project.next)$ 73 $for(project.next)$
71 <a class="nextlink" href="$project.next.link$.html"> 74 <a class="nextlink" href="$project.next.link$.html"
72 $project.next.title$ 75 title="Previous article$if(project.title)$ in $project.title$$endif$">
76 $project.next.title$>
73 </a> 77 </a>
74 $endfor$ 78 $endfor$
75 </nav> 79 </nav>
diff --git a/css/common.css b/css/common.css index 50abb87..f64ad0c 100644 --- a/css/common.css +++ b/css/common.css
@@ -31,8 +31,8 @@ header {
31 max-width: 39em; 31 max-width: 39em;
32 margin: auto; 32 margin: auto;
33} 33}
34.thing { 34#container {
35 max-width: 39em; 35 /* max-width: 39em; */
36 margin: 0 auto; 36 margin: 0 auto;
37 padding-bottom: 24px; 37 padding-bottom: 24px;
38} 38}
diff --git a/css/prose.css b/css/prose.css index 9287279..575278f 100644 --- a/css/prose.css +++ b/css/prose.css
@@ -7,6 +7,7 @@
7 7
8.prose { 8.prose {
9 text-align: justify; 9 text-align: justify;
10 max-width: 39em;
10 hyphens: auto; 11 hyphens: auto;
11 -moz-hyphens: auto; 12 -moz-hyphens: auto;
12} 13}
diff --git a/css/verse.css b/css/verse.css index cce076c..1e04654 100644 --- a/css/verse.css +++ b/css/verse.css
@@ -5,5 +5,10 @@
5 * etc. 5 * etc.
6 */ 6 */
7 7
8#container {
9 text-align: center;
10}
11
8.verse { 12.verse {
13 display: inline-box;
9} 14}
diff --git a/river/.TODO.river b/river/.TODO.river deleted file mode 100644 index b2c99e3..0000000 --- a/river/.TODO.river +++ /dev/null
@@ -1,65 +0,0 @@
1things
2still
3to
4do
5for
6autocento
7me
8link
9old
10poems
11to
12new
13poems
14add
15colors
16&
17background-colors
18to
19projects
20css
21add
22a
23notes
24or
25about
26page
27do
28something
29about
30verse
31s
32\
33*
34\
35\1
36s
37think
38about
39html-q-tags
40option
41for
42pandoc
43think
44about
45changing
46nav
47links
48after
49to
50borders
51and
52change
53hover
54thing
55to
56contrast
57hovered
58navlinks
59done
60add
61index
62page
63with
64all
65pieces
diff --git a/src/.TODO.txt b/src/.TODO.txt deleted file mode 100644 index a0fccba..0000000 --- a/src/.TODO.txt +++ /dev/null
@@ -1,18 +0,0 @@
1THINGS STILL TO DO FOR AUTOCENTO.ME
2===================================
3
4- Link old poems to new poems
5- add colors & background-colors to projects' css
6- add a "notes" or "about" page
7- do something about verse:
8 - `s,<p>\(.*<br />\),<div class="stanza"><p class="line">\1,` ?
9 - `s,<br />,</p><p class="line">,` ?
10
11- think about --html-q-tags option for pandoc
12- think about changing nav links::after to borders
13 - and change :hover thing to contrast hovered navlinks
14
15Done
16----
17
18- ~~add index page with all pieces~~
diff --git a/src/amber-alert.txt b/src/amber-alert.txt index 880f002..bedf681 100644 --- a/src/amber-alert.txt +++ b/src/amber-alert.txt
@@ -22,7 +22,7 @@ project:
22 link: poetry-time 22 link: poetry-time
23... 23...
24 24
25[Lost things have a way of staying lost.][] 25[Lost things][] have a way of [staying lost][].
26They have to want to be found---is that why we tack up signs, hang socks from hooks in the park, have a box for what's been lost but now is found? 26They have to want to be found---is that why we tack up signs, hang socks from hooks in the park, have a box for what's been lost but now is found?
27Maybe the lost *want* to be found but we're looking in the wrong places. 27Maybe the lost *want* to be found but we're looking in the wrong places.
28Maybe we speak the wrong language, the language of the found, to call to them. 28Maybe we speak the wrong language, the language of the found, to call to them.
@@ -30,5 +30,6 @@ Maybe we should [try another door][].
30 30
31![Amber Hagerman](https://upload.wikimedia.org/wikipedia/en/5/54/Amber_Hagerman.jpg) 31![Amber Hagerman](https://upload.wikimedia.org/wikipedia/en/5/54/Amber_Hagerman.jpg)
32 32
33[Lost things]: lappel-du-vide
34[staying lost]: http://www.poetryfoundation.org/poem/176996
33[try another door]: statements-frag.html 35[try another door]: statements-frag.html
34[Lost things have a way of staying lost.]: lappel-du-vide