123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- {% if page.url == '/' %}
- <title>{{ site.data.project.title }} - {{ site.data.project.tagline }}</title>
- {% else %}
- <title>{{ page.title }} - {{ site.data.project.title }}</title>
- {% endif %}
- {% if site.data.project.description %}
- <meta name="description" content="{{ site.data.project.description }}">
- {% endif %}
- {% if site.data.images.favicon %}
- <link rel="icon" type="image/x-icon" href="{{ site.data.images.favicon }}" />
- {% else %}
- <link rel="icon" type="image/x-icon" href="https://theme.thephpleague.com/img/favicon.ico" />
- {% endif %}
- {% if site.data.images.apple_touch %}
- <link rel="apple-touch-icon-precomposed" href="{{ site.data.images.apple_touch }}">
- {% else %}
- <link rel="apple-touch-icon-precomposed" href="https://theme.thephpleague.com/img/apple-touch-icon-precomposed.png">
- {% endif %}
- <link rel="stylesheet" href="https://theme.thephpleague.com/css/all.css">
- </head>
- <body>
- <section class="all_packages">
- <a href="https://thephpleague.com/">
- <img src="https://theme.thephpleague.com/img/loep_logo.png" width="195" height="200" alt="The League of Extraordinary Packages">
- </a>
- <h2>Our Packages:</h2>
- <ul>
- <!-- Loaded via JavaScript -->
- </ul>
- </section>
- <header>
- <a class="logo" href="/">
- {% if site.data.images.logo %}
- <span class="icon">
- <img src="{{ site.data.images.logo }}" width="50" height="40" alt="{{ site.data.project.title }} - {{ site.data.project.tagline }}">
- </span>
- {% endif %}
- <span class="name">{{ site.data.project.title }}</span>
- <span class="tagline">{{ site.data.project.tagline }}</span>
- </a>
- <a href="https://thephpleague.com/" class="league">
- Presented by The League of Extraordinary Packages
- </a>
- </header>
- <input type="checkbox" id="menu">
- <label for="menu" onclick>
- <div class="closed">☰ Menu</div>
- <div class="open">☰ Hide Menu</div>
- </label>
- <main>
- <menu>
- {% for section in site.data.menu %}
- <h2>{{ section[0] }}</h2>
- <ul>
- {% for link in section[1] %}
- <li {% if page.url == link[1] %}class="selected"{% endif %}>
- <a href="{{ link[1] }}">{{ link[0] }}</a>
- </li>
- {% endfor %}
- </ul>
- {% endfor %}
- </menu>
- <article>
- {{ content }}
- </article>
- </main>
- <footer>
- <span>© Copyright <a href="https://thephpleague.com">The League of Extraordinary Packages</a>.</span>
- <span>Site design by <a href="https://reinink.ca">Jonathan Reinink</a>.</span>
- </footer>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
- <script src="https://theme.thephpleague.com/js/scripts.js"></script>
- <script src="https://theme.thephpleague.com/js/prism.js"></script>
- {% if site.data.project.google_analytics_tracking_id %}
- <script>
- (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
- function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
- e=o.createElement(i);r=o.getElementsByTagName(i)[0];
- e.src='//www.google-analytics.com/analytics.js';
- r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
- ga('create','{{ site.data.project.google_analytics_tracking_id }}');ga('send','pageview');
- </script>
- {% endif %}
- </body>
- </html>
|