-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathresources.html
More file actions
143 lines (133 loc) · 4.18 KB
/
Copy pathresources.html
File metadata and controls
143 lines (133 loc) · 4.18 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
---
layout: frontpage
title: Resources
description: SensorFu brings proactive confidence to mission-critical OT systems across all industries.
preload_image: /assets/img/resources-banner.jpg
redirect_from:
- /whitepapers
- /whitepapers/
---
<div class="hero resources-hero">
<div class="container-xl">
<div class="hero-content">
<h1>Resources</h1>
<p class="lead">
Our Resources hub offers direct access to insights, technical info and documentation.
</p>
<p>
<a href="#articles" class="btn btn-gradient mx-1 my-2">Articles →</a>
<a href="#whitepapers" class="btn btn-gradient mx-2 my-2"
>Whitepapers →</a
>
<a href="#documentation" class="btn btn-gradient mx-2 my-2"
>Documentation →</a
>
</p>
</div>
</div>
</div>
<section id="articles">
<div class="py-5 px-2 px-md-4">
<div class="container-xl py-4">
<h1>Articles</h1>
<div class="posts-container pt-4">
{% for post in site.categories.article limit:9 %}
<div class="post-card bg-light">
<div class="post-header">
{% if post.tags and post.tags != empty %}
<div class="post-tags">
{% for tag in post.tags %}
<span class="post-tag">{{ tag }}</span>
{% endfor %}
</div>
{% endif %}
<h4 class="post-title">{{ post.title }}</h4>
</div>
<div class="card-body py-4">
<div class="post-excerpt">
<span class="post-date"
>{{ post.date | date: "%B %-d, %Y" }} -
</span>
{{ post.excerpt }}
</div>
<a href="{{ post.url }}">Read more →</a>
</div>
</div>
{% endfor %}
</div>
<p class="mt-5 px-4">
<a
href="#articlesArchive"
data-bs-toggle="collapse"
role="button"
aria-expanded="false"
aria-controls="articlesArchive"
>
Show article archive →
</a>
</p>
<div class="collapse" id="articlesArchive">
<div class="post-list-minimal px-4">
{% for post in site.categories.article offset:9 %}
<p class="mb-3">
<span class="me-2" aria-hidden="true">»</span>
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
<span class="text-muted small">
— {{ post.date | date: "%B %-d, %Y" }}
</span>
</p>
{% endfor %}
</div>
</div>
</div>
</div>
</section>
<section id="whitepapers">
<div class="py-5 px-2 px-md-4">
<div class="container-xl py-4">
<h1>Whitepapers</h1>
<div class="posts-container pt-4">
{% for post in site.categories.whitepaper limit:9 %}
<div class="post-card bg-light">
<div class="post-header">
<div class="post-tag">{{ post.categories | first }}</div>
<h4 class="post-title">{{ post.title }}</h4>
</div>
<div class="card-body py-4">
<div class="post-excerpt">
<span class="post-date"
>{{ post.date | date: "%B %-d, %Y" }} -
</span>
{{ post.excerpt }}
</div>
<a href="{{ post.url }}">Read more →</a>
</div>
</div>
{% endfor %}
</div>
<div class="post-list-minimal mt-5 px-4">
{% for post in site.categories.whitepaper offset:3 %}
<p class="mb-3">
<span class="me-2" aria-hidden="true">»</span>
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
<span class="text-muted small">
— {{ post.date | date: "%B %-d, %Y" }}
</span>
</p>
{% endfor %}
</div>
</div>
</div>
</section>
<section id="documentation">
<div class="py-5 px-2 px-md-4">
<div class="container-xl py-4">
<h1>Documentation</h1>
<p class="my-4">
<a href="https://portal.sensorfu.com/manual/" class="btn btn-gradient target="_blank"
>Beacon User Manual →</a
>
</p>
</div>
</div>
</section>