Dotclear

Changeset 3373


Ignore:
Timestamp:
03/07/15 19:00:13 (9 years ago)
Author:
brol
Message:

voir changelog

Location:
themes/boston
Files:
8 added
1 deleted
13 edited

Legend:

Unmodified
Added
Removed
  • themes/boston/_define.php

    r970 r3373  
    33# This file is part of Boston, a theme for Dotclear. 
    44# 
    5 # Copyright (c) 2009 annso 
    6 # contact@as-i-am.fr 
     5# Copyright (c) 2009 
     6# annso contact@as-i-am.fr 
    77# 
    88# Licensed under the GPL version 2.0 license. 
     
    1111# -- END LICENSE BLOCK ------------------------------------ 
    1212 
    13  
    1413$this->registerModule( 
    1514     /* Name */               "Boston", 
    16      /* Description*/    "", 
    17      /* Author */        "annso", 
    18      /* Version */       '1.0' 
     15     /* Description*/    "Thème en tons de gris", 
     16     /* Author */        "annso, Pierre Van Glabeke", 
     17     /* Version */       '1.2', 
     18     array( 
     19          /* Type */          'type' =>           'theme', 
     20                        'dc_min' => '2.7' 
     21     ) 
    1922); 
    20 ?> 
  • themes/boston/_public.php

    r830 r3373  
    11<?php 
    2 $core->tpl->addValue('MyEntriesCount',array('myTpl','MyEntriesCount')); 
    3 $core->tpl->addValue('MyCommentsCount',array('myTpl','MyCommentsCount')); 
     2# -- BEGIN LICENSE BLOCK ---------------------------------- 
     3# This file is part of Boston, a theme for Dotclear. 
     4# 
     5# Copyright (c) 2009 
     6# annso contact@as-i-am.fr 
     7# 
     8# Licensed under the GPL version 2.0 license. 
     9# A copy of this license is available in LICENSE file or at 
     10# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
     11# -- END LICENSE BLOCK ------------------------------------ 
     12if (!defined('DC_RC_PATH')) { return; } 
    413 
    5 # Ajax search URL 
    6 $core->url->register('ajaxsearch','ajaxsearch','^ajaxsearch(?:(?:/)(.*))?$',array('urlsBokeh','ajaxsearch')); 
     14l10n::set(dirname(__FILE__).'/locales/'.$_lang.'/public'); 
    715 
    8 class myTpl 
     16# appel css menu 
     17$core->addBehavior('publicHeadContent','bostonmenu_publicHeadContent'); 
     18 
     19function bostonmenu_publicHeadContent($core) 
    920{ 
    10      /* 
    11      Cette fonction affiche le nombre de billets 
    12      */ 
    13      public static function MyEntriesCount($attr) 
    14      { 
    15           $tbl_billets = $GLOBALS['core']->blog->prefix."post"; 
    16         $billets = $GLOBALS['core']->con->select(" 
    17             SELECT count(post_id) as somme 
    18             FROM ".$tbl_billets." billets 
    19             WHERE post_status=1 AND 
    20                   blog_id='asiam'")->field("somme"); 
    21          return '<?php echo '.$billets.'; ?>'; 
     21     $style = $core->blog->settings->themes->boston_menu; 
     22     if (!preg_match('/^simplemenu|menu-no$/',$style)) { 
     23          $style = 'simplemenu'; 
    2224     } 
    2325 
    24  
    25      /* 
    26      Cette fonction affiche le nombre de commentaires 
    27      */ 
    28      public static function MyCommentsCount($attr) 
    29      { 
    30          global $core; 
    31         $tbl_billets = $GLOBALS['core']->blog->prefix."post"; 
    32           $tbl_comments = $core->blog->prefix."comment"; 
    33         $comments = $core->con->select(" 
    34             SELECT count(comment_id) as somme 
    35             FROM ".$tbl_billets." billets, ".$tbl_comments." comments 
    36             WHERE comments.post_id = billets.post_id AND 
    37                   billets.post_status=1 AND 
    38                   comment_status=1 AND 
    39                   comment_trackback=0 AND 
    40                   blog_id='asiam'")->field("somme"); 
    41  
    42          return '<?php echo '.$comments.'; ?>'; 
    43      } 
    44  
     26     $url = $core->blog->settings->system->themes_url.'/'.$core->blog->settings->system->theme; 
     27     echo '<link rel="stylesheet" type="text/css" media="projection, screen" href="'.$url."/".$style.".css\" />\n"; 
    4528} 
    46  
    47 class urlsBokeh 
    48 { 
    49      public static function ajaxsearch($args) 
    50      { 
    51           global $core; 
    52           $res = ''; 
    53  
    54           try 
    55           { 
    56                if (!$args) { 
    57                     throw new Exception; 
    58                } 
    59  
    60                $q = rawurldecode($args); 
    61                $rs = $core->blog->getPosts(array( 
    62                     'search' => $q, 
    63                     'limit' => 5 
    64                )); 
    65  
    66                if ($rs->isEmpty()) { 
    67                     throw new Exception; 
    68                } 
    69  
    70                $res = '<ul>'; 
    71                while ($rs->fetch()) 
    72                { 
    73                     $res .= '<li><a href="'.$rs->getURL().'">'.html::escapeHTML($rs->post_title).'</a></li>'; 
    74                } 
    75                $res .= '</ul>'; 
    76           } 
    77           catch (Exception $e) {} 
    78  
    79           header('Content-Type: text/plain; charset=UTF-8'); 
    80           echo $res; 
    81      } 
    82 } 
    83  
    84 ?> 
  • themes/boston/layout.css

    r970 r3373  
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
    33# This file is part of Boston, a theme for Dotclear. 
    4 # It is based from Aorakits, a set of themes for DotClear. 
    54# 
    6 # Copyright (c) 2006 Kozlika and contributors - 2009 annso 
    7 # contact@as-i-am.fr 
     5# Copyright (c) 2009 
     6# annso contact@as-i-am.fr 
    87# 
    98# Licensed under the GPL version 2.0 license. 
     
    1110# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
    1211# -- END LICENSE BLOCK ------------------------------------ 
     12 
     13 STRUCTURE POUR TROIS COLONNES, BLOGNAV ET BLOGEXTRA A DROITE, LARGEUR FIXE 
    1314 
    1415 -------------------------------------------------------------- 
     
    2223     margin : 0; 
    2324     padding : 0; 
    24      } 
     25} 
    2526 
    2627/* -------------------------------------------------------------- 
    2728     CENTRAGE DE LA PAGE DANS LA FENETRE DU NAVIGATEUR. 
     29     (supprimer ces lignes si on ne veut pas centrer) 
     30     Note : on peut remplacer la valeur (ici 0) des marges au-dessus 
     31     et en dessous de la page par la valeur de son choix (px ou em). 
    2832--------------------------------------------------------------- */ 
    2933body { 
     
    3539     } 
    3640 
    37  
    3841/* ------------------------------------------------------------- 
    3942     STRUCTURE FIXE - 3 COLONNES - BLOGNAV ET BLOGEXTRA A DROITE 
     43     Vous pouvez modifier 940px par la valeur de votre choix. 
     44     Vous pouvez modifier 320px par la valeur de votre choix mais 
     45     attention aux repercussions sur les autres valeurs des boites 
     46     incluses dans le sidebar ! 
    4047--------------------------------------------------------------- */ 
    4148#page { 
    4249     width : 940px; 
    4350    } 
    44 #top { 
    45      height : 100px; 
    46      } 
    47 #top h1 { 
    48      margin : 0; 
    49      padding : 0; 
    50      height : 100px; 
    51      } 
    5251#wrapper { 
    5352     margin : 0 10px; 
     
    7170     float : right; 
    7271     } 
    73  
     72/* Attention au calcul si vous modifiez ces valeurs. 
     73Le total doit etre inferieur a la largeur du sidebar. 
     74Ici, 6 + 146 + 6 + 6 + 146 + 6 = 316 < 320 */ 
    7475#blognav { 
    7576     width : 175px; 
     
    8586     float : right; 
    8687     overflow: hidden; 
    87      } 
     88} 
  • themes/boston/style.css

    r970 r3373  
    22# -- BEGIN LICENSE BLOCK ---------------------------------- 
    33# This file is part of Boston, a theme for Dotclear. 
    4 # It is based from Aorakits, a set of themes for DotClear. 
    54# 
    6 # Copyright (c) 2007 Kozlika and contributors - 2009 annso 
    7 # contact@as-i-am.fr 
     5# Copyright (c) 2009 
     6# annso contact@as-i-am.fr 
    87# 
    98# Licensed under the GPL version 2.0 license. 
    109# A copy of this license is available in LICENSE file or at 
    1110# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 
    12 # -- END LICENSE BLOCK ------------------------------------*/ 
     11# -- END LICENSE BLOCK ------------------------------------ 
     12*/ 
    1313 
    1414/* ----------------------------------------------------------------- 
     
    1616------------------------------------------------------------------ */ 
    1717@import url(layout.css); 
    18  
    19  
    2018/* ------------------------------------------------------------ 
    2119     2. BALISES HTML PAR DEFAUT 
     
    2321 
    2422body { 
    25      background: #DFDFDF; /*#DFDFDF;*/ 
     23     background: #DFDFDF; 
    2624     color: #6B6F61; 
    2725     font-family: Verdana, Arial, Helvetica, sans-serif; 
     
    5250a img { border: none; } 
    5351 
    54  
     52code, pre { 
     53     white-space: normal; 
     54     width: 100%; 
     55} 
    5556/* ------------------------------------------------------------ 
    5657     3. PAGE 
     
    6162} 
    6263 
    63  
    6464/* ------------------------------------------------------------ 
    6565     4. HAUT DE PAGE 
    6666------------------------------------------------------------- */ 
    6767 
    68 #top h1 { display: none; } 
    69 #prelude { display: none;} 
    70  
    71 .menu { 
    72      width: 940px; 
    73      margin: 0; 
    74      padding: 0; 
    75      border-top: 10px solid #6B6F61; 
    76      text-transform: uppercase; 
    77      letter-spacing: 2px; 
    78 } 
    79 .menu ul { 
    80      margin: 0; 
    81      padding: 0; 
    82 } 
    83 .menu li { 
    84      float: left; 
    85      margin-top: -10px; 
    86      list-style-type: none; 
    87      border-right: 1px solid #ddd; 
    88 } 
    89 .menu li a{ 
    90      border-top: 10px solid #000; 
    91      color: #666666; 
    92      float: left; 
    93      padding: 35px 20px 10px; 
    94 } 
    95 .menu li a:first-letter{ 
    96      font-size: 1.1em; 
    97 } 
    98 .menu li a:hover{ 
    99      /*border-top: 10px solid #6B6F61;*/ 
    100      text-decoration: none; 
    101      color: #fff; 
    102      background: #7E858D; 
    103 } 
    104 a.current_page_item { 
    105      font-weight: bold; 
    106 } 
    107  
    108  
     68#top {height:20px;} 
     69#prelude { top:-50px; position:fixed; } 
    10970 
    11071/* ------------------------------------------------------------ 
     
    245206     width: 421px; 
    246207} 
    247  
     208#comment-form .jstSpacer {display:none;} 
     209#comment-form .jstEditor textarea { 
     210  width: 65%; 
     211     border: 1px solid #ddd; 
     212     margin-left:168px; 
     213} 
     214#comment-form .jstEditor textarea:hover { 
     215  border: 1px solid #E8E8CE; 
     216} 
     217#comment-form .jstHandle {margin-left:168px;} 
    248218#comments-feed { margin-left:10px;} 
    249219 
     
    275245     text-transform: uppercase; 
    276246} 
    277  
     247#sidebar img {max-width:100%;} 
    278248#sidebar ul { 
    279249     margin:5px 0 20px; 
     
    281251} 
    282252#sidebar li { list-style-type:none;} 
     253 
     254#sidebar .categories li.category-current { 
     255     font-weight: bold; 
     256} 
     257#sidebar .categories li.category-current li { 
     258     font-weight: normal; 
     259} 
    283260#sidebar a { color: #6B6F61;} 
    284261#sidebar a:hover { 
     
    392369------------------------------------------------------------- */ 
    393370 
    394 .dc-archive .content-inner .mois { 
     371.dc-archive .content-inner .month { 
    395372     float: left; 
    396373     width: 24%; 
     
    402379.dc-tags a:hover { color: #000; } 
    403380 
     381#subcategories { 
     382     padding: 5px 0 20px 0; 
     383} 
     384#subcategories h3 { 
     385     margin: 0; 
     386} 
     387#subcategories ul { 
     388     margin: 0.5em 0 0 0; 
     389     padding: 0 0 0 20px; 
     390     line-height: 1.4; 
     391} 
     392 
    404393/* --------------------------------------------------- 
    405394  12. ET POUR FINIR NE PAS OUBLIER LES CLEARERS 
     
    407396.post, .post-content, .footnotes, .attachments, 
    408397.post-info-co, #comments, #footer { 
    409     clear:both; 
    410     } 
    411  
    412  
    413 .test { 
    414      width: 200px; 
    415 } 
     398  clear:both; 
     399} 
     400 
     401/* en sus */ 
     402#content-info img { 
     403  max-width:100%; 
     404} 
     405.post-excerpt p img, .post-content p img { 
     406  max-width:100%; 
     407} 
     408.post embed, .post iframe {max-width:100%;} 
     409 
     410.dc-contactme .field textarea {width:auto;} 
  • themes/boston/tpl/_footer.html

    r1876 r3373  
    1 <div id="footer"> 
     1<div id="footer" role="contentinfo"> 
    22 
    3      <p class="left"><a href="http://fr.dotclear.org/"> 
    4           <img src="http://fr.dotclear.org/affiliates/w-logo.png" alt="Dotclear 2" /></a> 
    5      </p> 
     3     <p class="left"><a href="http://fr.dotclear.org/"><img src="http://fr.dotclear.org/affiliates/w-logo.png" alt="Dotclear 2" /></a></p> 
    64 
    75     <p class="right texte"> 
    8           <a href="{{tpl:BlogURL}}" class="site"><strong>{{tpl:BlogName}}</strong></a>  par 
    9           <a href="{{tpl:BlogURL}}contact">{{tpl:BlogEditor}}</a> - 
    10           <br /> 
    11           <span class="infos"> 
    12                {{tpl:MyEntriesCount}} articles - {{tpl:MyCommentsCount}} commentaires 
    13           </span> 
     6          <a href="{{tpl:BlogURL}}" class="site"><strong>{{tpl:BlogName encode_html="1"}}</strong></a> {{tpl:lang by}} 
     7          <a href="/contact">{{tpl:BlogEditor}}</a>. 
    148     </p> 
    159</div> 
  • themes/boston/tpl/_top.html

    r970 r3373  
    11<div id="top"> 
    2   <h1><span><a href="{{tpl:BlogURL}}">{{tpl:BlogName encode_html="1"}}</a></span></h1> {{tpl:MenuFreshy}} 
     2 
     3<div id="navsm" role="navigation"> 
     4  {{tpl:SimpleMenu id="supranav" description="title"}} 
     5</div> 
    36 
    47  <!-- # --BEHAVIOR-- publicTopAfterContent --> 
     
    69</div> 
    710 
    8 <p id="prelude"><a href="#main">{{tpl:lang To content}}</a> | 
     11<p id="prelude" role="navigation"><a href="#main">{{tpl:lang To content}}</a> | 
    912<a href="#blognav">{{tpl:lang To menu}}</a> | 
    1013<a href="#search">{{tpl:lang To search}}</a></p> 
  • themes/boston/tpl/archive.html

    r970 r3373  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}"> 
     1<!DOCTYPE html> 
     2<html lang="{{tpl:BlogLanguage}}"> 
     3 
    44<head> 
    5   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
    6   <meta name="MSSmartTagsPreventParsing" content="TRUE" /> 
     5  <meta charset="UTF-8" /> 
     6 
    77  <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" /> 
    88 
     
    1010  <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    1111  <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    12   <meta name="date" scheme="ISO8601" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     12  <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    1313 
    1414  <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 
    15   <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:BlogName encode_html="1"}}" /> 
    16   <meta name="dc.language" content="{{tpl:BlogLanguage}}" /> 
    17   <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    18   <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    19   <meta name="dc.date" scheme="ISO8601" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    20   <meta name="dc.type" content="text" /> 
    21   <meta name="dc.format" content="text/html" /> 
     15  <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:BlogName encode_html="1"}}" /> 
     16  <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 
     17  <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
     18  <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
     19  <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     20  <meta property="dc.type" content="text" /> 
     21  <meta property="dc.format" content="text/html" /> 
    2222 
    2323  <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 
     
    3838<div id="wrapper"> 
    3939 
    40 <div id="main"> 
     40<div id="main" role="main"> 
    4141  <div id="content"> 
    4242 
     
    4848  <tpl:Archives> 
    4949    <tpl:ArchivesYearHeader> 
    50     <div class="mois"> 
     50    <div class="month"> 
    5151      <h3>{{tpl:ArchiveDate format="%Y"}}</h3> 
    5252      <ul> 
     
    6565</div> <!-- End #main --> 
    6666 
    67 <div id="sidebar"> 
     67<div id="sidebar" role="complementary"> 
    6868  <div id="blognav"> 
    6969    {{tpl:Widgets type="nav"}} 
  • themes/boston/tpl/archive_month.html

    r970 r3373  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}"> 
     1<!DOCTYPE html> 
     2<html lang="{{tpl:BlogLanguage}}"> 
     3 
    44<head> 
    5   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
    6   <meta name="MSSmartTagsPreventParsing" content="TRUE" /> 
     5  <meta charset="UTF-8" /> 
     6 
    77  <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX"}}" /> 
    88 
     
    1010  <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    1111  <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    12   <meta name="date" scheme="ISO8601" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     12  <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    1313 
    1414  <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 
    15   <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:ArchiveDate}} - {{tpl:BlogName encode_html="1"}}" /> 
    16   <meta name="dc.language" content="{{tpl:BlogLanguage}}" /> 
    17   <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    18   <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    19   <meta name="dc.date" scheme="ISO8601" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    20   <meta name="dc.type" content="text" /> 
    21   <meta name="dc.format" content="text/html" /> 
     15  <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:ArchiveDate}} - {{tpl:BlogName encode_html="1"}}" /> 
     16  <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 
     17  <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
     18  <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
     19  <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     20  <meta property="dc.type" content="text" /> 
     21  <meta property="dc.format" content="text/html" /> 
    2222 
    2323  <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 
     
    2828  <tpl:ArchiveNext><link rel="next" href="{{tpl:ArchiveURL}}" 
    2929  title="{{tpl:ArchiveDate encode_html="1"}}" /></tpl:ArchiveNext> 
    30   <tpl:ArchivePrevious><link rel="previous" href="{{tpl:ArchiveURL}}" 
     30  <tpl:ArchivePrevious><link rel="prev" href="{{tpl:ArchiveURL}}" 
    3131  title="{{tpl:ArchiveDate encode_html="1"}}" /></tpl:ArchivePrevious> 
    3232 
     
    4444<div id="wrapper"> 
    4545 
    46 <div id="main"> 
     46<div id="main" role="main"> 
    4747  <div id="content"> 
    4848 
     
    6767    </p> 
    6868 
    69  
    70     <h2 id="p{{tpl:EntryID}}" class="post-title" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}"><a 
     69    <h2 id="p{{tpl:EntryID}}" class="post-title" lang="{{tpl:EntryLang}}"><a 
    7170    href="{{tpl:EntryURL}}" title="{{tpl:lang Read}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:EntryTitle encode_html="1"}}</a></h2> 
    7271 
     
    8584</div> <!-- End #main --> 
    8685 
    87 <div id="sidebar"> 
     86<div id="sidebar" role="complementary"> 
    8887  <div id="blognav"> 
    8988    {{tpl:Widgets type="nav"}} 
  • themes/boston/tpl/home.html

    r970 r3373  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}"> 
     1<!DOCTYPE html> 
     2<html lang="{{tpl:BlogLanguage}}"> 
     3 
    44<head> 
    5   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
    6   <meta name="MSSmartTagsPreventParsing" content="TRUE" /> 
     5  <meta charset="UTF-8" /> 
     6 
    77  <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" /> 
    88 
    99  <title>{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title> 
    10   <meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription cut_string="180" encode_html="1"}}" /> 
     10  <meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription cut_string="180" encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" /> 
    1111  <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    1212  <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    13   <meta name="date" scheme="ISO8601" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     13  <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    1414 
    1515  <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 
    16   <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" /> 
    17   <meta name="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription encode_html="1"}}" /> 
    18   <meta name="dc.language" content="{{tpl:BlogLanguage}}" /> 
    19   <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    20   <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    21   <meta name="dc.date" scheme="ISO8601" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    22   <meta name="dc.type" content="text" /> 
    23   <meta name="dc.format" content="text/html" /> 
     16  <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" /> 
     17  <meta property="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription encode_html="1"}}" /> 
     18  <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 
     19  <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
     20  <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
     21  <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     22  <meta property="dc.type" content="text" /> 
     23  <meta property="dc.format" content="text/html" /> 
    2424 
    2525  <link rel="contents" title="{{tpl:lang Archives}}" href="{{tpl:BlogArchiveURL}}" /> 
     
    3232      <tpl:Pagination> 
    3333        <tpl:PaginationIf end="0"> 
    34         <link rel="previous" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 
     34        <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 
    3535        </tpl:PaginationIf> 
    3636 
     
    5757<div id="wrapper"> 
    5858 
    59 <div id="main"> 
     59<div id="main" role="main"> 
    6060  <div id="content"> 
    6161  <tpl:Entries> 
    62     <div class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}"> 
     62    <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" role="article"> 
    6363    <!-- # New day date --> 
    6464    <tpl:DateHeader> 
     
    7070    </tpl:DateHeader> 
    7171 
    72     <h2 id="p{{tpl:EntryID}}" class="post-title"><a 
     72    <h2 class="post-title"><a 
    7373    href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2> 
    7474 
     
    8080    </p> 
    8181 
    82     <tpl:EntryMetaData> 
    83     <tpl:MetaDataHeader><ul class="post-tags"></tpl:MetaDataHeader> 
    84     <li><a href="{{tpl:MetaURL}}">{{tpl:MetaID}}</a></li> 
    85     <tpl:MetaDataFooter></ul></tpl:MetaDataFooter> 
    86     </tpl:EntryMetaData> 
     82    <tpl:EntryTags> 
     83    <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader> 
     84    <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li> 
     85    <tpl:TagsFooter></ul></tpl:TagsFooter> 
     86    </tpl:EntryTags> 
    8787 
    8888    <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 
     
    134134</div> <!-- End #main --> 
    135135 
    136 <div id="sidebar"> 
     136<div id="sidebar" role="complementary"> 
    137137  <div id="blognav"> 
    138138    {{tpl:Widgets type="nav"}} 
  • themes/boston/tpl/post.html

    r970 r3373  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{tpl:EntryLang}}" lang="{{tpl:EntryLang}}"> 
     1<!DOCTYPE html> 
     2<html lang="{{tpl:BlogLanguage}}"> 
     3 
    44<head> 
    5   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
    6   <meta name="MSSmartTagsPreventParsing" content="TRUE" /> 
     5  <meta charset="UTF-8" /> 
     6 
    77  <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" /> 
    88 
     
    1111  <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    1212  <meta name="author" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" /> 
    13   <meta name="date" scheme="ISO8601" content="{{tpl:EntryDate iso8601="1"}}" /> 
     13  <meta name="date" content="{{tpl:EntryDate iso8601="1"}}" /> 
    1414 
    1515  <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 
    16   <meta name="dc.title" content="{{tpl:EntryTitle encode_html="1"}}" /> 
    17   <meta name="dc.description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" /> 
    18   <meta name="dc.creator" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" /> 
    19   <meta name="dc.language" content="{{tpl:EntryLang}}" /> 
    20   <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    21   <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    22   <meta name="dc.date" scheme="ISO8601" content="{{tpl:EntryDate iso8601="1"}}" /> 
    23   <meta name="dc.type" content="text" /> 
    24   <meta name="dc.format" content="text/html" /> 
     16  <meta property="dc.title" content="{{tpl:EntryTitle encode_html="1"}}" /> 
     17  <meta property="dc.description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" /> 
     18  <meta property="dc.creator" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" /> 
     19  <meta property="dc.language" content="{{tpl:EntryLang}}" /> 
     20  <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
     21  <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
     22  <meta property="dc.date" content="{{tpl:EntryDate iso8601="1"}}" /> 
     23  <meta property="dc.type" content="text" /> 
     24  <meta property="dc.format" content="text/html" /> 
    2525 
    2626  <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 
    2727  <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 
     28  <tpl:EntryIf pings_active="1"><link rel="pingback" href="{{tpl:BlogXMLRPCURL}}" /></tpl:EntryIf> 
    2829 
    2930  <tpl:EntryNext><link rel="next" href="{{tpl:EntryURL}}" 
    3031  title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryNext> 
    3132 
    32   <tpl:EntryPrevious><link rel="previous" href="{{tpl:EntryURL}}" 
     33  <tpl:EntryPrevious><link rel="prev" href="{{tpl:EntryURL}}" 
    3334  title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryPrevious> 
    3435 
     
    3738  {{tpl:include src="_head.html"}} 
    3839 
    39   <script type="text/javascript" src="{{tpl:BlogThemeURL}}/../default/js/post.js"></script> 
     40  <script type="text/javascript" src="{{tpl:BlogQmarkURL}}pf=post.js"></script> 
    4041  <script type="text/javascript"> 
    4142  //<![CDATA[ 
     
    5354<div id="wrapper"> 
    5455 
    55 <div id="main"> 
     56<div id="main" role="main"> 
    5657  <div id="content"> 
    5758 
     
    6566  </p> 
    6667 
    67   <div class="post"> 
    68  
    69      <p class="day-date"> 
    70         <span class="date-day">{{tpl:EntryDate format="%d"}}</span> 
    71         <span class="date-month">{{tpl:EntryDate format="%b"}}</span> 
    72         <span class="date-year">{{tpl:EntryDate format="%Y"}}</span> 
     68  <div id="p{{tpl:EntryID}}" class="post" role="article"> 
     69 
     70    <p class="day-date"> 
     71      <span class="date-day">{{tpl:EntryDate format="%d"}}</span> 
     72      <span class="date-month">{{tpl:EntryDate format="%b"}}</span> 
     73      <span class="date-year">{{tpl:EntryDate format="%Y"}}</span> 
    7374    </p> 
    7475 
    75     <h2 id="p{{tpl:EntryID}}" class="post-title">{{tpl:EntryTitle encode_html="1"}}</h2> 
     76    <h2 class="post-title">{{tpl:EntryTitle encode_html="1"}}</h2> 
    7677 
    7778    <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}} 
     
    8384    </p> 
    8485 
    85     <tpl:EntryMetaData> 
    86     <tpl:MetaDataHeader><ul class="post-tags"></tpl:MetaDataHeader> 
    87     <li><a href="{{tpl:MetaURL}}">{{tpl:MetaID}}</a></li> 
    88     <tpl:MetaDataFooter></ul></tpl:MetaDataFooter> 
    89     </tpl:EntryMetaData> 
     86    <tpl:EntryTags> 
     87    <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader> 
     88    <li><a href="{{tpl:TagURL}}" rel="tag">{{tpl:TagID}}</a></li> 
     89    <tpl:TagsFooter></ul></tpl:TagsFooter> 
     90    </tpl:EntryTags> 
    9091 
    9192    <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 
     
    112113      <li class="{{tpl:AttachmentType}}"> 
    113114        <tpl:AttachmentIf is_mp3="1"> 
    114           {{tpl:include src="_mp3_player.html"/}} - 
     115          {{tpl:include src="_mp3_player.html"}} - 
    115116        </tpl:AttachmentIf> 
    116117        <tpl:AttachmentIf is_flv="1"> 
    117           {{tpl:include src="_flv_player.html"/}} 
     118          {{tpl:include src="_flv_player.html"}} 
    118119        </tpl:AttachmentIf> 
    119120        <tpl:AttachmentIf is_flv="0"> 
     
    137138    </tpl:CommentsHeader> 
    138139      <dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}"><a 
    139       href="#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}</a> 
     140      href="#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a> 
    140141      {{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}} 
    141142      {{tpl:lang by}} {{tpl:CommentAuthorLink}}</dt> 
     
    172173 
    173174    <!-- # Comment form --> 
    174     <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form"> 
     175    <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form" role="form"> 
    175176      <tpl:IfCommentPreview> 
    176177        <div id="pr"> 
     
    198199        </p> 
    199200 
    200         <p class="field"><label for="c_site">{{tpl:lang Website}} 
    201         ({{tpl:lang optional}})&nbsp;:</label> 
     201        <p class="field"><label for="c_site">{{tpl:lang Website}} ({{tpl:lang optional}})&nbsp;:</label> 
    202202        <input name="c_site" id="c_site" type="text" size="30" maxlength="255" 
    203203        value="{{tpl:CommentPreviewSite encode_html="1"}}" /> 
     
    211211        rows="7">{{tpl:CommentPreviewContent raw="1" encode_html="1"}}</textarea> 
    212212        </p> 
    213         <p class="form-help">{{tpl:lang HTML code is displayed as text and web addresses are 
    214         automatically converted.}}</p> 
     213        <p class="form-help">{{tpl:CommentHelp}}</p> 
    215214 
    216215        <!-- # --BEHAVIOR-- publicCommentFormAfterContent --> 
     
    220219      <fieldset> 
    221220        <p class="buttons"><input type="submit" class="preview" name="preview" value="{{tpl:lang preview}}" /> 
    222         <input type="submit" class="submit" value="{{tpl:lang send}}" /></p> 
     221        <tpl:IfCommentPreviewOptional><input type="submit" class="submit" value="{{tpl:lang send}}" /></tpl:IfCommentPreviewOptional></p> 
    223222      </fieldset> 
    224223    </form> 
     
    267266</div> <!-- End #main --> 
    268267 
    269 <div id="sidebar"> 
     268<div id="sidebar" role="complementary"> 
    270269  <div id="blognav"> 
    271270    {{tpl:Widgets type="nav"}} 
  • themes/boston/tpl/search.html

    r970 r3373  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}"> 
     1<!DOCTYPE html> 
     2<html lang="{{tpl:BlogLanguage}}"> 
     3 
    44<head> 
    5   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
    6   <meta name="MSSmartTagsPreventParsing" content="TRUE" /> 
     5  <meta charset="UTF-8" /> 
     6 
    77  <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" /> 
    8    
     8 
    99  <title>{{tpl:lang Search}} - {{tpl:SysSearchString encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title> 
    1010  <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    1111  <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    12   <meta name="date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    13    
     12  <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     13 
    1414  <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 
    15   <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Search}} - {{tpl:SysSearchString encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" /> 
    16   <meta name="dc.language" content="{{tpl:BlogLanguage}}" /> 
    17   <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    18   <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    19   <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    20   <meta name="dc.type" content="text" /> 
    21   <meta name="dc.format" content="text/html" /> 
    22    
     15  <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Search}} - {{tpl:SysSearchString encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" /> 
     16  <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 
     17  <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
     18  <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
     19  <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     20  <meta property="dc.type" content="text" /> 
     21  <meta property="dc.format" content="text/html" /> 
     22 
    2323  <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 
    2424  <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" /> 
    25    
     25 
    2626  <tpl:Entries no_content="1"> 
    2727    <tpl:EntriesHeader> 
    2828      <tpl:Pagination> 
    2929        <tpl:PaginationIf end="0"> 
    30         <link rel="previous" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 
     30        <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 
    3131        </tpl:PaginationIf> 
    32          
     32 
    3333        <tpl:PaginationIf start="0"> 
    3434        <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" /> 
     
    3636      </tpl:Pagination> 
    3737    </tpl:EntriesHeader> 
    38      
     38 
    3939    <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" /> 
    4040  </tpl:Entries> 
    41    
     41 
    4242  <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" /> 
    43    
     43 
    4444  {{tpl:include src="_head.html"}} 
    4545</head> 
     
    5151<div id="wrapper"> 
    5252 
    53 <div id="main"> 
     53<div id="main" role="main"> 
    5454  <div id="content"> 
    5555   
     
    6868   
    6969  <tpl:Entries> 
    70     <div class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}"> 
     70    <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" role="article"> 
    7171    <!-- # New day date --> 
    7272    <tpl:DateHeader> 
     
    7878    </tpl:DateHeader> 
    7979     
    80     <h2 id="p{{tpl:EntryID}}" class="post-title"><a 
     80    <h2 class="post-title"><a 
    8181    href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2> 
    8282     
     
    8787    </tpl:EntryIf> 
    8888    </p> 
    89      
    90     <tpl:EntryMetaData> 
    91     <tpl:MetaDataHeader><ul class="post-tags"></tpl:MetaDataHeader> 
    92     <li><a href="{{tpl:MetaURL}}">{{tpl:MetaID}}</a></li> 
    93     <tpl:MetaDataFooter></ul></tpl:MetaDataFooter> 
    94     </tpl:EntryMetaData> 
     89 
     90    <tpl:EntryTags> 
     91    <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader> 
     92    <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li> 
     93    <tpl:TagsFooter></ul></tpl:TagsFooter> 
     94    </tpl:EntryTags> 
    9595     
    9696    <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 
     
    142142</div> <!-- End #main --> 
    143143 
    144 <div id="sidebar"> 
     144<div id="sidebar" role="complementary"> 
    145145  <div id="blognav"> 
    146146    {{tpl:Widgets type="nav"}} 
  • themes/boston/tpl/tag.html

    r970 r3373  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
    2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}"> 
     1<!DOCTYPE html> 
     2<html lang="{{tpl:BlogLanguage}}"> 
     3 
    44<head> 
    5   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
    6   <meta name="MSSmartTagsPreventParsing" content="TRUE" /> 
     5  <meta charset="UTF-8" /> 
     6 
    77  <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" /> 
    88 
    9   <title>{{tpl:lang Tag}} - {{tpl:MetaID}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title> 
     9  <title>{{tpl:lang Tag}} - {{tpl:TagID}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title> 
    1010  <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    1111  <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    12   <meta name="date" scheme="ISO8601" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     12  <meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    1313 
    1414  <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" /> 
    15   <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Tag}} - {{tpl:MetaID}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" /> 
    16   <meta name="dc.language" content="{{tpl:BlogLanguage}}" /> 
    17   <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
    18   <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
    19   <meta name="dc.date" scheme="ISO8601" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
    20   <meta name="dc.type" content="text" /> 
    21   <meta name="dc.format" content="text/html" /> 
     15  <meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Tag}} - {{tpl:TagID}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" /> 
     16  <meta property="dc.language" content="{{tpl:BlogLanguage}}" /> 
     17  <meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" /> 
     18  <meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" /> 
     19  <meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" /> 
     20  <meta property="dc.type" content="text" /> 
     21  <meta property="dc.format" content="text/html" /> 
    2222 
    2323  <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" /> 
     
    2828      <tpl:Pagination> 
    2929        <tpl:PaginationIf end="0"> 
    30         <link rel="previous" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 
     30        <link rel="prev" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" /> 
    3131        </tpl:PaginationIf> 
    3232 
     
    5252<div id="wrapper"> 
    5353 
    54 <div id="main"> 
     54<div id="main" role="main"> 
    5555  <div id="content"> 
    5656 
    5757  <div id="content-info"> 
    58     <h2>{{tpl:lang Tag}} - {{tpl:MetaID}}</h2> 
     58    <h2>{{tpl:lang Tag}} - {{tpl:TagID}}</h2> 
    5959 
    6060    <p><a type="application/atom+xml" href="{{tpl:TagFeedURL type="atom"}}" 
     
    6969 
    7070  <tpl:Entries> 
    71     <div class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}"> 
     71    <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" role="article"> 
    7272    <!-- # New day date --> 
    7373    <tpl:DateHeader> 
     
    7979    </tpl:DateHeader> 
    8080 
    81     <h2 id="p{{tpl:EntryID}}" class="post-title"><a 
     81    <h2 class="post-title"><a 
    8282    href="{{tpl:EntryURL}}">{{tpl:EntryTitle encode_html="1"}}</a></h2> 
    8383 
     
    8989    </p> 
    9090 
    91     <tpl:EntryMetaData> 
    92     <tpl:MetaDataHeader><ul class="post-tags"></tpl:MetaDataHeader> 
    93     <li><a href="{{tpl:MetaURL}}">{{tpl:MetaID}}</a></li> 
    94     <tpl:MetaDataFooter></ul></tpl:MetaDataFooter> 
    95     </tpl:EntryMetaData> 
     91    <tpl:EntryTags> 
     92    <tpl:TagsHeader><ul class="post-tags"></tpl:TagsHeader> 
     93    <li><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li> 
     94    <tpl:TagsFooter></ul></tpl:TagsFooter> 
     95    </tpl:EntryTags> 
    9696 
    9797    <!-- # --BEHAVIOR-- publicEntryBeforeContent --> 
     
    143143</div> <!-- End #main --> 
    144144 
    145 <div id="sidebar"> 
     145<div id="sidebar" role="complementary"> 
    146146  <div id="blognav"> 
    147147    {{tpl:Widgets type="nav"}} 
Note: See TracChangeset for help on using the changeset viewer.

Sites map