|
| 1 | +<!DOCTYPE html> |
| 2 | +<html class="is-collection" data-template="collection"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| 6 | + <meta name="viewport" content="width=device-width"> |
| 7 | + <title>{{page.collection_name}} - {{site.title}}</title> |
| 8 | + <link rel="stylesheet" type="text/css" href="{{site.url}}/css/website.css"> |
| 9 | + |
| 10 | + <meta property="og:url" content="{{site.url}}{{page.url}}"> |
| 11 | + <meta property="og:type" content="website"> |
| 12 | + <meta property="og:title" content="{{page.collection_name}} - {{site.title}}"> |
| 13 | + <meta property="og:image" content="{{site.url}}/images/css-reference-share.png"> |
| 14 | + <meta property="og:image:type" content="image/png"> |
| 15 | + <meta property="og:image:width" content="1200"> |
| 16 | + <meta property="og:image:height" content="630"> |
| 17 | + <meta property="og:description" content="Learn how {{page.collection_name}} works in CSS."> |
| 18 | + |
| 19 | + <meta name="twitter:card" content="summary_large_image"> |
| 20 | + <meta name="twitter:site" content="@jgthms"> |
| 21 | + <meta name="twitter:creator" content="@jgthms"> |
| 22 | + <meta name="twitter:title" content="{{page.collection_name}} - {{site.title}}"> |
| 23 | + <meta name="twitter:image" content="{{site.url}}/images/css-reference-share.png"> |
| 24 | + <meta name="twitter:description" content="Learn how {{page.collection_name}} works in CSS."> |
| 25 | + |
| 26 | + {% include favicons.html %} |
| 27 | + </head> |
| 28 | + <body> |
| 29 | + {% include menu.html %} |
| 30 | + <main class="main"> |
| 31 | + <header class="heading"> |
| 32 | + <h1 class="heading-title"> |
| 33 | + <strong>{{page.collection_name}}</strong> in CSS |
| 34 | + </h1> |
| 35 | + <p class="heading-description">The CSS properties that allow you to {{page.description}}</p> |
| 36 | + </header> |
| 37 | + <section class="list"> |
| 38 | + {{content}} |
| 39 | + </section> |
| 40 | + </main> |
| 41 | + {% include modals/share.html %} |
| 42 | + {% include google-fonts.html %} |
| 43 | + <script src="{{site.url}}/javascript/clipboard.min.js"></script> |
| 44 | + <script src="{{site.url}}/javascript/main.js"></script> |
| 45 | + {% include noscript.html %} |
| 46 | + </body> |
| 47 | +</html> |
0 commit comments