This repository has been archived by the owner on Jan 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
92 lines (91 loc) · 3.64 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
85
86
87
88
89
90
91
92
---
layout: page
title: Home
---
<section class="body-font border-b border-red-200 text-gray-700">
<div class="container mx-auto px-5 py-12">
<div class="mb-20 flex w-full flex-col text-center">
<h1 class="title-font mb-4 text-2xl font-medium text-gray-900 sm:text-3xl">{{ site.title }}</h1>
<p class="mx-auto text-base leading-relaxed lg:w-2/3">
A collection of tools and resources to help you run your D&D games.
</p>
</div>
<div class="flex flex-wrap">
<div class="border-gray-200 px-8 py-6 md:w-full lg:w-1/2 lg:border-l-2 xl:w-1/4">
<h2 class="title-font mb-2 text-lg font-medium text-gray-900 sm:text-xl">Spell API</h2>
<p class="mb-4 text-base leading-relaxed">Create your own tools by consuming our JSON API of SRD spells.</p>
<a href="{% link api/index.html %}" class="inline-flex items-center text-red-700">
API Documentation
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="ml-2 h-4 w-4"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
<div class="border-gray-200 px-8 py-6 md:w-full lg:w-1/2 lg:border-l-2 xl:w-1/4">
<h2 class="title-font mb-2 text-lg font-medium text-gray-900 sm:text-xl">Item API</h2>
<p class="mb-4 text-base leading-relaxed">Create your own tools by consuming our JSON API of magical items.</p>
<a href="{% link api/index.html %}" class="inline-flex items-center text-red-700">
API Documentation
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="ml-2 h-4 w-4"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
<div class="border-gray-200 px-8 py-6 md:w-full lg:w-1/2 lg:border-l-2 xl:w-1/4">
<h2 class="title-font mb-2 text-lg font-medium text-gray-900 sm:text-xl">Price Calculator</h2>
<p class="mb-4 text-base leading-relaxed">
Need to figure out how much that item magic costs? Use this Calculator! Takes local variables into
consideration to determine the price of a magical item.
</p>
<a href="{% link tools/price.html %}" class="inline-flex items-center text-red-700">
Try out the calculator
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="ml-2 h-4 w-4"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
<div class="border-gray-200 px-8 py-6 md:w-full lg:w-1/2 lg:border-l-2 xl:w-1/4">
<h2 class="title-font mb-2 text-lg font-medium text-gray-900 sm:text-xl">DM Resources</h2>
<p class="mb-4 text-base leading-relaxed">Links to other online resources to help you run your game.</p>
<a href="{% link tools/index.html %}" class="inline-flex items-center text-red-700">
Game resources
<svg
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
class="ml-2 h-4 w-4"
viewBox="0 0 24 24"
>
<path d="M5 12h14M12 5l7 7-7 7"></path>
</svg>
</a>
</div>
</div>
</div>
</section>