2017-06-15 10:41:44 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
2017-08-14 18:56:50 +02:00
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="{{ "images/apple-icon-57x57.png" | absURL }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="60x60" href="{{ "images/apple-icon-60x60.png" | absURL }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="{{ "images/apple-icon-72x72.png" | absURL }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="76x76" href="{{ "images/apple-icon-76x76.png" | absURL }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="114x114" href="{{ "images/apple-icon-114x114.png" | absURL }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="{{ "images/apple-icon-120x120.png" | absURL }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="144x144" href="{{ "images/apple-icon-144x144.png" | absURL }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="{{ "images/apple-icon-152x152.png" | absURL }}">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ "images/apple-icon-180x180.png" | absURL }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="192x192" href="{{ "images/android-icon-192x192.png" | absURL }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ "images/favicon-32x32.png" | absURL }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="96x96" href="{{ "images/favicon-96x96.png" | absURL }}">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ "images/favicon-16x16.png" | absURL }}">
|
2017-07-04 12:46:56 +02:00
|
|
|
<meta name="msapplication-TileColor" content="#ffffff">
|
2017-08-14 18:56:50 +02:00
|
|
|
<meta name="msapplication-TileImage" content="{{ "images/ms-icon-144x144.png" | absURL }}">
|
2017-07-04 12:46:56 +02:00
|
|
|
<meta name="theme-color" content="#ffffff">
|
2017-08-01 19:18:28 +02:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700" rel="stylesheet" media="none" onload="this.media='all';">
|
2017-09-05 15:59:57 +02:00
|
|
|
<link rel="stylesheet" href="{{ "css/prism.css" | absURL }}" media="none" onload="this.media='all';">
|
2017-07-12 16:20:00 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ "css/styles.css" | absURL }}">
|
2017-08-17 18:21:19 +02:00
|
|
|
<style id="inverter" media="none">
|
|
|
|
html { filter: invert(100%) }
|
|
|
|
* { background-color: inherit }
|
|
|
|
img:not([src*=".svg"]), .colors, iframe, .demo-container { filter: invert(100%) }
|
|
|
|
</style>
|
2017-06-15 10:41:44 +02:00
|
|
|
<title>
|
|
|
|
{{ block "title" . }}
|
|
|
|
{{ .Title }} | {{ .Site.Title }}
|
|
|
|
{{ end }}
|
|
|
|
</title>
|
2017-08-01 16:08:15 +02:00
|
|
|
{{ if .IsHome }}
|
|
|
|
<link rel="manifest" href="manifest.json">
|
|
|
|
{{ end }}
|
2017-06-15 10:41:44 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-07-29 23:16:36 +02:00
|
|
|
{{ if ne .Type "print-version" }}
|
2017-07-29 11:18:45 +02:00
|
|
|
<a href="#main">skip to content</a>
|
|
|
|
{{ end }}
|
2017-06-19 11:40:21 +02:00
|
|
|
{{ partial "svg.html" . }}
|
2017-07-29 23:16:36 +02:00
|
|
|
<div class="wrapper {{ if eq .Type "print-version" }}print-version{{ end }}">
|
2017-07-29 11:18:45 +02:00
|
|
|
<header class="intro-and-nav" role="banner">
|
|
|
|
<div>
|
|
|
|
<div class="intro">
|
|
|
|
<a class="logo" href="/" aria-label="{{ .Site.Title }} pattern library home page">
|
2017-08-02 19:00:38 +02:00
|
|
|
<img src="{{ "images/logo.svg" | absURL }}" alt="">
|
2017-07-29 11:18:45 +02:00
|
|
|
</a>
|
2017-07-30 11:57:22 +02:00
|
|
|
<p class="library-desc">
|
|
|
|
{{ .Site.Params.Description | markdownify }}
|
|
|
|
{{ if ne .Type "print-version" }}
|
|
|
|
<a class="print" href="{{ "print-version" | absURL }}">
|
2017-08-12 10:14:05 +02:00
|
|
|
<svg viewBox="0 0 35 45" aria-hidden="true" focusable="false">
|
|
|
|
<use xlink:href="#doc"></use>
|
|
|
|
</svg>Print version
|
2017-07-30 11:57:22 +02:00
|
|
|
{{ end }}
|
|
|
|
</a>
|
|
|
|
</p>
|
2017-07-29 23:16:36 +02:00
|
|
|
{{ if eq .Type "print-version" }}
|
2017-08-02 22:37:50 +02:00
|
|
|
<p class="toc-link"><a href="#toc">Table of contents</a> <span aria-hidden="true">⇩</span></p>
|
2017-07-29 11:18:45 +02:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ block "nav" . }}
|
|
|
|
<nav id="patterns-nav" class="patterns" role="navigation">
|
|
|
|
<button id="menu-button" aria-expanded="false">
|
2017-08-12 10:14:05 +02:00
|
|
|
<svg viewBox="0 0 50 50" aria-hidden="true" focusable="false">
|
2017-07-29 11:18:45 +02:00
|
|
|
<use xlink:href="#menu"></use>
|
|
|
|
</svg>
|
|
|
|
Menu
|
|
|
|
</button>
|
|
|
|
{{ $current := . }}
|
|
|
|
{{ range $.Site.Home.Sections }}
|
|
|
|
<ul id="patterns-list">
|
|
|
|
{{ range .Pages.ByWeight }}
|
|
|
|
<li class="pattern">
|
|
|
|
<a href="{{ .RelPermalink }}" {{ if eq $current.Title .Title }}aria-current="page"{{ end }}>
|
2017-08-03 13:16:24 +02:00
|
|
|
<svg class="bookmark-icon" aria-hidden="true" focusable="false" viewBox="0 0 40 50">
|
|
|
|
<use xlink:href="#bookmark"></use>
|
|
|
|
</svg>
|
2017-07-29 11:18:45 +02:00
|
|
|
<span class="text">{{ .Title }}</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ range .Sections.ByWeight }}
|
|
|
|
<li>
|
|
|
|
<h3>{{ .Title }}</h3>
|
|
|
|
<ul>
|
|
|
|
{{ range .Pages.ByWeight }}
|
|
|
|
<li class="pattern">
|
|
|
|
<a href="{{ .RelPermalink }}" {{ if eq $current.Title .Title }}aria-current="page"{{ end }}>
|
2017-08-03 13:16:24 +02:00
|
|
|
<svg class="bookmark-icon" aria-hidden="true" viewBox="0 0 40 50" focusable="false">
|
|
|
|
<use xlink:href="#bookmark"></use>
|
|
|
|
</svg>
|
2017-07-29 11:18:45 +02:00
|
|
|
<span class="text">{{ .Title }}</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2017-06-15 10:41:44 +02:00
|
|
|
{{ end }}
|
2017-07-29 11:18:45 +02:00
|
|
|
</nav>
|
2017-06-15 10:41:44 +02:00
|
|
|
{{ end }}
|
2017-07-29 11:18:45 +02:00
|
|
|
</div>
|
|
|
|
</header>
|
2017-06-15 10:41:44 +02:00
|
|
|
<div class="main-and-footer">
|
|
|
|
<div>
|
|
|
|
{{ block "main" . }}
|
|
|
|
{{ end }}
|
|
|
|
<footer role="contentinfo">
|
2017-08-17 18:21:19 +02:00
|
|
|
<div>
|
|
|
|
<label for="themer">
|
|
|
|
dark theme: <input type="checkbox" id="themer" class="vh">
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
</label>
|
|
|
|
</div>
|
2017-07-13 20:05:53 +02:00
|
|
|
Powered by <strong>Infusion</strong>, a <strong>The Paciello Group</strong> project.<br>
|
2017-07-11 17:24:52 +02:00
|
|
|
For general enquiries, contact us on info@paciellogroup.com.
|
2017-06-15 10:41:44 +02:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2017-07-30 17:47:07 +02:00
|
|
|
<script src="{{ "js/prism.js" | absURL }}"></script>
|
|
|
|
<script src="{{ "js/dom-scripts.js" | absURL }}"></script>
|
2017-07-11 17:24:52 +02:00
|
|
|
{{ if .Page.IsHome }}
|
2017-07-12 16:20:00 +02:00
|
|
|
<script src="{{ "js/service-worker-registration.js" | absURL }}"></script>
|
2017-07-11 17:24:52 +02:00
|
|
|
{{ end }}
|
2017-06-15 10:41:44 +02:00
|
|
|
</body>
|
|
|
|
</html>
|