v0.9 doesn't recognize the .twig extension
This commit is contained in:
parent
cc877fdf41
commit
5089b567d3
2 changed files with 50 additions and 69 deletions
50
themes/default/index.html
Normal file
50
themes/default/index.html
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" class="no-js">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
|
||||||
|
<title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title>
|
||||||
|
{% if meta.description %}
|
||||||
|
<meta name="description" content="{{ meta.description }}">
|
||||||
|
{% endif %}{% if meta.robots %}
|
||||||
|
<meta name="robots" content="{{ meta.robots }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" type="text/css" />
|
||||||
|
<link rel="stylesheet" href="{{ theme_url }}/style.css" type="text/css" />
|
||||||
|
|
||||||
|
<script src="{{ theme_url }}/scripts/modernizr-2.6.1.min.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<header id="header">
|
||||||
|
<div class="inner clearfix">
|
||||||
|
<h1><a href="{{ base_url }}" id="logo">{{ site_title }}</a></h1>
|
||||||
|
<nav>
|
||||||
|
<a href="#" class="menu-icon"></a>
|
||||||
|
<ul>
|
||||||
|
{% for page in pages %}
|
||||||
|
{% if page.id starts with "blog" %}{% else %}
|
||||||
|
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="content">
|
||||||
|
<div class="inner">
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<footer id="footer">
|
||||||
|
<div class="inner">
|
||||||
|
<a href="http://picocms.org/">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>
|
||||||
|
</html>
|
|
@ -1,69 +0,0 @@
|
||||||
<<<<<<< HEAD
|
|
||||||
{% include 'includes/htmlHead.twig' %}
|
|
||||||
{% include 'includes/head.twig' %}
|
|
||||||
<body>
|
|
||||||
{% include 'includes/nav.twig' %}
|
|
||||||
<!-- Main Content -->
|
|
||||||
<div class="container">
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-xs-12">
|
|
||||||
{{ content }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% include 'includes/foot.twig' %}
|
|
||||||
</body>
|
|
||||||
{% include 'includes/htmlFoot.twig' %}
|
|
||||||
=======
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en" class="no-js">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
|
|
||||||
<title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title>
|
|
||||||
{% if meta.description %}
|
|
||||||
<meta name="description" content="{{ meta.description|striptags }}">
|
|
||||||
{% endif %}{% if meta.robots %}
|
|
||||||
<meta name="robots" content="{{ meta.robots }}">
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" type="text/css" />
|
|
||||||
<link rel="stylesheet" href="{{ theme_url }}/style.css" type="text/css" />
|
|
||||||
|
|
||||||
<script src="{{ theme_url }}/scripts/modernizr-2.6.1.min.js"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<header id="header">
|
|
||||||
<div class="inner clearfix">
|
|
||||||
<h1><a href="{{ "index"|link }}" id="logo">{{ site_title }}</a></h1>
|
|
||||||
<nav>
|
|
||||||
<a href="#" class="menu-icon"></a>
|
|
||||||
<ul>
|
|
||||||
{% for page in pages %}
|
|
||||||
{% if page.id starts with "blog" %}{% else %}
|
|
||||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
</div>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<section id="content">
|
|
||||||
<div class="inner">
|
|
||||||
{{ content }}
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<footer id="footer">
|
|
||||||
<div class="inner">
|
|
||||||
<a href="http://picocms.org/">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>
|
|
||||||
</html>
|
|
||||||
>>>>>>> 4c8999b... keep default theme, add new alpha theme
|
|
Loading…
Reference in a new issue