diff options
| author | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:35:25 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@lumberjaph.net> | 2013-07-25 18:35:25 -0700 |
| commit | 3d46aca2693381e81045210c41e782431acd1ed9 (patch) | |
| tree | 410067ba6ce89d6a371e1c06643a14b2bede85e5 /_layouts/page.html | |
| parent | new post - patch.pm (diff) | |
| parent | Add a page with my talks. (diff) | |
| download | lumberjaph-3d46aca2693381e81045210c41e782431acd1ed9.tar.gz | |
Merge branch 'design'
* design:
Add a page with my talks.
Remove more files.
use index.atom for our feed.
add openid to our header.
remove unused layout templates.
I don't need tags.
Remove useless empty page.
First attempt with the new theme.
attempt for a new design
Diffstat (limited to '_layouts/page.html')
| -rw-r--r-- | _layouts/page.html | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..2ac2b93 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,38 @@ +<!doctype html> +<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> +<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]--> +<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]--> +<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]--> +<head> +{% include head.html %} +</head> + +<body id="page" itemscope itemtype="http://schema.org/WebPage"> + +{% include browser-upgrade.html %} +{% include navigation.html %} + +<div id="main" role="main" itemprop="mainContentOfPage" itemscope itemtype="http://schema.org/Blog"> + <article class="hentry" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogpost"> + {% if page.image.feature %}<img src="{{ site.url }}/images/{{ page.image.feature }}" class="entry-feature-image" alt="{{ page.title }}">{% endif %} + <div class="entry-wrapper"> + <header class="entry-header"> + <h1 class="entry-title" itemprop="headline">{% if page.headline %}{{ page.headline }}{% else %}{{ page.title }}</h1>{% endif %} + </header> + <div class="entry-content"> + {{ content }} + </div><!-- /.entry-content --> + </div><!-- /.entry-wrapper --> + </article> +</div><!-- /#main --> + +<div class="footer-wrapper"> + <footer role="contentinfo"> + {% include footer.html %} + </footer> +</div><!-- /.footer-wrapper --> + +{% include scripts.html %} + +</body> +</html>
\ No newline at end of file |
