12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <link rel="stylesheet" type="text/css" href="/css/extlib/reset.css"/>
- <link rel="stylesheet" type="text/css" href="/css/extlib/text.css"/>
- <link rel="stylesheet" type="text/css" href="/css/extlib/960_16_col.css"/>
- <link rel="stylesheet" type="text/css" href="/css/base.css"/>
- <link title="Recent Posts Feed" href="/news/index.xml" rel="alternate" type="application/atom+xml">
- <link rel="shortcut icon" href="/images/goblin.ico" />
- <!--
- <rdf:RDF xmlns="http://web.resource.org/cc/"
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <Work rdf:about="http://mediagoblin.org/">
- <dc:title>GNU MediaGoblin</dc:title>
- <dc:description></dc:description>
- <license rdf:resource="http://creativecommons.org/licenses/by-sa/3.0/" />
- </Work>
- <License rdf:about="http://creativecommons.org/licenses/by-sa/3.0/">
- </License>
- </rdf:RDF>
- -->
- <script src="/js/extlib/video-js/video.min.js"></script>
- <!-- full js at /js/video-js/video..js -->
- <link rel="stylesheet" type="text/css" href="/js/extlib/video-js/video-js.min.css"/>
- <!-- full css at /js/video-js/video-js.css -->
- <link rel="stylesheet" type="text/css" href="/css/vjs-mg-skin.css"/>
- <script>
- _V_.options.flash.swf = "/js/extlib/video-js/video-js.swf"
- </script>
- <title>{% block title %}{{blog_title}} {{entry_title}} {% endblock %}</title>
- </head>
- <body>
- <div class="mediagoblin_body">
- <div class="container_16">
- <div class="grid_16 mediagoblin_header">
- <a class="mediagoblin_logo" href="/"><img src="/images/logo.png"
- alt="MediaGoblin logo" /></a>
- <div class="mediagoblin_header_right">
- <a href="/news/index.html">news</a> ·
- <a href="/pages/tour.html">tour</a> ·
- <a href="/pages/join.html">community</a> ·
- <a href="http://wiki.mediagoblin.org/">wiki</a> ·
- <a href="http://issues.mediagoblin.org/">bug tracker</a> ·
- <a href="http://gitorious.org/mediagoblin/mediagoblin">git repository</a>
- </div>
- </div>
- </div>
- <div class="container_16 mediagoblin_content">
- {% block content %}
- {% block flavor_content %}
- {% for article, template in article_templates %}
- {% include template %}
- {% endfor %}
- {# <div class="pagination">
- {{ page_navigation|safe }}
- </div> #}
- {% endblock %}
- {% endblock %}
- <div class="clear"></div>
- </div>
- <div class="container_16">
- <div class="grid_16 mediagoblin_footer">
- <p>
- MediaGoblin is released under the <a href="http://www.gnu.org/licenses/agpl.html">GNU AGPLv3</a>. Site design released under <a href="http://creativecommons.org/publicdomain/zero/1.0/">CC0</a>. Get and use the <a href="/pages/logo.html" title="Get and use the MediaGoblin logo">MediaGoblin logo</a>.
- </p>
- <p class="c">
- <a href="/pages/campaign.html" class="campaign_donate"><img src="/images/campaign/heart.png" alt="<3" />Donate...</a>
- </p>
- </div>
- </div>
- </div>
- </body>
- </html>
|