[New] Add get_pages() function for listing content [New] Added changelog.txt [Changed] Updated default theme [Changed] Updated documentationpico-3.0-alpha
parent
585a39a800
commit
cc7ceafc1e
@ -0,0 +1,19 @@ |
|||||||
|
*** Pico Changelog *** |
||||||
|
|
||||||
|
2013.05.01 - version 0.4 |
||||||
|
* [New] Add get_pages() function for listing content |
||||||
|
* [New] Added changelog.txt |
||||||
|
* [Changed] Updated default theme |
||||||
|
* [Changed] Updated documentation |
||||||
|
|
||||||
|
2013.04.27 - version 0.3 |
||||||
|
* [Fixed] get_config() function |
||||||
|
|
||||||
|
2013.04.26 - version 0.2 |
||||||
|
* [Changed] Updated Twig |
||||||
|
* [Changed] Better checking for HTTPS |
||||||
|
* [Fixed] Add 404 header to 404 page |
||||||
|
* [Fixed] Case sensitive folder bug |
||||||
|
|
||||||
|
2012.04.04 - version 0.1 |
||||||
|
* Initial release |
@ -1,23 +1,45 @@ |
|||||||
<!DOCTYPE html> |
<!DOCTYPE html> |
||||||
<html lang="en" class="no-js"> |
<html lang="en" class="no-js"> |
||||||
<head> |
<head> |
||||||
<meta charset="utf-8" /> |
<meta charset="utf-8" /> |
||||||
|
|
||||||
<title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title> |
<title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title> |
||||||
{% if meta.description %}<meta name="description" content="{{ meta.description }}">{% endif %} |
{% if meta.description %} |
||||||
{% if meta.robots %}<meta name="robots" content="{{ meta.robots }}">{% endif %} |
<meta name="description" content="{{ meta.description }}"> |
||||||
|
{% endif %}{% if meta.robots %} |
||||||
<link rel="stylesheet" href="{{ theme_url }}/style.css" type="text/css" media="screen" /> |
<meta name="robots" content="{{ meta.robots }}"> |
||||||
|
{% endif %} |
||||||
<!--[if IE]> |
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" type="text/css" /> |
||||||
<script type="text/javascript" src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script> |
<link rel="stylesheet" href="{{ theme_url }}/style.css" type="text/css" /> |
||||||
<![endif]--> |
|
||||||
<script src="{{ theme_url }}/scripts/modernizr-1.7.min.js"></script> |
<script src="{{ theme_url }}/scripts/modernizr-2.6.1.min.js"></script> |
||||||
</head> |
</head> |
||||||
<body> |
<body> |
||||||
|
|
||||||
{{ content }} |
<header id="header"> |
||||||
|
<div class="inner clearfix"> |
||||||
|
<h1><a href="{{ base_url }}">{{ site_title }}</a></h1> |
||||||
|
<ul class="nav"> |
||||||
|
{% for page in pages %} |
||||||
|
<li><a href="{{ page.url }}">{{ page.title }}</a></li> |
||||||
|
{% endfor %} |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
</header> |
||||||
|
|
||||||
|
<section id="content"> |
||||||
|
<div class="inner"> |
||||||
|
{{ content }} |
||||||
|
</div> |
||||||
|
</section> |
||||||
|
|
||||||
|
<footer id="footer"> |
||||||
|
<div class="inner"> |
||||||
|
<a href="http://pico.dev7studios.com">Pico</a> was made by <a href="http://gilbert.pellegrom.me">Gilbert Pellegrom</a> |
||||||
|
from <a href="http://dev7studios.com">Dev7studios</a>. |
||||||
|
</div> |
||||||
|
</footer> |
||||||
|
|
||||||
</body> |
</body> |
||||||
</html> |
</html> |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue