préparation de la 0.5
BIN
trunk/template/default/design/bouton_etoile_petit_droite.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 998 B |
BIN
trunk/template/default/design/bouton_etoile_petit_gauche.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1,001 B |
BIN
trunk/template/default/design/bouton_fleche_grand_droite.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
BIN
trunk/template/default/design/bouton_fleche_grand_gauche.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
BIN
trunk/template/default/design/feed-icon-16x16.png
Normal file
|
After Width: | Height: | Size: 736 B |
BIN
trunk/template/default/design/gradient.png
Normal file
|
After Width: | Height: | Size: 215 B |
BIN
trunk/template/default/design/gradient2.png
Normal file
|
After Width: | Height: | Size: 220 B |
65
trunk/template/default/gallery_template.html
Normal file
|
|
@ -0,0 +1,65 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||||
|
||||
<head>
|
||||
|
||||
<title>{general.title}</title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/HTML; charset=utf-8" />
|
||||
<meta name=" robot" content="follow, index, all" />
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.php" />
|
||||
<link rel="stylesheet" type="text/css" href="{general.template_folder}/{general.template_name}/style.css" />
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<div class="shadow_simple">
|
||||
<div id="navbar">
|
||||
<div id="site_title"><p id="site_head">{general.title}</p><p id="site_desc">{general.description}</p></div>
|
||||
|
||||
<div id="main"><a href="..">{lang.accueil}</a> <br/> <a id="feed" href="rss.php">{lang.rss}</a> <a id="feed" href="rss.php?limit=10">10</a> <br/><a href="mailto:{general.email}">{general.webmaster}</a></div>
|
||||
|
||||
<a id="navfirst" href="{nav_first}">{lang.premier}</a>
|
||||
<a id="navprev" href="{nav_prev}">{lang.precedent}</a>
|
||||
<a id="navnext" href="{nav_next}">{lang.suivant}</a>
|
||||
<a id="navlast" href="{nav_last}">{lang.dernier}</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="centering">
|
||||
{foreach:items_list,id,strip}
|
||||
<div class="shadow">
|
||||
<a href="{general.url}/{strip.nav_base_url}{strip.current_id}{strip.nav_lang_url}">
|
||||
<img class="stripbox"
|
||||
src="{general.url}/{strip.thumbnail}"
|
||||
title="{strip.title}"
|
||||
style="width:{general.thumb_size}px;"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
{end:}
|
||||
</div>
|
||||
|
||||
<div id="footbar">
|
||||
<p id="forum"><a href="{general.forum}">{lang.forum}</a></p>
|
||||
<p id="forum_comments">{comments:h}</p>
|
||||
<p id="forum_post"><a href="{forum_post_url}">{lang.forum_new}</a></p>
|
||||
<p id="shop_infos"><a href="{general.shop}">{lang.boutique} {general.title}</a> {lang.teeshirt}.</p>
|
||||
{lang.see_also}
|
||||
<ul id="linkbar">
|
||||
{foreach:general.see_also,name,url}
|
||||
<li><a href="{url}">{name}</a></li>
|
||||
{end:}
|
||||
</ul>
|
||||
<p>{lang.propulse} <a href="http://stripit.sourceforge.net/">Strip-It</a>, {lang.descstrip} ({general.version}).</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
||||
218
trunk/template/default/style.css
Normal file
|
|
@ -0,0 +1,218 @@
|
|||
html {
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color:#bebfc1;
|
||||
text-align:center;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
a {
|
||||
color:#ddf;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color:white;
|
||||
}
|
||||
|
||||
#navbar {
|
||||
text-align:center;
|
||||
background-color:#1f6cd0;
|
||||
background-image:url("design/gradient.png");
|
||||
background-repeat:repeat-x;
|
||||
background-position:top left;
|
||||
height:94px;
|
||||
border-bottom:thin solid black;
|
||||
color:white;
|
||||
}
|
||||
|
||||
#footbar {
|
||||
color:white;
|
||||
font-size:small;
|
||||
text-align:center;
|
||||
background-color:#1f6cd0;
|
||||
background-image:url("design/gradient2.png");
|
||||
background-position:bottom left;
|
||||
background-repeat:repeat-x;
|
||||
border-top:thin solid black;
|
||||
border-bottom:thin solid black;
|
||||
margin-top:1em;
|
||||
padding-bottom:1em;
|
||||
clear:left;
|
||||
}
|
||||
#title {
|
||||
font-size:large;
|
||||
padding:5px;
|
||||
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
#stripbar {
|
||||
text-align:center;
|
||||
margin-top:2em;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.stripbox {
|
||||
border:1px solid black;
|
||||
background-color:white;
|
||||
float:left;
|
||||
}
|
||||
|
||||
#strip {
|
||||
border:1px solid black;
|
||||
background-color:white;
|
||||
}
|
||||
|
||||
#infobar {
|
||||
color:white;
|
||||
padding:5px;
|
||||
text-align:center;
|
||||
background-color:#1f6cd0;
|
||||
border:thin solid black;
|
||||
background-image:url("design/gradient.png");
|
||||
background-repeat:repeat-x;
|
||||
background-position:top left;
|
||||
/*height:70px;*/
|
||||
}
|
||||
|
||||
#infos {
|
||||
font-size:small;
|
||||
padding:5px;
|
||||
}
|
||||
|
||||
#infoblock {
|
||||
margin-top:1em;
|
||||
}
|
||||
|
||||
#navfirst {
|
||||
font-size:small;
|
||||
|
||||
padding-bottom:35px;
|
||||
background-image:url("design/bouton_etoile_petit_gauche.png");
|
||||
background-repeat:no-repeat;
|
||||
background-position:bottom center;
|
||||
}
|
||||
|
||||
#navfirst:hover {
|
||||
background-image:url("design/bouton_etoile_petit_gauche_over.png");
|
||||
}
|
||||
|
||||
|
||||
#navlast {
|
||||
font-size:small;
|
||||
padding-bottom:35px;
|
||||
background-image:url("design/bouton_etoile_petit_droite.png");
|
||||
background-repeat:no-repeat;
|
||||
background-position:bottom center;
|
||||
}
|
||||
|
||||
#navlast:hover {
|
||||
background-image:url("design/bouton_etoile_petit_droite_over.png");
|
||||
}
|
||||
|
||||
#navprev {
|
||||
font-size:small;
|
||||
padding-bottom:49px;
|
||||
background-image:url("design/bouton_fleche_grand_gauche.png");
|
||||
background-repeat:no-repeat;
|
||||
background-position:bottom center;
|
||||
}
|
||||
|
||||
#navprev:hover {
|
||||
background-image:url("design/bouton_fleche_grand_gauche_over.png");
|
||||
}
|
||||
|
||||
#navnext {
|
||||
font-size:small;
|
||||
padding-bottom:49px;
|
||||
background-image:url("design/bouton_fleche_grand_droite.png");
|
||||
background-repeat:no-repeat;
|
||||
background-position:bottom center;
|
||||
}
|
||||
|
||||
#navnext:hover {
|
||||
background-image:url("design/bouton_fleche_grand_droite_over.png");
|
||||
}
|
||||
|
||||
.shadow, .content {
|
||||
position: relative;
|
||||
bottom: 5px;
|
||||
right: 5px;
|
||||
}
|
||||
|
||||
.shadow {
|
||||
background-color: #9e9fa1; /*couleur de l'ombre */
|
||||
border:1px solid #aeafb1;
|
||||
margin-left: 5px;
|
||||
margin-top: 5px;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.shadow_simple {
|
||||
padding-bottom:3px;
|
||||
background-color: #9e9fa1; /*couleur de l'ombre */
|
||||
border-bottom:1px solid #aeafb1;
|
||||
}
|
||||
|
||||
.centering {
|
||||
display : table;
|
||||
margin : 0 auto;
|
||||
}
|
||||
|
||||
#site_title {
|
||||
position:absolute;
|
||||
top:1px;
|
||||
left:1px;
|
||||
text-align:left;
|
||||
margin-top:5px;
|
||||
}
|
||||
|
||||
#site_title > p {
|
||||
margin:0px;
|
||||
}
|
||||
|
||||
#site_head {
|
||||
font-weight:bold;
|
||||
font-size:large;
|
||||
font-variant:small-caps;
|
||||
}
|
||||
|
||||
#site_desc {
|
||||
font-size:x-small;
|
||||
}
|
||||
|
||||
#feed {
|
||||
padding-right:18px;
|
||||
background-image:url("design/feed-icon-16x16.png");
|
||||
background-repeat:no-repeat;
|
||||
background-position:center right;
|
||||
}
|
||||
|
||||
|
||||
#linkbar {
|
||||
display:inline;
|
||||
margin-top:2em;
|
||||
list-style:none;
|
||||
}
|
||||
|
||||
ul#linkbar li {
|
||||
display:inline;
|
||||
}
|
||||
|
||||
#main {
|
||||
float:right;
|
||||
}
|
||||
|
||||
#shop_infos {
|
||||
font-size:medium;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
#forum {
|
||||
font-size:medium;
|
||||
font-weight:bold;
|
||||
}
|
||||
74
trunk/template/default/template.html
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||||
|
||||
<head>
|
||||
|
||||
<title>{general.title} - {title}</title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/HTML; charset=utf-8" />
|
||||
<meta name=" robot" content="follow, index, all" />
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.php" />
|
||||
<link rel="stylesheet" type="text/css" href="{general.template_folder}/{general.template_name}/style.css" />
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
|
||||
<body>
|
||||
|
||||
<div class="shadow_simple">
|
||||
<div id="navbar">
|
||||
<div id="site_title"><p id="site_head">{general.title}</p><p id="site_desc">{general.description}</p></div>
|
||||
|
||||
<div id="main"><a href="..">{lang.accueil}</a> <br/> <a id="feed" href="rss.php">{lang.rss}</a> <a id="feed" href="rss.php?limit=10">10</a> <br/><a href="mailto:{general.email}">{general.webmaster}</a></div>
|
||||
<a id="navfirst" href="{nav_first}">{lang.premier}</a>
|
||||
<a id="navprev" href="{nav_prev}">{lang.precedent}</a>
|
||||
<a id="navnext" href="{nav_next}">{lang.suivant}</a>
|
||||
<a id="navlast" href="{nav_last}">{lang.dernier}</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="stripbar">
|
||||
<div class="centering">
|
||||
<div class="shadow">
|
||||
<img id="strip" class="content" src="{img_src}" alt="{text}" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="infoblock">
|
||||
<div class="centering">
|
||||
<div class="shadow">
|
||||
<div id="infobar" class="content">
|
||||
<div id="title">« {title} »</div>
|
||||
<div id="infos">
|
||||
<p id="description">{description:h}</p>
|
||||
<p id="author">© {author} : {date} : <a href="{source}">{lang.source}</a></p>
|
||||
<p id="license">{lang.licence} : <a href="{license}">{license}</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="footbar">
|
||||
<p id="forum"><a href="{general.forum}">{lang.forum}</a></p>
|
||||
<p id="forum_comments">{comments:h}</p>
|
||||
<p id="forum_post"><a href="{forum_post_url}">{lang.forum_new}</a></p>
|
||||
<p id="shop_infos"><a href="{general.shop}">{lang.boutique} {general.title}</a> {lang.teeshirt}.</p>
|
||||
{lang.see_also}
|
||||
<ul id="linkbar">
|
||||
{foreach:general.see_also,name,url}
|
||||
<li><a href="{url}">{name}</a></li>
|
||||
{end:}
|
||||
</ul>
|
||||
<p>{lang.propulse} <a href="http://stripit.sourceforge.net/">Strip-It</a>, {lang.descstrip} ({general.version}).</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
||||
BIN
trunk/template/lego/design/gradient_blue.png
Normal file
|
After Width: | Height: | Size: 296 B |
BIN
trunk/template/lego/design/gradient_gray.png
Normal file
|
After Width: | Height: | Size: 205 B |
BIN
trunk/template/lego/design/gradient_gray_small.png
Normal file
|
After Width: | Height: | Size: 186 B |
BIN
trunk/template/lego/design/gradient_gray_small_2.png
Normal file
|
After Width: | Height: | Size: 182 B |
BIN
trunk/template/lego/design/gradient_orange.png
Normal file
|
After Width: | Height: | Size: 301 B |
BIN
trunk/template/lego/design/gradient_purple.png
Normal file
|
After Width: | Height: | Size: 313 B |
BIN
trunk/template/lego/design/rss_big.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
96
trunk/template/lego/gallery_template.html
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||||
|
||||
<head>
|
||||
|
||||
<title>{general.title}</title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/HTML; charset=utf-8" />
|
||||
<meta name=" robot" content="follow, index, all" />
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.php" />
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS: 10 items" href="rss.php?limit=10" />
|
||||
<link rel="stylesheet" type="text/css" href="{general.template_folder}/{general.template_name}/style.css" />
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<!-- HEAD -->
|
||||
<div id="head">
|
||||
<span id="title_block" class="head_block">
|
||||
<h1 id="site_title">{general.title}</h1>
|
||||
<p id="site_desc">{general.description}</p>
|
||||
<span id="site_wotd">
|
||||
<p id="wotd_title">{lang.wotd}:</p>
|
||||
<ul id="wotd_text">{general.wotd:h}</ul>
|
||||
</span>
|
||||
</span>
|
||||
<span id="site_block" class="head_block">
|
||||
<ul id="site_map">
|
||||
<li><a href="..">{lang.accueil}</a></li>
|
||||
<li><a href="{general.forum}">{lang.forum}</a></li>
|
||||
<li><a href="{geenral.shop}">{lang.boutique}</a></li>
|
||||
<li><a href="mailto:{general.email}">{lang.contact}</a></li>
|
||||
</ul>
|
||||
</span>
|
||||
<div id="feed_block" class="head_block">
|
||||
<ul id="feed_list">
|
||||
<li><a class="feed" id="feed_main" href="rss.php">{lang.rss}</a></li>
|
||||
<li><a class="feed" href="rss.php?limit=10">10</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- NAV -->
|
||||
<ul class="nav_bar" id="nav_top">
|
||||
<li><a id="navfirst" href="{nav_first}">{lang.premier}</a></li>
|
||||
<li><a id="navprev" href="{nav_prev}">{lang.precedent}</a></li>
|
||||
<li><a id="navnext" href="{nav_next}">{lang.suivant}</a></li>
|
||||
<li><a id="navlast" href="{nav_last}">{lang.dernier}</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
<!-- STRIP -->
|
||||
<div id="strip_block">
|
||||
{foreach:items_list,id,strip}
|
||||
<div class="shadow">
|
||||
<a href="{general.url}/{strip.nav_base_url}{strip.current_id}{strip.nav_lang_url}">
|
||||
<img class="stripbox"
|
||||
src="{general.url}/{strip.thumbnail}"
|
||||
title="{strip.title}"
|
||||
style="width:{general.thumb_size}px;"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
{end:}
|
||||
</div>
|
||||
|
||||
<!-- NAV -->
|
||||
<ul class="nav_bar" id="nav_bottom">
|
||||
<li><a id="navfirst" href="{nav_first}">{lang.premier}</a></li>
|
||||
<li><a id="navprev" href="{nav_prev}">{lang.precedent}</a></li>
|
||||
<li><a id="navnext" href="{nav_next}">{lang.suivant}</a></li>
|
||||
<li><a id="navlast" href="{nav_last}">{lang.dernier}</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
<!-- FOOT -->
|
||||
<div id="foot">
|
||||
<p>{lang.see_also}
|
||||
<ul id="link_bar">
|
||||
{foreach:general.see_also,name,url}
|
||||
<li><a href="{url}">{name}</a></li>
|
||||
{end:}
|
||||
</ul>
|
||||
</p>
|
||||
<p>{lang.propulse} <a href="http://stripit.sourceforge.net/">Strip-It</a>, {lang.descstrip} ({general.version}).</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
||||
207
trunk/template/lego/style.css
Normal file
|
|
@ -0,0 +1,207 @@
|
|||
html {
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color:black;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
a {
|
||||
color:white;
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
}
|
||||
|
||||
.spacer {
|
||||
clear:right;
|
||||
}
|
||||
|
||||
/* HEAD */
|
||||
|
||||
#head {
|
||||
}
|
||||
|
||||
.head_block {
|
||||
float:left;
|
||||
height:113px;
|
||||
padding:0.5em;
|
||||
margin:0 1% 0 0.5%;
|
||||
-moz-border-radius:10px;
|
||||
background-position:bottom left;
|
||||
}
|
||||
|
||||
#title_block {
|
||||
width:60%;
|
||||
background-image:url("design/gradient_blue.png");
|
||||
background-color:#5276dd;
|
||||
}
|
||||
|
||||
#site_block {
|
||||
text-align:center;
|
||||
width:15%;
|
||||
background-color:#9652dd;
|
||||
background-image:url("design/gradient_purple.png");
|
||||
background-color:#9052dd;
|
||||
vertical-align:middle;
|
||||
}
|
||||
|
||||
#site_wotd {
|
||||
text-align:right;
|
||||
color:white;
|
||||
position:absolute;
|
||||
top:1em;
|
||||
right:40%;
|
||||
font-size:small;
|
||||
}
|
||||
|
||||
#wotd_title {
|
||||
font-style:italic;
|
||||
}
|
||||
|
||||
ul#wotd_text {
|
||||
list-style:none;
|
||||
}
|
||||
|
||||
ul#site_map {
|
||||
list-style:none;
|
||||
padding:0px;
|
||||
margin-top:20px;
|
||||
}
|
||||
|
||||
#feed_block {
|
||||
text-align:center;
|
||||
width:15%;
|
||||
background-image:url("design/gradient_orange.png");
|
||||
background-color:#ff8400;
|
||||
}
|
||||
|
||||
#feed_list {
|
||||
background-image:url("design/rss_big.png");
|
||||
background-repeat:no-repeat;
|
||||
background-position:right bottom;
|
||||
padding-right:95px;
|
||||
padding-top:45px;
|
||||
margin:0px;
|
||||
list-style:none;
|
||||
}
|
||||
|
||||
ul#feed_list>li {
|
||||
margin:0px;
|
||||
}
|
||||
|
||||
h1#site_title {
|
||||
color:white;
|
||||
}
|
||||
|
||||
#site_desc {
|
||||
color:white;
|
||||
font-size:small;
|
||||
}
|
||||
|
||||
|
||||
/* NAV */
|
||||
|
||||
ul.nav_bar {
|
||||
list-style:none;
|
||||
text-align:center;
|
||||
padding-top:170px;
|
||||
margin-bottom:10px;
|
||||
}
|
||||
|
||||
ul.nav_bar>li {
|
||||
display:inline;
|
||||
margin-left:5px;
|
||||
margin-bottom:0px;
|
||||
|
||||
padding:10px;
|
||||
background-image:url("design/gradient_gray_small_2.png");
|
||||
background-position:bottom;
|
||||
}
|
||||
|
||||
#nav_bottom {
|
||||
margin:0px;
|
||||
margin-top:10px;
|
||||
padding:0px;
|
||||
}
|
||||
|
||||
ul#nav_bottom>li {
|
||||
background-image:url("design/gradient_gray_small.png");
|
||||
background-position:top;
|
||||
}
|
||||
|
||||
|
||||
/* STRIP */
|
||||
|
||||
#strip_block {
|
||||
background-color:white;
|
||||
-moz-border-radius:20px;
|
||||
width: 900px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top:0px;
|
||||
text-align:center;
|
||||
padding:10px;
|
||||
}
|
||||
|
||||
img#strip {
|
||||
border:thin solid black;
|
||||
background-color:white;
|
||||
margin-top:1em;
|
||||
margin-bottom:1em;
|
||||
}
|
||||
|
||||
.sub_block {
|
||||
text-align:left;
|
||||
-moz-border-radius:10px;
|
||||
margin:10px;
|
||||
padding:10px;
|
||||
width:400px;
|
||||
}
|
||||
|
||||
#meta_block {
|
||||
}
|
||||
|
||||
#info_block {
|
||||
background-color:#5276dd;
|
||||
color:white;
|
||||
}
|
||||
|
||||
#info_plus_block {
|
||||
background-color:#5276dd;
|
||||
color:white;
|
||||
font-size:small;
|
||||
}
|
||||
|
||||
#comments_block {
|
||||
background-color:#99aeeb;
|
||||
}
|
||||
|
||||
.stripbox {
|
||||
}
|
||||
|
||||
|
||||
/* FOOT */
|
||||
|
||||
#foot {
|
||||
background-image:url("design/gradient_gray.png");
|
||||
background-color:black;
|
||||
background-position:bottom;
|
||||
color:white;
|
||||
text-align:center;
|
||||
padding:0.2em;
|
||||
margin:1%;
|
||||
}
|
||||
|
||||
ul#link_bar {
|
||||
list-style:none;
|
||||
}
|
||||
|
||||
ul#linkbar>li {
|
||||
display:inline;
|
||||
margin-left:1em;
|
||||
}
|
||||
114
trunk/template/lego/template.html
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||||
|
||||
<head>
|
||||
|
||||
<title>{general.title} - {title}</title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/HTML; charset=utf-8" />
|
||||
<meta name=" robot" content="follow, index, all" />
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="rss.php" />
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS: 10 items" href="rss.php?limit=10" />
|
||||
<link rel="stylesheet" type="text/css" href="{general.template_folder}/{general.template_name}/style.css" />
|
||||
<link rel="icon" type="image/png" href="favicon.png" />
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<!-- HEAD -->
|
||||
<div id="head">
|
||||
<span id="title_block" class="head_block">
|
||||
<h1 id="site_title">{general.title}</h1>
|
||||
<p id="site_desc">{general.description}</p>
|
||||
<span id="site_wotd">
|
||||
<p id="wotd_title">{lang.wotd}:</p>
|
||||
<ul id="wotd_text">{general.wotd:h}</ul>
|
||||
</span>
|
||||
</span>
|
||||
<span id="site_block" class="head_block">
|
||||
<ul id="site_map">
|
||||
<li><a href="..">{lang.accueil}</a></li>
|
||||
<li><a href="{general.forum}">{lang.forum}</a></li>
|
||||
<li><a href="{geenral.shop}">{lang.boutique}</a></li>
|
||||
<li><a href="mailto:{general.email}">{lang.contact}</a></li>
|
||||
</ul>
|
||||
</span>
|
||||
<div id="feed_block" class="head_block">
|
||||
<ul id="feed_list">
|
||||
<li><a class="feed" id="feed_main" href="rss.php">{lang.rss}</a></li>
|
||||
<li><a class="feed" href="rss.php?limit=10">10</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- NAV -->
|
||||
<ul class="nav_bar" id="nav_top">
|
||||
<li><a id="navfirst" href="{nav_first}">{lang.premier}</a></li>
|
||||
<li><a id="navprev" href="{nav_prev}">{lang.precedent}</a></li>
|
||||
<li><a id="navnext" href="{nav_next}">{lang.suivant}</a></li>
|
||||
<li><a id="navlast" href="{nav_last}">{lang.dernier}</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
<!-- STRIP -->
|
||||
<div id="strip_block">
|
||||
<img id="strip" class="content" src="{img_src}" alt="{text}" />
|
||||
|
||||
<table id="meta_block" cellpadding="0" cellspacing="20">
|
||||
<tr>
|
||||
<td id="info_block" class="sub_block">
|
||||
<h2 id="title">« {title} »</h2>
|
||||
<p id="description">{description:h}</p>
|
||||
</td>
|
||||
|
||||
<td rowspan="2" id="comments_block" class="sub_block" valign="top">
|
||||
{lang.comments} :
|
||||
<ul id="comments">
|
||||
{comments:h}
|
||||
</ul>
|
||||
<a href="{forum_post_url}">{lang.forum_new}</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td id="info_plus_block" class="sub_block">
|
||||
<p id="author">© {author}</p>
|
||||
<p id="date">{date}</p>
|
||||
<p id="source"><a href="{source}">{lang.source}</a></p>
|
||||
<p id="license">{lang.licence} : <a href="{license}">{license}</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- NAV -->
|
||||
<ul class="nav_bar" id="nav_bottom">
|
||||
<li><a id="navfirst" href="{nav_first}">{lang.premier}</a></li>
|
||||
<li><a id="navprev" href="{nav_prev}">{lang.precedent}</a></li>
|
||||
<li><a id="navnext" href="{nav_next}">{lang.suivant}</a></li>
|
||||
<li><a id="navlast" href="{nav_last}">{lang.dernier}</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
<!-- FOOT -->
|
||||
<div id="foot">
|
||||
<p>{lang.see_also}
|
||||
<ul id="link_bar">
|
||||
{foreach:general.see_also,name,url}
|
||||
<li><a href="{url}">{name}</a></li>
|
||||
{end:}
|
||||
</ul>
|
||||
</p>
|
||||
<p>{lang.propulse} <a href="http://stripit.sourceforge.net/">Strip-It</a>, {lang.descstrip} ({general.version}).</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
||||
51
trunk/template/rss/template.rss
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
|
||||
<rss version="2.0"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
||||
xmlns:atom="http://www.w3.org/2005/Atom"
|
||||
>
|
||||
|
||||
<channel>
|
||||
<atom:link href="{general.url}/rss.php" rel="self" type="application/rss+xml" />
|
||||
<title>{general.title}</title>
|
||||
<link>{general.url}</link>
|
||||
<ttl>1440</ttl>
|
||||
<description>{general.description}</description>
|
||||
<language>{general.language}</language>
|
||||
<generator>http://stripit.sourceforge.net</generator>
|
||||
<image>
|
||||
<url>{general.url}/favicon.png</url>
|
||||
<title>{general.title}</title>
|
||||
<link>{general.url}</link>
|
||||
</image>
|
||||
<managingEditor>{general.email} ({general.webmaster})</managingEditor>
|
||||
<webMaster>{general.email} ({general.webmaster})</webMaster>
|
||||
<copyright>Copyright {general.webmaster}</copyright>
|
||||
<docs>http://cyber.law.harvard.edu/rss/</docs>
|
||||
|
||||
{foreach:items_list,id,strip}
|
||||
<item>
|
||||
<title>{strip.title}</title>
|
||||
<link>{general.url}/{strip.nav_base_url}{strip.current_id}</link>
|
||||
<guid isPermaLink="true">{general.url}/{strip.source}"</guid>
|
||||
<enclosure url="{general.url}/{strip.source}" type="image/svg+xml" length="{strip.source_size}" />
|
||||
<pubDate>{strip.date}</pubDate>
|
||||
<author>{strip.author}</author>
|
||||
<description>
|
||||
<a
|
||||
title="{lang.source_rss}"
|
||||
href="{general.url}/{strip.nav_base_url}{strip.current_id}<"
|
||||
>
|
||||
<img src="{general.url}/{strip.img_src}" alt="{general.text}" />
|
||||
</a>
|
||||
<p>{strip.description}<p>
|
||||
<p>{lang.licence} : <a href="{strip.license}">{strip.license}</a><p>
|
||||
|
||||
<a href="{general.forum}">{lang.forum}</a>
|
||||
<a href="{general.shop}">{lang.boutique}</a>
|
||||
</description>
|
||||
</item>
|
||||
{end:}
|
||||
|
||||
</channel>
|
||||
</rss>
|
||||