Added dev test templates for specific scenarios.
Please read http://board.s9y.org/viewtopic.php?f=11&t=19916 Choosing those templates will probably currently result in errors that need to be addressed.
28
templates/2k11-idea-config/config.inc.php
Normal file
@ -0,0 +1,28 @@
|
||||
<?php
|
||||
if (IN_serendipity !== true) { die ("Don't hack!"); }
|
||||
|
||||
@serendipity_plugin_api::load_language(dirname(__FILE__));
|
||||
|
||||
$serendipity['smarty']->assign('testvar', 'this is parsed!');
|
||||
|
||||
function serendipity_plugin_api_pre_event_hook($event, &$bag, &$eventData, &$addData) {
|
||||
// Check what Event is coming in, only react to those we want.
|
||||
switch($event) {
|
||||
case 'js':
|
||||
// always add newlines to the end of last element, in case of other plugins using this hook and
|
||||
// always start at line Col 1, to populate the (virtual) serendipity.js file
|
||||
echo "
|
||||
// 2k11-idea-config output here!
|
||||
jQuery(function() {
|
||||
jQuery('input[type=\"url\"]').change(function() {
|
||||
if (this.value != '' && ! (this.value.substr(0,7) == 'http://' || this.value.substr(0,8) == 'https://')) {
|
||||
this.value = 'http://' + this.value;
|
||||
}
|
||||
});
|
||||
})\n\n";
|
||||
break;
|
||||
|
||||
return true;
|
||||
break;
|
||||
}
|
||||
}
|
BIN
templates/2k11-idea-config/img/I_had_an_idea.jpg
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
templates/2k11-idea-config/img/bullet.gif
Normal file
After Width: | Height: | Size: 113 B |
BIN
templates/2k11-idea-config/img/clock_face_messy_paint_runs.jpg
Normal file
After Width: | Height: | Size: 638 B |
BIN
templates/2k11-idea-config/img/quote.gif
Normal file
After Width: | Height: | Size: 451 B |
103
templates/2k11-idea-config/index.tpl
Normal file
@ -0,0 +1,103 @@
|
||||
{if $is_embedded != true}
|
||||
<!doctype html>
|
||||
<!--[if lt IE 7 ]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="{$lang}"> <![endif]-->
|
||||
<!--[if IE 7 ]> <html class="no-js lt-ie9 lt-ie8" lang="{$lang}"> <![endif]-->
|
||||
<!--[if IE 8 ]> <html class="no-js lt-ie9" lang="{$lang}"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js" lang="{$lang}"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="{$head_charset}">
|
||||
<title>{$head_title|@default:$blogTitle}{if $head_subtitle} | {$head_subtitle}{/if}</title>
|
||||
<meta name="generator" content="Serendipity v.{$head_version}">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
{if $template_option.webfonts == 'droid'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Droid+Sans:400,700">
|
||||
{elseif $template_option.webfonts == 'ptsans'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=PT+Sans:400,400italic,700,700italic">
|
||||
{elseif $template_option.webfonts == 'osans'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic">
|
||||
{elseif $template_option.webfonts == 'cabin'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Cabin:400,400italic,700,700italic">
|
||||
{elseif $template_option.webfonts == 'ubuntu'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Ubuntu:400,400italic,700,700italic">
|
||||
{elseif $template_option.webfonts == 'dserif'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700,700italic">
|
||||
{/if}
|
||||
<link rel="stylesheet" href="{$head_link_stylesheet}">
|
||||
{if $template_option.userstyles == true}
|
||||
<link rel="stylesheet" href="{serendipity_getFile file="user.css"}">
|
||||
{/if}
|
||||
<script src="{serendipity_getFile file="js/modernizr-2.7.1.min.js"}"></script>
|
||||
<link rel="alternate" type="application/rss+xml" title="{$blogTitle} RSS feed" href="{$serendipityBaseURL}{$serendipityRewritePrefix}feeds/index.rss2">
|
||||
<link rel="alternate" type="application/x.atom+xml" title="{$blogTitle} Atom feed" href="{$serendipityBaseURL}{$serendipityRewritePrefix}feeds/atom.xml">
|
||||
{if $entry_id}
|
||||
<link rel="pingback" href="{$serendipityBaseURL}comment.php?type=pingback&entry_id={$entry_id}">
|
||||
{/if}
|
||||
{serendipity_hookPlugin hook="frontend_header"}
|
||||
<script src="{$head_link_script}"></script>
|
||||
</head>
|
||||
<body{if $template_option.webfonts != 'none'} class="{$template_option.webfonts}"{/if}>
|
||||
{else}
|
||||
{serendipity_hookPlugin hook="frontend_header"}
|
||||
{/if}
|
||||
{if $is_raw_mode != true}
|
||||
<a class="visuallyhidden" href="#content"><span lang="en">Skip to content</span></a>
|
||||
<div id="page" class="clearfix">
|
||||
<header id="banner" class="clearfix{if $leftSidebarElements > 0 && $rightSidebarElements > 0} col3{elseif $leftSidebarElements > 0 && $rightSidebarElements == 0} col2l{else} col2r{/if}{if not $template_option.use_corenav} no-nav{/if}">
|
||||
<div id="identity">
|
||||
TESTVAR: {$testvar}
|
||||
<a href="{$serendipityBaseURL}">
|
||||
<h1>{$blogTitle}</h1>
|
||||
{if $blogDescription}<p>{$blogDescription}</p>{/if}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<form id="searchform" action="{$serendipityHTTPPath}{$serendipityIndexFile}" method="get">
|
||||
<div>
|
||||
<input type="hidden" name="serendipity[action]" value="search">
|
||||
<label for="serendipityQuickSearchTermField">{$CONST.QUICKSEARCH}</label>
|
||||
<input id="serendipityQuickSearchTermField" name="serendipity[searchTerm]" type="search" placeholder="{$CONST.TWOK11_PLACE_SEARCH}" value="">
|
||||
<input id="searchsend" name="serendipity[searchButton]" type="submit" value="{$CONST.GO}">
|
||||
</div>
|
||||
</form>
|
||||
{serendipity_hookPlugin hook="quicksearch_plugin" hookAll="true"}
|
||||
{if $template_option.header_img}
|
||||
<img src="{$template_option.header_img|escape}" alt="">
|
||||
{/if}
|
||||
</header>
|
||||
{if $template_option.use_corenav}
|
||||
<nav id="primary-nav">
|
||||
<h2 class="visuallyhidden">{$CONST.TWOK11_NAV_TITLE}</h2>
|
||||
|
||||
<ul class="clearfix">{foreach from=$navlinks item="navlink" name="sbnav"}{if $navlink.title!=""&&$navlink.href!=""}<li>{if $currpage==$navlink.href or $currpage2==$navlink.href}<span>{else}<a href="{$navlink.href}">{/if}{$navlink.title}{if $currpage==$navlink.href or $currpage2==$navlink.href}</span>{else}</a>{/if}</li>{/if}{/foreach}</ul>
|
||||
</nav>
|
||||
{/if}
|
||||
<div class="clearfix{if $leftSidebarElements > 0 && $rightSidebarElements > 0} col3{elseif $leftSidebarElements > 0 && $rightSidebarElements == 0} col2l{else} col2r{/if}">
|
||||
<main id="content" {if $template_option.imgstyle != 'none'} class="{$template_option.imgstyle}"{/if}>
|
||||
{$CONTENT}
|
||||
</main>
|
||||
{if $leftSidebarElements > 0}
|
||||
<aside id="sidebar_left">
|
||||
<h2 class="visuallyhidden">{$CONST.TWOK11_SIDEBAR}</h2>
|
||||
{serendipity_printSidebar side="left"}
|
||||
</aside>
|
||||
{/if}
|
||||
{if $rightSidebarElements > 0}
|
||||
<aside id="sidebar_right">
|
||||
<h2 class="visuallyhidden">{$CONST.TWOK11_SIDEBAR}</h2>
|
||||
{serendipity_printSidebar side="right"}
|
||||
</aside>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<footer id="colophon">
|
||||
<p><span lang="en">Powered by <a href="http://s9y.org">Serendipity</a> & the <a href="http://github.com/yellowled/s9y-2k11">2k11</a> theme.</span></p>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="{serendipity_getFile file="js/2k11.min.js"}"></script>
|
||||
{/if}
|
||||
{$raw_data}
|
||||
{serendipity_hookPlugin hook="frontend_footer"}
|
||||
{if $is_embedded != true}
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
4
templates/2k11-idea-config/info.txt
Normal file
@ -0,0 +1,4 @@
|
||||
Name: Idea @ 2k11 [DEV-TEST for 2k11-based engines WITH config.inc.php WITH JS hook]
|
||||
Author: Evan Nemerson
|
||||
Date: 2014-05-22
|
||||
Engine: 2k11
|
BIN
templates/2k11-idea-config/preview.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
templates/2k11-idea-config/preview_fullsize.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
425
templates/2k11-idea-config/style.css
Normal file
@ -0,0 +1,425 @@
|
||||
/* HTML Elements */
|
||||
|
||||
body {
|
||||
color: #999;
|
||||
background: white;
|
||||
font-family: verdana, arial, sans-serif;
|
||||
}
|
||||
|
||||
a,
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #336666;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
color: #669999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
h3, h4 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="password"],
|
||||
input[type="button"],
|
||||
input[type="submit"],
|
||||
select,
|
||||
textarea {
|
||||
border: 1px #999 solid;
|
||||
background-color: white;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
input:focus, input:hover,
|
||||
button:focus, button:hover,
|
||||
submit:focus, submit:hover,
|
||||
select:focus, select:hover,
|
||||
textarea:focus, textarea:hover {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
input.radio,
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
border: none;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border: 1px #999 dashed;
|
||||
background-image: url({TEMPLATE_PATH}img/quote.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0.5em 0.5em;
|
||||
padding: 1em;
|
||||
margin: 1em;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-image: url({TEMPLATE_PATH}img/bullet.gif);
|
||||
list-style-type: circle;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
/* Banner */
|
||||
|
||||
#serendipity_banner {
|
||||
background-image: url({TEMPLATE_PATH}img/I_had_an_idea.jpg);
|
||||
background-repeat: no-repeat;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
#serendipity_banner h1 {
|
||||
margin-left: 140px;
|
||||
font-size: x-large;
|
||||
font-variant: small-caps;
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
#serendipity_banner h2 {
|
||||
margin-left: 140px;
|
||||
font-size: small;
|
||||
border-bottom: 1px #999 dashed;
|
||||
}
|
||||
|
||||
a.homelink1,
|
||||
a.homelink1:hover,
|
||||
a.homelink1:link,
|
||||
a.homelink1:visited {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.homelink2,
|
||||
a.homelink2:hover,
|
||||
a.homelink2:link,
|
||||
a.homelink2:visited {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Calendar */
|
||||
|
||||
table.serendipity_calendar a,
|
||||
table.serendipity_calendar a:link,
|
||||
table.serendipity_calendar a:visited {
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
table.serendipity_calendar a:hover {
|
||||
background: #ccc;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
table.serendipity_calendar td {
|
||||
font-size: x-small;
|
||||
padding: 0.2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
td.serendipity_calendarHeader a,
|
||||
td.serendipity_calendarHeader a:link,
|
||||
td.serendipity_calendarHeader a:visited,
|
||||
td.serendipity_calendarHeader a:hover {
|
||||
color: #003366;
|
||||
font-weight: bold;
|
||||
border: 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
/* Sidebars */
|
||||
|
||||
#serendipityLeftSideBar,
|
||||
#serendipityRightSideBar {
|
||||
display: block;
|
||||
padding: 10px;
|
||||
width: 11em;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.serendipitySideBarTitle {
|
||||
font-size: x-small;
|
||||
color: #666;
|
||||
font-weight: bolder;
|
||||
line-height: 140%;
|
||||
padding: 0.2em;
|
||||
padding-left: 1em;
|
||||
letter-spacing: 0.2em;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
#serendipityRightSideBar * .serendipitySideBarTitle {
|
||||
border-left: 1px #666 dashed;
|
||||
}
|
||||
|
||||
#serendipityLeftSideBar * .serendipitySideBarTitle {
|
||||
border-right: 1px #666 dashed;
|
||||
}
|
||||
|
||||
div.serendipitySideBarItem {
|
||||
margin-bottom: 1em;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.serendipitySideBarContent {
|
||||
color: #333;
|
||||
border-top: 1px #666 dashed;
|
||||
font-size: x-small;
|
||||
padding-top: 0.5em;
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
#serendipityRightSideBar * .serendipitySideBarContent {
|
||||
border-right: 1px #666 dashed;
|
||||
}
|
||||
|
||||
#serendipityLeftSideBar * .serendipitySideBarContent {
|
||||
border-left: 1px #666 dashed;
|
||||
}
|
||||
|
||||
/* Entries */
|
||||
|
||||
div.serendipity_Entry_Date {
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
.serendipity_date {
|
||||
color: #999;
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
text-transform: lowercase;
|
||||
margin-bottom: 0.7em;
|
||||
border-bottom: 1px #999 dashed;
|
||||
text-align: right;
|
||||
|
||||
background-image: url({TEMPLATE_PATH}img/clock_face_messy_paint_runs.jpg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: bottom right;
|
||||
height: 21px;
|
||||
padding-right: 60px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.serendipity_title,
|
||||
.serendipity_Admin_title {
|
||||
padding-bottom: 0.7em;
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.serendipity_title a,
|
||||
.serendipity_title a:hover,
|
||||
.serendipity_title a:link,
|
||||
.serendipity_title a:visited,
|
||||
.serendipity_Admin_title a,
|
||||
.serendipity_Admin_title a:hover,
|
||||
.serendipity_Admin_title a:link,
|
||||
.serendipity_Admin_title a:visited {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.serendipity_entry,
|
||||
.serendipity_admin {
|
||||
font-size: small;
|
||||
font-weight: normal;
|
||||
line-height: 140%;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
div.serendipity_entryFooter {
|
||||
padding-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
clear: both;
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
/* Comments */
|
||||
|
||||
.serendipity_comment {
|
||||
border-left: double #999 thick;
|
||||
font-size: small;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-top: 1em;
|
||||
padding: 3px;
|
||||
padding-bottom: 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.serendipity_commentBody {
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.serendipity_commentsLabel {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.serendipity_commentsTitle {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* Admin */
|
||||
|
||||
.serendipity_admin td {
|
||||
}
|
||||
|
||||
/* Misc */
|
||||
|
||||
#content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/** Embedded images with the s9y image manager **/
|
||||
.serendipity_imageComment_center,
|
||||
.serendipity_imageComment_left,
|
||||
.serendipity_imageComment_right {
|
||||
border: 1px solid black;
|
||||
background-color: #EFEFEF;
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_center {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_img,
|
||||
.serendipity_imageComment_img img {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: 0px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_txt {
|
||||
margin: 0px;
|
||||
padding: 3px;
|
||||
clear: both;
|
||||
font-size: 9pt;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
img.serendipity_entryIcon {
|
||||
float: right;
|
||||
border: 0px;
|
||||
padding: 0.3em;
|
||||
}
|
||||
|
||||
.serendipity_admin_list_item_even {
|
||||
}
|
||||
|
||||
.serendipity_admin_list_item_uneven {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.serendipity_admin_filters {
|
||||
border: 1px dashed;
|
||||
background-color: #FFFFFF;
|
||||
font-size: 10px;
|
||||
margin-bottom: 10px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.serendipity_admin_filters_headline {
|
||||
border-bottom: 1px solid;
|
||||
}
|
||||
|
||||
.serendipity_admin_sortorder {
|
||||
font-size: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_admin_sortorder input,
|
||||
.serendipity_admin_sortorder select,
|
||||
.serendipity_admin_filters input,
|
||||
.serendipity_admin_filters select {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.serendipity_comments {
|
||||
}
|
||||
|
||||
.serendipity_center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_msg_important {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.serendipity_msg_notice {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.serendipity_entry_author_self {
|
||||
}
|
||||
|
||||
.serendipity_comment_author_self {
|
||||
border-left: double #669999 thick;
|
||||
color: #669999;
|
||||
}
|
||||
|
||||
|
||||
/*** Additional plugin styles needed for the modernized output code ***/
|
||||
/*** added by Matthias 'YellowLed' Mees ***/
|
||||
|
||||
.plainList {
|
||||
list-style: none;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.container_serendipity_authors_plugin .serendipitySideBarContent div {
|
||||
margin: 5px 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.serendipity_history_author { font-weight: bolder; }
|
||||
|
||||
.serendipity_history_intro,
|
||||
.serendipity_history_info { margin-bottom: 3px; }
|
||||
|
||||
.serendipity_history_body { margin-bottom: 10px; }
|
||||
|
||||
.serendipity_recententries_entrylink { margin-bottom: 2px; }
|
||||
|
||||
.serendipity_recententries_entrydate { margin: 0 0 4px 0; }
|
||||
|
||||
.plugin_comment_body { padding: 3px 0; }
|
||||
|
||||
.serendipity_shoutbox_date { margin: 5px 0 2px 0; }
|
||||
|
||||
.serendipity_shoutbox_comment { padding: 3px 0; }
|
||||
|
||||
/*** End Additional plugin styles ***/
|
6
templates/2k11-idea-config2/config.inc.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
if (IN_serendipity !== true) { die ("Don't hack!"); }
|
||||
|
||||
@serendipity_plugin_api::load_language(dirname(__FILE__));
|
||||
|
||||
$serendipity['smarty']->assign('testvar', 'this is parsed [no api js hook!');
|
BIN
templates/2k11-idea-config2/img/I_had_an_idea.jpg
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
templates/2k11-idea-config2/img/bullet.gif
Normal file
After Width: | Height: | Size: 113 B |
BIN
templates/2k11-idea-config2/img/clock_face_messy_paint_runs.jpg
Normal file
After Width: | Height: | Size: 638 B |
BIN
templates/2k11-idea-config2/img/quote.gif
Normal file
After Width: | Height: | Size: 451 B |
103
templates/2k11-idea-config2/index.tpl
Normal file
@ -0,0 +1,103 @@
|
||||
{if $is_embedded != true}
|
||||
<!doctype html>
|
||||
<!--[if lt IE 7 ]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="{$lang}"> <![endif]-->
|
||||
<!--[if IE 7 ]> <html class="no-js lt-ie9 lt-ie8" lang="{$lang}"> <![endif]-->
|
||||
<!--[if IE 8 ]> <html class="no-js lt-ie9" lang="{$lang}"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js" lang="{$lang}"> <!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="{$head_charset}">
|
||||
<title>{$head_title|@default:$blogTitle}{if $head_subtitle} | {$head_subtitle}{/if}</title>
|
||||
<meta name="generator" content="Serendipity v.{$head_version}">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
{if $template_option.webfonts == 'droid'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Droid+Sans:400,700">
|
||||
{elseif $template_option.webfonts == 'ptsans'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=PT+Sans:400,400italic,700,700italic">
|
||||
{elseif $template_option.webfonts == 'osans'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic">
|
||||
{elseif $template_option.webfonts == 'cabin'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Cabin:400,400italic,700,700italic">
|
||||
{elseif $template_option.webfonts == 'ubuntu'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Ubuntu:400,400italic,700,700italic">
|
||||
{elseif $template_option.webfonts == 'dserif'}
|
||||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Droid+Serif:400,400italic,700,700italic">
|
||||
{/if}
|
||||
<link rel="stylesheet" href="{$head_link_stylesheet}">
|
||||
{if $template_option.userstyles == true}
|
||||
<link rel="stylesheet" href="{serendipity_getFile file="user.css"}">
|
||||
{/if}
|
||||
<script src="{serendipity_getFile file="js/modernizr-2.7.1.min.js"}"></script>
|
||||
<link rel="alternate" type="application/rss+xml" title="{$blogTitle} RSS feed" href="{$serendipityBaseURL}{$serendipityRewritePrefix}feeds/index.rss2">
|
||||
<link rel="alternate" type="application/x.atom+xml" title="{$blogTitle} Atom feed" href="{$serendipityBaseURL}{$serendipityRewritePrefix}feeds/atom.xml">
|
||||
{if $entry_id}
|
||||
<link rel="pingback" href="{$serendipityBaseURL}comment.php?type=pingback&entry_id={$entry_id}">
|
||||
{/if}
|
||||
{serendipity_hookPlugin hook="frontend_header"}
|
||||
<script src="{$head_link_script}"></script>
|
||||
</head>
|
||||
<body{if $template_option.webfonts != 'none'} class="{$template_option.webfonts}"{/if}>
|
||||
{else}
|
||||
{serendipity_hookPlugin hook="frontend_header"}
|
||||
{/if}
|
||||
{if $is_raw_mode != true}
|
||||
<a class="visuallyhidden" href="#content"><span lang="en">Skip to content</span></a>
|
||||
<div id="page" class="clearfix">
|
||||
<header id="banner" class="clearfix{if $leftSidebarElements > 0 && $rightSidebarElements > 0} col3{elseif $leftSidebarElements > 0 && $rightSidebarElements == 0} col2l{else} col2r{/if}{if not $template_option.use_corenav} no-nav{/if}">
|
||||
<div id="identity">
|
||||
TESTVAR: {$testvar}
|
||||
<a href="{$serendipityBaseURL}">
|
||||
<h1>{$blogTitle}</h1>
|
||||
{if $blogDescription}<p>{$blogDescription}</p>{/if}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<form id="searchform" action="{$serendipityHTTPPath}{$serendipityIndexFile}" method="get">
|
||||
<div>
|
||||
<input type="hidden" name="serendipity[action]" value="search">
|
||||
<label for="serendipityQuickSearchTermField">{$CONST.QUICKSEARCH}</label>
|
||||
<input id="serendipityQuickSearchTermField" name="serendipity[searchTerm]" type="search" placeholder="{$CONST.TWOK11_PLACE_SEARCH}" value="">
|
||||
<input id="searchsend" name="serendipity[searchButton]" type="submit" value="{$CONST.GO}">
|
||||
</div>
|
||||
</form>
|
||||
{serendipity_hookPlugin hook="quicksearch_plugin" hookAll="true"}
|
||||
{if $template_option.header_img}
|
||||
<img src="{$template_option.header_img|escape}" alt="">
|
||||
{/if}
|
||||
</header>
|
||||
{if $template_option.use_corenav}
|
||||
<nav id="primary-nav">
|
||||
<h2 class="visuallyhidden">{$CONST.TWOK11_NAV_TITLE}</h2>
|
||||
|
||||
<ul class="clearfix">{foreach from=$navlinks item="navlink" name="sbnav"}{if $navlink.title!=""&&$navlink.href!=""}<li>{if $currpage==$navlink.href or $currpage2==$navlink.href}<span>{else}<a href="{$navlink.href}">{/if}{$navlink.title}{if $currpage==$navlink.href or $currpage2==$navlink.href}</span>{else}</a>{/if}</li>{/if}{/foreach}</ul>
|
||||
</nav>
|
||||
{/if}
|
||||
<div class="clearfix{if $leftSidebarElements > 0 && $rightSidebarElements > 0} col3{elseif $leftSidebarElements > 0 && $rightSidebarElements == 0} col2l{else} col2r{/if}">
|
||||
<main id="content" {if $template_option.imgstyle != 'none'} class="{$template_option.imgstyle}"{/if}>
|
||||
{$CONTENT}
|
||||
</main>
|
||||
{if $leftSidebarElements > 0}
|
||||
<aside id="sidebar_left">
|
||||
<h2 class="visuallyhidden">{$CONST.TWOK11_SIDEBAR}</h2>
|
||||
{serendipity_printSidebar side="left"}
|
||||
</aside>
|
||||
{/if}
|
||||
{if $rightSidebarElements > 0}
|
||||
<aside id="sidebar_right">
|
||||
<h2 class="visuallyhidden">{$CONST.TWOK11_SIDEBAR}</h2>
|
||||
{serendipity_printSidebar side="right"}
|
||||
</aside>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<footer id="colophon">
|
||||
<p><span lang="en">Powered by <a href="http://s9y.org">Serendipity</a> & the <a href="http://github.com/yellowled/s9y-2k11">2k11</a> theme.</span></p>
|
||||
</footer>
|
||||
</div>
|
||||
<script src="{serendipity_getFile file="js/2k11.min.js"}"></script>
|
||||
{/if}
|
||||
{$raw_data}
|
||||
{serendipity_hookPlugin hook="frontend_footer"}
|
||||
{if $is_embedded != true}
|
||||
</body>
|
||||
</html>
|
||||
{/if}
|
4
templates/2k11-idea-config2/info.txt
Normal file
@ -0,0 +1,4 @@
|
||||
Name: Idea @ 2k11 [DEV-TEST for 2k11-based engines WITH config.inc.php W/O JS hook]
|
||||
Author: Evan Nemerson
|
||||
Date: 2014-05-22
|
||||
Engine: 2k11
|
BIN
templates/2k11-idea-config2/preview.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
templates/2k11-idea-config2/preview_fullsize.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
425
templates/2k11-idea-config2/style.css
Normal file
@ -0,0 +1,425 @@
|
||||
/* HTML Elements */
|
||||
|
||||
body {
|
||||
color: #999;
|
||||
background: white;
|
||||
font-family: verdana, arial, sans-serif;
|
||||
}
|
||||
|
||||
a,
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #336666;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
color: #669999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
h3, h4 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="password"],
|
||||
input[type="button"],
|
||||
input[type="submit"],
|
||||
select,
|
||||
textarea {
|
||||
border: 1px #999 solid;
|
||||
background-color: white;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
input:focus, input:hover,
|
||||
button:focus, button:hover,
|
||||
submit:focus, submit:hover,
|
||||
select:focus, select:hover,
|
||||
textarea:focus, textarea:hover {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
input.radio,
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
border: none;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border: 1px #999 dashed;
|
||||
background-image: url({TEMPLATE_PATH}img/quote.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0.5em 0.5em;
|
||||
padding: 1em;
|
||||
margin: 1em;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-image: url({TEMPLATE_PATH}img/bullet.gif);
|
||||
list-style-type: circle;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
/* Banner */
|
||||
|
||||
#serendipity_banner {
|
||||
background-image: url({TEMPLATE_PATH}img/I_had_an_idea.jpg);
|
||||
background-repeat: no-repeat;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
#serendipity_banner h1 {
|
||||
margin-left: 140px;
|
||||
font-size: x-large;
|
||||
font-variant: small-caps;
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
#serendipity_banner h2 {
|
||||
margin-left: 140px;
|
||||
font-size: small;
|
||||
border-bottom: 1px #999 dashed;
|
||||
}
|
||||
|
||||
a.homelink1,
|
||||
a.homelink1:hover,
|
||||
a.homelink1:link,
|
||||
a.homelink1:visited {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.homelink2,
|
||||
a.homelink2:hover,
|
||||
a.homelink2:link,
|
||||
a.homelink2:visited {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Calendar */
|
||||
|
||||
table.serendipity_calendar a,
|
||||
table.serendipity_calendar a:link,
|
||||
table.serendipity_calendar a:visited {
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
table.serendipity_calendar a:hover {
|
||||
background: #ccc;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
table.serendipity_calendar td {
|
||||
font-size: x-small;
|
||||
padding: 0.2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
td.serendipity_calendarHeader a,
|
||||
td.serendipity_calendarHeader a:link,
|
||||
td.serendipity_calendarHeader a:visited,
|
||||
td.serendipity_calendarHeader a:hover {
|
||||
color: #003366;
|
||||
font-weight: bold;
|
||||
border: 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
/* Sidebars */
|
||||
|
||||
#serendipityLeftSideBar,
|
||||
#serendipityRightSideBar {
|
||||
display: block;
|
||||
padding: 10px;
|
||||
width: 11em;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.serendipitySideBarTitle {
|
||||
font-size: x-small;
|
||||
color: #666;
|
||||
font-weight: bolder;
|
||||
line-height: 140%;
|
||||
padding: 0.2em;
|
||||
padding-left: 1em;
|
||||
letter-spacing: 0.2em;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
#serendipityRightSideBar * .serendipitySideBarTitle {
|
||||
border-left: 1px #666 dashed;
|
||||
}
|
||||
|
||||
#serendipityLeftSideBar * .serendipitySideBarTitle {
|
||||
border-right: 1px #666 dashed;
|
||||
}
|
||||
|
||||
div.serendipitySideBarItem {
|
||||
margin-bottom: 1em;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.serendipitySideBarContent {
|
||||
color: #333;
|
||||
border-top: 1px #666 dashed;
|
||||
font-size: x-small;
|
||||
padding-top: 0.5em;
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
#serendipityRightSideBar * .serendipitySideBarContent {
|
||||
border-right: 1px #666 dashed;
|
||||
}
|
||||
|
||||
#serendipityLeftSideBar * .serendipitySideBarContent {
|
||||
border-left: 1px #666 dashed;
|
||||
}
|
||||
|
||||
/* Entries */
|
||||
|
||||
div.serendipity_Entry_Date {
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
.serendipity_date {
|
||||
color: #999;
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
text-transform: lowercase;
|
||||
margin-bottom: 0.7em;
|
||||
border-bottom: 1px #999 dashed;
|
||||
text-align: right;
|
||||
|
||||
background-image: url({TEMPLATE_PATH}img/clock_face_messy_paint_runs.jpg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: bottom right;
|
||||
height: 21px;
|
||||
padding-right: 60px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.serendipity_title,
|
||||
.serendipity_Admin_title {
|
||||
padding-bottom: 0.7em;
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.serendipity_title a,
|
||||
.serendipity_title a:hover,
|
||||
.serendipity_title a:link,
|
||||
.serendipity_title a:visited,
|
||||
.serendipity_Admin_title a,
|
||||
.serendipity_Admin_title a:hover,
|
||||
.serendipity_Admin_title a:link,
|
||||
.serendipity_Admin_title a:visited {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.serendipity_entry,
|
||||
.serendipity_admin {
|
||||
font-size: small;
|
||||
font-weight: normal;
|
||||
line-height: 140%;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
div.serendipity_entryFooter {
|
||||
padding-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
clear: both;
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
/* Comments */
|
||||
|
||||
.serendipity_comment {
|
||||
border-left: double #999 thick;
|
||||
font-size: small;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-top: 1em;
|
||||
padding: 3px;
|
||||
padding-bottom: 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.serendipity_commentBody {
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.serendipity_commentsLabel {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.serendipity_commentsTitle {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* Admin */
|
||||
|
||||
.serendipity_admin td {
|
||||
}
|
||||
|
||||
/* Misc */
|
||||
|
||||
#content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/** Embedded images with the s9y image manager **/
|
||||
.serendipity_imageComment_center,
|
||||
.serendipity_imageComment_left,
|
||||
.serendipity_imageComment_right {
|
||||
border: 1px solid black;
|
||||
background-color: #EFEFEF;
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_center {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_img,
|
||||
.serendipity_imageComment_img img {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: 0px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_txt {
|
||||
margin: 0px;
|
||||
padding: 3px;
|
||||
clear: both;
|
||||
font-size: 9pt;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
img.serendipity_entryIcon {
|
||||
float: right;
|
||||
border: 0px;
|
||||
padding: 0.3em;
|
||||
}
|
||||
|
||||
.serendipity_admin_list_item_even {
|
||||
}
|
||||
|
||||
.serendipity_admin_list_item_uneven {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.serendipity_admin_filters {
|
||||
border: 1px dashed;
|
||||
background-color: #FFFFFF;
|
||||
font-size: 10px;
|
||||
margin-bottom: 10px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.serendipity_admin_filters_headline {
|
||||
border-bottom: 1px solid;
|
||||
}
|
||||
|
||||
.serendipity_admin_sortorder {
|
||||
font-size: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_admin_sortorder input,
|
||||
.serendipity_admin_sortorder select,
|
||||
.serendipity_admin_filters input,
|
||||
.serendipity_admin_filters select {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.serendipity_comments {
|
||||
}
|
||||
|
||||
.serendipity_center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_msg_important {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.serendipity_msg_notice {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.serendipity_entry_author_self {
|
||||
}
|
||||
|
||||
.serendipity_comment_author_self {
|
||||
border-left: double #669999 thick;
|
||||
color: #669999;
|
||||
}
|
||||
|
||||
|
||||
/*** Additional plugin styles needed for the modernized output code ***/
|
||||
/*** added by Matthias 'YellowLed' Mees ***/
|
||||
|
||||
.plainList {
|
||||
list-style: none;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.container_serendipity_authors_plugin .serendipitySideBarContent div {
|
||||
margin: 5px 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.serendipity_history_author { font-weight: bolder; }
|
||||
|
||||
.serendipity_history_intro,
|
||||
.serendipity_history_info { margin-bottom: 3px; }
|
||||
|
||||
.serendipity_history_body { margin-bottom: 10px; }
|
||||
|
||||
.serendipity_recententries_entrylink { margin-bottom: 2px; }
|
||||
|
||||
.serendipity_recententries_entrydate { margin: 0 0 4px 0; }
|
||||
|
||||
.plugin_comment_body { padding: 3px 0; }
|
||||
|
||||
.serendipity_shoutbox_date { margin: 5px 0 2px 0; }
|
||||
|
||||
.serendipity_shoutbox_comment { padding: 3px 0; }
|
||||
|
||||
/*** End Additional plugin styles ***/
|
BIN
templates/2k11-idea/img/I_had_an_idea.jpg
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
templates/2k11-idea/img/bullet.gif
Normal file
After Width: | Height: | Size: 113 B |
BIN
templates/2k11-idea/img/clock_face_messy_paint_runs.jpg
Normal file
After Width: | Height: | Size: 638 B |
BIN
templates/2k11-idea/img/quote.gif
Normal file
After Width: | Height: | Size: 451 B |
4
templates/2k11-idea/info.txt
Normal file
@ -0,0 +1,4 @@
|
||||
Name: Idea @ 2k11 [DEV-TEST for 2k11-based engines NO config.inc.php]
|
||||
Author: Evan Nemerson
|
||||
Date: 2014-05-22
|
||||
Engine: 2k11
|
BIN
templates/2k11-idea/preview.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
templates/2k11-idea/preview_fullsize.jpg
Normal file
After Width: | Height: | Size: 27 KiB |
425
templates/2k11-idea/style.css
Normal file
@ -0,0 +1,425 @@
|
||||
/* HTML Elements */
|
||||
|
||||
body {
|
||||
color: #999;
|
||||
background: white;
|
||||
font-family: verdana, arial, sans-serif;
|
||||
}
|
||||
|
||||
a,
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #336666;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
color: #669999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
h3, h4 {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="password"],
|
||||
input[type="button"],
|
||||
input[type="submit"],
|
||||
select,
|
||||
textarea {
|
||||
border: 1px #999 solid;
|
||||
background-color: white;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
input:focus, input:hover,
|
||||
button:focus, button:hover,
|
||||
submit:focus, submit:hover,
|
||||
select:focus, select:hover,
|
||||
textarea:focus, textarea:hover {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
input.radio,
|
||||
input[type="radio"],
|
||||
input[type="checkbox"] {
|
||||
border: none;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border: 1px #999 dashed;
|
||||
background-image: url({TEMPLATE_PATH}img/quote.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0.5em 0.5em;
|
||||
padding: 1em;
|
||||
margin: 1em;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-image: url({TEMPLATE_PATH}img/bullet.gif);
|
||||
list-style-type: circle;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
/* Banner */
|
||||
|
||||
#serendipity_banner {
|
||||
background-image: url({TEMPLATE_PATH}img/I_had_an_idea.jpg);
|
||||
background-repeat: no-repeat;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
#serendipity_banner h1 {
|
||||
margin-left: 140px;
|
||||
font-size: x-large;
|
||||
font-variant: small-caps;
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
#serendipity_banner h2 {
|
||||
margin-left: 140px;
|
||||
font-size: small;
|
||||
border-bottom: 1px #999 dashed;
|
||||
}
|
||||
|
||||
a.homelink1,
|
||||
a.homelink1:hover,
|
||||
a.homelink1:link,
|
||||
a.homelink1:visited {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a.homelink2,
|
||||
a.homelink2:hover,
|
||||
a.homelink2:link,
|
||||
a.homelink2:visited {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Calendar */
|
||||
|
||||
table.serendipity_calendar a,
|
||||
table.serendipity_calendar a:link,
|
||||
table.serendipity_calendar a:visited {
|
||||
font-weight: bold;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
table.serendipity_calendar a:hover {
|
||||
background: #ccc;
|
||||
color: #003366;
|
||||
}
|
||||
|
||||
table.serendipity_calendar td {
|
||||
font-size: x-small;
|
||||
padding: 0.2em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
td.serendipity_calendarHeader a,
|
||||
td.serendipity_calendarHeader a:link,
|
||||
td.serendipity_calendarHeader a:visited,
|
||||
td.serendipity_calendarHeader a:hover {
|
||||
color: #003366;
|
||||
font-weight: bold;
|
||||
border: 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
/* Sidebars */
|
||||
|
||||
#serendipityLeftSideBar,
|
||||
#serendipityRightSideBar {
|
||||
display: block;
|
||||
padding: 10px;
|
||||
width: 11em;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.serendipitySideBarTitle {
|
||||
font-size: x-small;
|
||||
color: #666;
|
||||
font-weight: bolder;
|
||||
line-height: 140%;
|
||||
padding: 0.2em;
|
||||
padding-left: 1em;
|
||||
letter-spacing: 0.2em;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
#serendipityRightSideBar * .serendipitySideBarTitle {
|
||||
border-left: 1px #666 dashed;
|
||||
}
|
||||
|
||||
#serendipityLeftSideBar * .serendipitySideBarTitle {
|
||||
border-right: 1px #666 dashed;
|
||||
}
|
||||
|
||||
div.serendipitySideBarItem {
|
||||
margin-bottom: 1em;
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.serendipitySideBarContent {
|
||||
color: #333;
|
||||
border-top: 1px #666 dashed;
|
||||
font-size: x-small;
|
||||
padding-top: 0.5em;
|
||||
padding-left: 1em;
|
||||
padding-right: 1em;
|
||||
}
|
||||
|
||||
#serendipityRightSideBar * .serendipitySideBarContent {
|
||||
border-right: 1px #666 dashed;
|
||||
}
|
||||
|
||||
#serendipityLeftSideBar * .serendipitySideBarContent {
|
||||
border-left: 1px #666 dashed;
|
||||
}
|
||||
|
||||
/* Entries */
|
||||
|
||||
div.serendipity_Entry_Date {
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
.serendipity_date {
|
||||
color: #999;
|
||||
font-size: small;
|
||||
font-weight: bold;
|
||||
text-transform: lowercase;
|
||||
margin-bottom: 0.7em;
|
||||
border-bottom: 1px #999 dashed;
|
||||
text-align: right;
|
||||
|
||||
background-image: url({TEMPLATE_PATH}img/clock_face_messy_paint_runs.jpg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: bottom right;
|
||||
height: 21px;
|
||||
padding-right: 60px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.serendipity_title,
|
||||
.serendipity_Admin_title {
|
||||
padding-bottom: 0.7em;
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.serendipity_title a,
|
||||
.serendipity_title a:hover,
|
||||
.serendipity_title a:link,
|
||||
.serendipity_title a:visited,
|
||||
.serendipity_Admin_title a,
|
||||
.serendipity_Admin_title a:hover,
|
||||
.serendipity_Admin_title a:link,
|
||||
.serendipity_Admin_title a:visited {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.serendipity_entry,
|
||||
.serendipity_admin {
|
||||
font-size: small;
|
||||
font-weight: normal;
|
||||
line-height: 140%;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
div.serendipity_entryFooter {
|
||||
padding-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
clear: both;
|
||||
font-size: x-small;
|
||||
}
|
||||
|
||||
/* Comments */
|
||||
|
||||
.serendipity_comment {
|
||||
border-left: double #999 thick;
|
||||
font-size: small;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
margin-top: 1em;
|
||||
padding: 3px;
|
||||
padding-bottom: 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.serendipity_commentBody {
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.serendipity_commentsLabel {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.serendipity_commentsTitle {
|
||||
font-size: medium;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
/* Admin */
|
||||
|
||||
.serendipity_admin td {
|
||||
}
|
||||
|
||||
/* Misc */
|
||||
|
||||
#content {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/** Embedded images with the s9y image manager **/
|
||||
.serendipity_imageComment_center,
|
||||
.serendipity_imageComment_left,
|
||||
.serendipity_imageComment_right {
|
||||
border: 1px solid black;
|
||||
background-color: #EFEFEF;
|
||||
margin: 3px;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_center {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_img,
|
||||
.serendipity_imageComment_img img {
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
border: 0px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_imageComment_txt {
|
||||
margin: 0px;
|
||||
padding: 3px;
|
||||
clear: both;
|
||||
font-size: 9pt;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
img.serendipity_entryIcon {
|
||||
float: right;
|
||||
border: 0px;
|
||||
padding: 0.3em;
|
||||
}
|
||||
|
||||
.serendipity_admin_list_item_even {
|
||||
}
|
||||
|
||||
.serendipity_admin_list_item_uneven {
|
||||
background-color: #eee;
|
||||
}
|
||||
|
||||
.serendipity_admin_filters {
|
||||
border: 1px dashed;
|
||||
background-color: #FFFFFF;
|
||||
font-size: 10px;
|
||||
margin-bottom: 10px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.serendipity_admin_filters_headline {
|
||||
border-bottom: 1px solid;
|
||||
}
|
||||
|
||||
.serendipity_admin_sortorder {
|
||||
font-size: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_admin_sortorder input,
|
||||
.serendipity_admin_sortorder select,
|
||||
.serendipity_admin_filters input,
|
||||
.serendipity_admin_filters select {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.serendipity_comments {
|
||||
}
|
||||
|
||||
.serendipity_center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.serendipity_msg_important {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.serendipity_msg_notice {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.serendipity_entry_author_self {
|
||||
}
|
||||
|
||||
.serendipity_comment_author_self {
|
||||
border-left: double #669999 thick;
|
||||
color: #669999;
|
||||
}
|
||||
|
||||
|
||||
/*** Additional plugin styles needed for the modernized output code ***/
|
||||
/*** added by Matthias 'YellowLed' Mees ***/
|
||||
|
||||
.plainList {
|
||||
list-style: none;
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.container_serendipity_authors_plugin .serendipitySideBarContent div {
|
||||
margin: 5px 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.serendipity_history_author { font-weight: bolder; }
|
||||
|
||||
.serendipity_history_intro,
|
||||
.serendipity_history_info { margin-bottom: 3px; }
|
||||
|
||||
.serendipity_history_body { margin-bottom: 10px; }
|
||||
|
||||
.serendipity_recententries_entrylink { margin-bottom: 2px; }
|
||||
|
||||
.serendipity_recententries_entrydate { margin: 0 0 4px 0; }
|
||||
|
||||
.plugin_comment_body { padding: 3px 0; }
|
||||
|
||||
.serendipity_shoutbox_date { margin: 5px 0 2px 0; }
|
||||
|
||||
.serendipity_shoutbox_comment { padding: 3px 0; }
|
||||
|
||||
/*** End Additional plugin styles ***/
|