Skip to content
Snippets Groups Projects
Select Git revision
  • 287fe8bd2b89e9fd3005828a5e4fccb8c648b4f5
  • main default
  • 35-cgu
  • 34-peertube-support
  • 27-add-autoplay-to-iframe
  • 33-bug-on-youtube-embed-urls
  • RC-Rekall-v1.1-fix_lpo
  • tuleap-140-go-back-to-my-capsules-page-when-i-m-on-capsule-preview-page
  • RC-Rekall-v1.2-fix10
  • RC-Rekall-v1.2-fix9
  • RC-Rekall-v1.2-fix8
  • RC-Rekall-v1.2-fix7
  • RC-Rekall-v1.2-fix6
  • RC-Rekall-v1.2-fix5
  • RC-Rekall-v1.2-fix4
  • RC-Rekall-v1.2-fix3
  • RC-Rekall-v1.2-fix2
  • RC-Rekall-v1.2-fix1
  • RC-Rekall-v1.1-fix-3
  • RC-Rekall-v1.1-fix-2
  • RC-Rekall-v1.1-fix-1
  • RC-Rekall-v1.1-delivered
  • preprod20220209-1535
23 results

postcss.config.js

Blame
  • index.twig 3.24 KiB
    <!DOCTYPE html>
    <html class="no-js">
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
    
        <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 %}
    
        {% if current_page %}
            <link rel="canonical" href="{{ current_page.url }}" />
        {% endif %}
    
        <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Droid+Sans:400,700|Droid+Sans+Mono" type="text/css" />
        <link rel="stylesheet" href="{{ theme_url }}/style.css" type="text/css" />
        <link rel="stylesheet" href="{{ theme_url }}/fontello.css" type="text/css" />
    </head>
    <body{% if config.theme_config.widescreen %} class="widescreen"{% endif %}>
    
        <div id="header">
            <div class="container">
                <a id="nav-toggle" title="Toggle Menu" role="button" aria-controls="nav" aria-expanded="false" tabindex="1">
                    <span class="icon-menu" aria-hidden="true"></span>
                    <span class="sr-only">Toggle Menu</span>
                </a>
                <h1>
                    <a href="{{ "index"|link }}">{{ site_title }}</a>
                </h1>
                <div id="nav" role="region" tabindex="-1">
                    <ul>
                        {% for page in pages if page.title and not page.hidden %}
                            {% set pageDepth = page.id|split('/')|length %}
                            {% if (pageDepth == 2) and (page.id ends with "/index") or (pageDepth == 1) %}
                                <li{% if page.id == current_page.id %} class="active"{% endif %}>
                                    <a href="{{ page.url }}">{{ page.title }}</a>
                                </li>
                            {% endif %}
                        {% endfor %}
                    </ul>
                </div>
            </div>
        </div>
    
        <div id="main">
            <div class="container">
                {{ content }}
            </div>
        </div>
    
        <div id="footer">
            <div class="container">
                <div class="social">
                    {% for social in pages._meta.meta.social %}
                        <a href="{{ social.url }}" title="{{ social.title }}" role="button">
                            <span class="icon-{{ social.icon }}" aria-hidden="true"></span>
                            <span class="sr-only">{{ social.title }}</span>
                        </a>
                    {% endfor %}
                </div>
                <p>
                    <a href="http://picocms.org/">Pico</a> was made by <a href="http://gilbert.pellegrom.me">Gilbert Pellegrom</a>
                    and is maintained by <a href="https://github.com/picocms/Pico/graphs/contributors">The Pico Community</a>.
                    Released under the <a href="https://github.com/picocms/Pico/blob/master/LICENSE.md">MIT license</a>.
                </p>
            </div>
        </div>