-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgames.html
More file actions
34 lines (30 loc) · 819 Bytes
/
games.html
File metadata and controls
34 lines (30 loc) · 819 Bytes
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
---
layout: default
title: Games
---
<section class="text-bg-dark">
<div class="container px-4 py-2">
<ol class="breadcrumb mb-0">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item"><a href="{{ page.url }}">{{ page.title }}</a></li>
</ol>
</div>
</section>
<section>
<div class="container p-4">
<h1>Made with VUEngine Studio</h1>
<p class="fs-5 mb-4">
A selection of projects that have been brought to life with VUEngine Studio.
</p>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3 my-1">
{% for game in site.data.games %}
{% include game.html %}
{% endfor %}
</div>
<p class="mt-4">
<a href="https://www.virtual-boy.com/games/tags/vuengine/" role="button" class="btn btn-primary">
More games…
</a>
</p>
</div>
</section>