-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 1.15 KB
/
index.html
File metadata and controls
23 lines (22 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: home
title: Tutorials
description: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent at felis quis metus euismod consectetur. Integer tellus nunc, consequat et venenatis non, egestas a est. Nulla aliquet libero ac arcu malesuada, a congue mi ultrices. Cras at orci leo. Nunc eu sapien ut purus mattis aliquam.
redirect_to: https://reuse.diglib.org/home/tutorials/
---
<div class="row row-cols-1 row-cols-md-4 mb-3">
{% for tutorial in site.data.tutorials %}
<div class="col py-3">
<div class="card text-center shadow-sm h-100" style=";width: 18rem;">
<i class="bi {{ tutorial.icon }} fs-1 mt-2"></i>
<div class="card-body">
<h3 class="card-title fs-4">{{ tutorial.name }}</h3>
<p class="card-text text-muted">{{ tutorial.description }}</p>
<a href="{{ tutorial.path | relative_url }}" class="btn btn-outline-primary rounded-pill w-100">Start</a>
</div>
</div>
</div>
{% endfor %}
</div>