PluginProbe
Snippet Shortcodes / 4.1.4
Snippet Shortcodes v4.1.4
5.2.1 5.2 5.1.8 5.1.6 5.1.7 5.1.5 trunk 1.0 1.1 1.2 1.3 1.3.1 1.4 1.5 1.5.1 1.6 1.6.1 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.8 2.0 2.0.1 All 74 releases
shortcode-variables / docs / _layouts / default.html

default.html in Snippet Shortcodes 4.1.4, at docs/_layouts/default.html

162 lines 4.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <!DOCTYPE html>
2 <html lang="{{ site.lang | default: "en-US" }}">
3 <head>
4
5 <meta charset="UTF-8">
6 <meta http-equiv="X-UA-Compatible" content="IE=edge">
7 <meta name="viewport" content="width=device-width, initial-scale=1">
8
9 {% seo %}
10 <link rel="stylesheet" href="{{ "/assets/css/style.css?v=" | append: site.github.build_revision | relative_url }}">
11 <style>
12 .menu, .menu ul {
13 background: none;
14 border: none;
15 list-style: disc;
16 height: auto;
17 }
18 .menu li {
19 border: none;
20 display: list-item;
21 float: none;
22 height: auto;
23 margin-left:20px;
24 width: 100%;
25 }
26 .menu li a {
27 font-size: 14px;
28 color: #e72c59;
29 text-align: left;
30 height: 16px;
31 }
32 .menu ul {
33 margin-bottom: 0px;
34 }
35 blockquote {
36 color: green;
37 }
38 h1 {
39 font-size: 23px;
40 }
41
42 h1, h1 a:hover, h1 a:visited,
43 h2, h3, h4, h5, h6, th
44 {
45 color: #e72c59;
46 }
47 .product-logo {
48 margin-right: 10px;
49 }
50 a:hover {
51 font-weight: normal !important;
52 }
53 @media only screen and (max-width: 600px) {
54 .site-description {
55 display: none;
56 }
57 }
58
59
60 /* Hide checkbox */
61 #navcheck {
62 visibility: hidden;
63 }
64
65 /* Mobile breakpoint */
66 @media (max-width: 767px) {
67
68 .menu-label {
69 user-select: none;
70 }
71
72 .menu {
73 display: none;
74 border-top: 1px solid #e5e5e5;
75 padding-top: 5px;
76
77 }
78
79 .view {
80 text-align: right;
81 display: none;
82 }
83
84 #navcheck:checked + .menu {
85 display: block;
86 }
87
88 #navcheck:checked + .view {
89 display: block;
90 }
91 }
92
93 /* Desktop breakpoint */
94 @media (min-width: 768px) {
95 .menu-label {
96 display: none;
97 }
98 }
99 </style>
100 <!--[if lt IE 9]>
101 <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
102 <![endif]-->
103 </head>
104 <body>
105 <div class="wrapper">
106 <header>
107
108
109 <h1>
110 <a href="{{ site.baseurl }}/">
111 <img src="{{site.logo | relative_url}}" alt="Logo" width="50" height="50" align="left" class="product-logo" />
112 {{ site.title | default: site.github.repository_name }}
113 </a>
114 </h1>
115
116 <p class="site-description">{{ site.description | default: site.github.project_tagline }}</p>
117 <label class="menu-label" for="navcheck"><img src="{{ site.baseurl }}/assets/images/menu.png"/></label>
118 <input type="checkbox" id="navcheck" name="navcheck" />
119 <ul class="menu">
120 <li><a href="{{ site.baseurl }}/">Home</a></li>
121 <li><a href="https://shop.yeken.uk/get-a-trial-license/">Get a trial</a></li>
122 <li><a href="https://shop.yeken.uk/product/shortcode-variables/">Upgrade</a></li>
123 <li><a href="https://github.com/alicolville/shortcode-variables/releases">Release notes</a></li>
124 <li>
125 <a href="{{ site.baseurl }}/features.html">Features</a>
126 <ul>
127 <li><a href="{{ site.baseurl }}/shortcodes-own.html">Your own shortcodes</a></li>
128 <li><a href="{{ site.baseurl }}/shortcodes-free.html">Free helper shortcodes</a></li>
129 <li><a href="{{ site.baseurl }}/shortcodes-premium.html">Premium helper shortcodes</a></li>
130 <li><a href="{{ site.baseurl }}/csv-import.html">Import via CSV</a></li>
131 </ul>
132 </li>
133 <li><a href="https://profiles.wordpress.org/aliakro/#content-plugins">Other Plugins</a></li>
134 <li><a href="{{ site.baseurl }}/contact.html">Contact</a></li>
135 </ul>
136
137 <p class="view">
138 <small>More:</small><br />
139 <a href="https://wordpress.org/plugins/shortcode-variables/">WordPress.org</a> / <a href="{{ site.github.repository_url }}">GitHub</a> / <a href="https://www.yeken.uk">YeKen.uk</a>
140 </p>
141
142 </header>
143 <section>
144
145 {{ content }}
146
147 </section>
148 </div>
149 <script src="{{ "/assets/js/scale.fix.js" | relative_url }}"></script>
150 {% if site.google_analytics %}
151 <script>
152 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
153 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
154 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
155 })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
156 ga('create', '{{ site.google_analytics }}', 'auto');
157 ga('send', 'pageview');
158 </script>
159 {% endif %}
160 </body>
161 </html>
162