|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en-GB-oxendict"> |
| 3 | +<head> |
| 4 | + {% include head.html %} |
| 5 | + <title>{{ page.title }} / Textpattern CMS user documentation</title> |
| 6 | + <meta name="robots" content="index, follow"> |
| 7 | + <meta name="twitter:card" content="summary"> |
| 8 | + <meta name="twitter:site" content="@textpattern"> |
| 9 | + <meta name="twitter:title" content="{{ page.title }}"> |
| 10 | + <meta name="twitter:description" content="{{ page.description }}"> |
| 11 | + <meta name="twitter:image:src" content="https://docs.textpattern.com/apple-touch-icon-180x180.png"> |
| 12 | + <meta name="twitter:url" content="https://docs.textpattern.com{{ page.url }}"> |
| 13 | + <meta property="og:image" content="https://textpattern.com/assets/img/branding/textpattern/textpattern-og.png"> |
| 14 | + {% seo title=false %} |
| 15 | +</head> |
| 16 | + |
| 17 | +<body itemscope itemtype="https://schema.org/WebPage"> |
| 18 | + |
| 19 | +{% include header.html %} |
| 20 | + |
| 21 | +<div class="container"> |
| 22 | + <nav aria-label="Breadcrumb navigation"> |
| 23 | + <ol class="breadcrumbs" itemscope itemtype="https://schema.org/BreadcrumbList"> |
| 24 | + <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> |
| 25 | + <a itemprop="item" href="https://docs.textpattern.com/"><span itemprop="name">Documentation</span></a> |
| 26 | + <meta itemprop="position" content="1"> |
| 27 | + </li> |
| 28 | + <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> |
| 29 | + <a itemprop="item" href="index"><span itemprop="name">{{ page.category }}</span></a> |
| 30 | + <meta itemprop="position" content="2"> |
| 31 | + </li> |
| 32 | + <li class="current" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem"> |
| 33 | + <b itemprop="name" aria-current="location">{{ page.title }}</b> |
| 34 | + <meta itemprop="item" content="https://docs.textpattern.com{{ page.url }}"> |
| 35 | + <meta itemprop="position" content="3"> |
| 36 | + </li> |
| 37 | + </ol> |
| 38 | + </nav> |
| 39 | + |
| 40 | + <article> |
| 41 | + |
| 42 | + {{ content }} |
| 43 | + |
| 44 | + {% if page.tags %} |
| 45 | + <footer class="article-footer"> |
| 46 | + <span class="ui-icon ui-icon-tag">Tags:</span> |
| 47 | + {% for tag in page.tags %} |
| 48 | + <a rel="category tag" href="types/{{ tag | slugify }}" title="View documentation in this category">{{ tag }}</a> |
| 49 | + {% endfor %} |
| 50 | + </footer> |
| 51 | + {% endif %} |
| 52 | + |
| 53 | + </article> |
| 54 | + |
| 55 | + <p class="alert-block information footnote report-issues">If you notice any kind of problem with this page's construction or content (outdated information, typos, broken links, or whatever), <a rel="external" target="_blank" href="https://github.com/textpattern/textpattern.github.io/issues/new?assignees=&labels=&template=discuss-existing-page.md&title=page%3A+{{ page.url }}">open an issue</a> to have it sorted. Or <a rel="external" target="_blank" href="https://github.com/textpattern/textpattern.github.io/blob/master/README.md">have a go at it</a> yourself. :)</p> |
| 56 | +</div> |
| 57 | + |
| 58 | +{% include footer.html %} |
| 59 | + |
| 60 | +</body> |
| 61 | +</html> |
0 commit comments