diff options
| author | franck cuny <franck@lumberjaph.net> | 2011-02-19 20:43:12 +0100 |
|---|---|---|
| committer | franck cuny <franck@lumberjaph.net> | 2011-02-19 20:43:12 +0100 |
| commit | 59410c172a32f0c397aab3bebaa5b6090fd9bdc7 (patch) | |
| tree | 559bcb8d93d2e57704da7c671e2718c0089dc9a7 | |
| parent | remove contact page, add more stuff to css (diff) | |
| download | lumberjaph-59410c172a32f0c397aab3bebaa5b6090fd9bdc7.tar.gz | |
fix layout for static pages
| -rw-r--r-- | about/index.html | 2 | ||||
| -rw-r--r-- | archives.html | 4 | ||||
| -rw-r--r-- | static/css/screen.css | 12 | ||||
| -rw-r--r-- | talks/index.html | 2 |
4 files changed, 17 insertions, 3 deletions
diff --git a/about/index.html b/about/index.html index ecad6a1..488c609 100644 --- a/about/index.html +++ b/about/index.html @@ -1,6 +1,7 @@ --- layout: default --- +<div id="page"> <section itemscope itemtype="http://data-vocabulary.org/Person"> <h2>About</h2> <p> @@ -32,3 +33,4 @@ layout: default </ul> </p> </section> +</div> diff --git a/archives.html b/archives.html index 38c73aa..9dfb73d 100644 --- a/archives.html +++ b/archives.html @@ -2,11 +2,11 @@ layout: default title: Archives --- - +<div id="page"> <h2>archive</h2> <ul> {% for post in site.posts %} <li><a href="{{ post.url }}">{{ post.title }}</a> <abbr>{{ post.date | date_to_string }}</abbr></li> {% endfor %} </ul> - +</div> diff --git a/static/css/screen.css b/static/css/screen.css index 687dd65..dcac754 100644 --- a/static/css/screen.css +++ b/static/css/screen.css @@ -131,7 +131,7 @@ ul.posts span { border: 0; } -#post { +#post #page { margin: .5em 1.1em .5em 1.1em; } @@ -185,6 +185,16 @@ ul.posts span { margin-top: 2em; } +#page h2 { + border-bottom: 1px solid #ededed; + margin-top: 2em; +} + +#page h3 { + border-bottom: 1px solid #ededed; + margin-top: 2em; +} + #post_title { text-align: left; padding-bottom: .1em; diff --git a/talks/index.html b/talks/index.html index 75db29c..777d312 100644 --- a/talks/index.html +++ b/talks/index.html @@ -1,6 +1,7 @@ --- layout: default --- +<div id="page"> <h2>Previous and Upcoming Talks</h2> <ul> @@ -67,3 +68,4 @@ layout: default <em>Catalyst Advent Calendar</em> — <a href="http://www.catalystframework.org/calendar/2009/19">Writing REST services with Catalyst</a> </li> </ul> +</div> |
