Added a Subtitle an created the style: ...
I have added a subtitle to the configuration file an edit the blogthon.cgi that the subtitle is readed out the config. Also I have edit the blogthon.css: the header are no longer a "table".
This commit is contained in:
parent
b4fac7f455
commit
0f9a7136ff
@ -58,6 +58,8 @@ configuration.read('configuration')
|
|||||||
|
|
||||||
try: blog_title = configuration.get('personal', 'blog_title')
|
try: blog_title = configuration.get('personal', 'blog_title')
|
||||||
except: errorpage("blog_title")
|
except: errorpage("blog_title")
|
||||||
|
try: blog_subtitle = configuration.get('personal', 'blog_subtitle')
|
||||||
|
except: errorpage("blog_subtitle")
|
||||||
try: blog_url = configuration.get('personal', 'blog_url')
|
try: blog_url = configuration.get('personal', 'blog_url')
|
||||||
except: errorpage("blog_url")
|
except: errorpage("blog_url")
|
||||||
try: keywords = configuration.get('personal', 'keywords')
|
try: keywords = configuration.get('personal', 'keywords')
|
||||||
@ -206,6 +208,9 @@ else:
|
|||||||
print ' <div class="header_title">'
|
print ' <div class="header_title">'
|
||||||
print ' <a href="?" class="header_link">' + blog_title + '</a>'
|
print ' <a href="?" class="header_link">' + blog_title + '</a>'
|
||||||
print ' </div>'
|
print ' </div>'
|
||||||
|
print ' <div class="header_subtitle">'
|
||||||
|
print ' <span class="header_subtitle">' + blog_subtitle + '</span>'
|
||||||
|
print ' </div>'
|
||||||
print ' </div>'
|
print ' </div>'
|
||||||
print ''
|
print ''
|
||||||
# RSS feed
|
# RSS feed
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
[personal]
|
[personal]
|
||||||
blog_title: A BlogThon Blog
|
blog_title: A BlogThon Blog
|
||||||
|
blog_subtitle: Subtitle
|
||||||
blog_url: http://www.thehappy.de/
|
blog_url: http://www.thehappy.de/
|
||||||
keywords: please,change,me
|
keywords: please,change,me
|
||||||
entries_dir: entries/
|
entries_dir: entries/
|
||||||
|
BIN
styles/.blogthon.css.swp
Normal file
BIN
styles/.blogthon.css.swp
Normal file
Binary file not shown.
@ -17,13 +17,14 @@ a {
|
|||||||
color: #AA4444;
|
color: #AA4444;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* --- header --- */
|
||||||
|
|
||||||
div.header {
|
div.header {
|
||||||
height: 120px;
|
height: 120px;
|
||||||
width: 99%;
|
width: 99%;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
display: table;
|
|
||||||
border: 3px double #000000;
|
border: 3px double #000000;
|
||||||
background-image: url("blogthon_img/header_background.jpg");
|
background-image: url("blogthon_img/header_background.jpg");
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
@ -32,13 +33,7 @@ div.header {
|
|||||||
div.header_title {
|
div.header_title {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
letter-spacing: 5px;
|
letter-spacing: 5px;
|
||||||
vertical-align: middle;
|
margin-top: 50px;
|
||||||
display: table-cell;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.header_subtitle {
|
|
||||||
font-size: 14px;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a.header_link {
|
a.header_link {
|
||||||
@ -48,6 +43,17 @@ div.header {
|
|||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.header_subtitle {
|
||||||
|
margin-left: 80px;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.header_subtitle {
|
||||||
|
letter-spacing: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* --- --- */
|
||||||
|
|
||||||
div.rss {
|
div.rss {
|
||||||
display: inline;
|
display: inline;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
@ -61,6 +67,8 @@ div.rss {
|
|||||||
color: #AAAAAA;
|
color: #AAAAAA;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* --- atom --- */
|
||||||
|
|
||||||
div.atom {
|
div.atom {
|
||||||
display: inline;
|
display: inline;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
|
Loading…
Reference in New Issue
Block a user