diff options
Diffstat (limited to 'templates/core')
-rw-r--r-- | templates/core/entry | 7 | ||||
-rw-r--r-- | templates/core/index | 5 | ||||
-rw-r--r-- | templates/core/page | 5 |
3 files changed, 11 insertions, 6 deletions
diff --git a/templates/core/entry b/templates/core/entry index ae3af04..4f8e242 100644 --- a/templates/core/entry +++ b/templates/core/entry @@ -1,5 +1,6 @@ <div class='entry'> - <div class='entry-title'><a href="<!--filename-->"><!--title--></a></div> - <div class='entry-date'><!--date--></div> - <div class='entry-subtitle'><!--subtitle--></div> + <span class='entry-title'><a href="<!--filename-->"><!--title--></a></span> + <span class='entry-date'><!--date--></span> + <br> + <span class='entry-subtitle'><!--subtitle--></span> </div> diff --git a/templates/core/index b/templates/core/index index 9d53d86..26aef90 100644 --- a/templates/core/index +++ b/templates/core/index @@ -1,11 +1,14 @@ <html> <head> + <title><!--title--></title> <meta charset="utf-8"> - <link href="<!--css_main-->" rel="stylesheet" type="text/css"> + <link href="<!--domain-->/<!--css-->" rel="stylesheet" type="text/css"> + <link rel="icon" type="image/x-icon" href="<!--favicon-->"> </head> <body> <!--HEADER--> <!--CORE/CONTENT--> <!--FOOTER--> </body> + </html> diff --git a/templates/core/page b/templates/core/page index 10937cc..896f372 100644 --- a/templates/core/page +++ b/templates/core/page @@ -1,8 +1,9 @@ <html> <head> + <title><!--title--></title> <meta charset="utf-8"> - <link href="<!--css_main-->" rel="stylesheet" type="text/css"> - <link href="<!--css_article-->" rel="stylesheet" type="text/css"> + <link href="<!--domain-->/<!--css-->" rel="stylesheet" type="text/css"> + <link rel="icon" type="image/x-icon" href="<!--domain-->/<!--favicon-->"> </head> <body> <!--HEADER--> |