-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.html
More file actions
69 lines (63 loc) · 2.79 KB
/
Copy pathprojects.html
File metadata and controls
69 lines (63 loc) · 2.79 KB
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
67
68
69
---
layout: home
title: Projects
---
<div class="fe-blog-listing">
<!-- FEATURED PROJECT -->
{% assign featured = site.projects.first %}
<a href="/blogs{{ featured.url }}" class="fe-featured-card">
<div class="fe-featured-inner">
<div class="fe-featured-content">
<div class="fe-tags-row">
<span class="fe-tag fe-tag--featured">Featured</span>
{% if featured.tags %}
{% for tag in featured.tags limit:2 %}
<span class="fe-tag fe-tag--{{ tag | slugify }}">{{ tag }}</span>
{% endfor %}
{% endif %}
</div>
<h2 class="fe-featured-title">{{ featured.title }}</h2>
<p class="fe-featured-excerpt">{{ featured.description }}</p>
<div class="fe-meta">
<span class="fe-tag fe-tag--{{ featured.level | downcase }}">{{ featured.level }}</span>
</div>
</div>
<div class="fe-featured-icon">
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polygon points="12 2 2 7 12 12 22 7 12 2"/><polyline points="2 17 12 22 22 17"/><polyline points="2 12 12 17 22 12"/></svg>
</div>
</div>
</a>
<!-- PROJECT LIST -->
<div class="fe-post-list" id="fe-list">
{% for project in site.projects offset:1 %}
<a href="/blogs{{ project.url }}" class="fe-post-row">
<div class="fe-post-row-main">
<div class="fe-post-row-top">
{% if project.tags.first %}
<span class="fe-tag fe-tag--{{ project.tags.first | slugify }}">{{ project.tags.first }}</span>
{% endif %}
{% if project.level %}
<span class="fe-meta-item">{{ project.level }}</span>
{% endif %}
</div>
<h3 class="fe-post-row-title">{{ project.title }}</h3>
<p class="fe-post-row-excerpt">{{ project.description }}</p>
</div>
<div class="fe-post-row-aside">
<svg class="fe-post-row-arrow" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>
</div>
</a>
{% endfor %}
</div>
{% include pagination.html %}
<!-- TOPIC FILTER -->
<div class="fe-topics">
<p class="fe-topics-label">Browse by topic</p>
<div class="fe-topics-row">
<span class="fe-tag fe-tag--azure">Azure</span>
<span class="fe-tag fe-tag--security">Security</span>
<span class="fe-tag fe-tag--platform-eng">Platform eng</span>
<span class="fe-tag fe-tag--iac">IaC</span>
</div>
</div>
</div>