-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
84 lines (63 loc) · 3.11 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
---
layout: default
id: home
title: Mod the dotnet-bot
description: Coding is better with friends, especially when they bring their own mods. Create your own coding companion by modding the dotnet-bot.
---
<div class="intro container" data-animate-in="up">
<figure class="intro__img" data-animate-in="fade">
<img src="{{ 'assets/images/hero-illustration.svg' | relative_url }}" alt="Dotnet bot" />
</figure>
<div class="intro__content">
<h1 class="h1 text-brand">Mod the dotnet-bot</h1>
<p class="h3 font-weight-400">Create your own coding companion</p>
<a class="button" href="{{ '/create-your-bot/' | relative_url }}">Get started</a>
</div>
</div>
<div class="my-6 container">
<div class="col-md-10 col-lg-6 mx-auto" data-animate-in="up">
<p class="h4 font-weight-400 font-ss">Coding is better with friends, especially when they bring their own mods. As the mascot for the .NET community, dotnet-bot helps with checking pull requests on .NET repos on GitHub. Create your own custom coding companion by modding the dotnet-bot.</p>
</div>
</div>
<section class="py-6 my-4 my-lg-6" id="how-it-works">
<header class="container mb-5 text-center" data-animate-in="up">
<h2 class="h2 text-brand m-0 font-weight-400">How it works</h2>
</header>
<div class="container-md d-md-flex">
<div class="col-12 col-md-4 px-4 px-lg-0 pr-md-3 mb-5 mb-md-0" data-animate-in="up">
<img class="mx-auto mb-1" src="{{ 'assets/images/Step-one.svg' | relative_url }}" alt="Dotnet bot" />
<h3 class="h3 text-brand">Step 1</h3>
<p>Choose the parts for your adventure.</p>
</div>
<div class="col-12 col-md-4 px-4 px-lg-0 px-md-2 mb-5 mb-md-0" data-animate-in="up">
<img class="mx-auto mb-1" src="{{ 'assets/images/Step-two.svg' | relative_url }}" alt="Dotnet bot" />
<h3 class="h3 text-brand">Step 2</h3>
<p>Create your ultimate bot mod.</p>
</div>
<div class="col-12 col-md-4 px-4 px-lg-0 pl-md-2" data-animate-in="up">
<img class="mx-auto mb-1" src="{{ 'assets/images/Step-three.svg' | relative_url }}" alt="Dotnet bot" />
<h3 class="h3 text-brand">Step 3</h3>
<p>Share your dotnet-bot with the world.</p>
</div>
</div>
<div class="container mt-6 text-center" data-animate-in="up">
<a class="button" href="{{ '/create-your-bot/' | relative_url }}">Get started</a>
</div>
</section>
<section class="py-6 my-4 my-lg-6" id="gallery">
<header class="container mb-5 text-center" data-animate-in="up" data-animate-in-delay="0.4">
<h2 class="h2 text-brand m-0 font-weight-400">Gallery</h2>
</header>
<div class="container-md gallery">
{% for image in site.data.gallery limit:9 %}
{% capture img %}/assets/images/gallery/{{ image.image }}{% endcapture %}
<figure data-animate-in="up">
<img src="{{ img | relative_url }}" alt="{% if image.alt %}{{ image.alt }}{% else %}Modded dotnet bot{% endif %}" />
</figure>
{% endfor %}
<span class="spacer"></span>
</div>
<div class="container mt-6 text-center" data-animate-in="up">
<a class="button" href="{{ '/gallery/' | relative_url }}">See more</a>
</div>
</section>