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>
|
||||