forked from OntimizeWeb/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
components-archive.html
executable file
·71 lines (48 loc) · 1.73 KB
/
components-archive.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
layout: archive
title: "Components"
permalink: /components-archive/
author_profile: false
---
{% include base_path %}
<div class="grid__wrapper">
{% for post in site.componentTypes %}
{% if post.header.teaser %}
{% capture teaser %}{{ post.header.teaser }}{% endcapture %}
{% else %}
{% assign teaser = site.teaser %}
{% endif %}
{% if post.id %}
{% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %}
{% else %}
{% assign title = post.title %}
{% endif %}
{% if post.collectionURL %}
{% assign collURL = post.collectionURL %}
{% else %}
{% assign collURL = "asdf" %}
{% endif %}
<div class="{{ include.type | default: "grid" }}__item">
<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">
{% if teaser %}
<div class="archive__item-teaser">
<img src=
{% if teaser contains "://" %}
"{{ teaser }}"
{% else %}
"{{ teaser | prepend: "/images/" | prepend: base_path }}"
{% endif %}
alt="">
</div>
{% endif %}
<h2 class="archive__item-title" itemprop="headline">
<a href="{{ base_path }}{{ collURL }}" rel="permalink">{{ title }}</a>
</h2>
{% if post.read_time %}
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
{% endif %}
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
</article>
</div>
{% endfor %}
</div>