mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.7 KiB
104 lines
3.7 KiB
---
|
|
layout: default
|
|
---
|
|
|
|
{% if page.categories.columns %}
|
|
{% assign columns = page.categories.columns %}
|
|
{% else %}
|
|
{% assign columns = 3 %}
|
|
{% endif %}
|
|
|
|
{% if page.categories %}
|
|
<div class="uk-section">
|
|
<div class="uk-container">
|
|
|
|
{% if page.categories.title %}
|
|
<h2 class="uk-text-center heading-hero-2" style="padding-top: 25px !important;">{{ page.categories.title }}</h2>
|
|
{% endif %}
|
|
|
|
{% if page.categories.subtitle %}<p class="subtitle uk-text-lead uk-text-center">{{ page.categories.subtitle | escape }}</p>{% endif %}
|
|
|
|
<div class="uk-child-width-1-{{ columns }}@m uk-grid-match uk-text-center uk-margin-medium-top" data-uk-grid>
|
|
{% for item in site.data.navigation_home %}
|
|
{% if item.title %}
|
|
{% assign doc_url = item.doc | prepend:"/" | append:".html" %}
|
|
{% assign doc = site.docs | where:"url", doc_url | first %}
|
|
<div>
|
|
<div class="uk-card uk-card-body uk-inline uk-border-rounded">
|
|
<a class="uk-position-cover" href="{{ doc_url }}"></a>
|
|
{% if item.icon %}
|
|
<span data-uk-icon="icon: {{ item.icon }}; ratio: 2" class=""></span>
|
|
{% endif %}
|
|
<h3 class="uk-card-title uk-margin">{{ item.title }}</h3>
|
|
{% if item.desc %}
|
|
<p>{{ item.desc }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% comment %} ONLY include section if there are featured pages. {% endcomment %}
|
|
{% assign featured_exists = false %}
|
|
{% for doc in site.docs %}
|
|
{% if doc.tags contains page.featured.tag and featured_exists != false %}
|
|
{% assign featured_exists = false %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% if page.featured.tag and featured_exists == true %}
|
|
<div class="uk-section uk-text-center">
|
|
<div class="uk-container uk-container-small">
|
|
{% if page.featured.title %}
|
|
<h2 class="heading-hero-2">{{ page.featured.title }}</h2>
|
|
{% endif %}
|
|
<ul class="uk-list uk-list-large list-featured uk-child-width-1-2@s" data-uk-grid>
|
|
{% for doc in site.docs %}
|
|
{% if doc.tags contains page.featured.tag %}
|
|
<li><a href="{{ site.baseurl }}{{ doc.url }}">{{doc.title}}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if page.section %}
|
|
<div class="uk-section uk-text-center">
|
|
<div class="uk-container uk-container-small">
|
|
|
|
{% if page.section.title %}
|
|
<h2 class="uk-text-center heading-hero-2">{{ page.section.title }}</h2>
|
|
{% endif %}
|
|
|
|
{% if page.section.subtitle %}<p class="subtitle uk-text-lead uk-text-center">{{ page.section.subtitle | escape }}</p>{% endif %}
|
|
|
|
<div class="article-content uk-margin-medium-top">{{ content }}</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if page.cta.button_url contains 'http' %}
|
|
{% assign domain = '' %}
|
|
{% else %}
|
|
{% assign domain = relative_url %}
|
|
{% endif %}
|
|
|
|
|
|
{% if page.cta %}
|
|
<div class="uk-section uk-text-center">
|
|
<div class="uk-container uk-container-small">
|
|
<div data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; repeat: true">
|
|
<h3>{{ page.cta.title }}</h3>
|
|
{% if page.cta.subtitle %}<p class="subtitle uk-text-lead uk-text-center">{{ page.cta.subtitle | escape }}</p>{% endif %}
|
|
<a class="uk-button uk-button-primary uk-button-large button-cta" href="{{ domain }}{{ page.cta.button_url }}">{{ page.cta.button_text }}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% include footer.html %}
|
|
|