Skip to content

Commit 900c8c8

Browse files
committed
add pub in tools
1 parent b47d50f commit 900c8c8

File tree

3 files changed

+34
-20
lines changed

3 files changed

+34
-20
lines changed

src/_layout.mustache

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>TinyTown.Studio</title>
7+
<link rel="preconnect" href="https://rsms.me/">
8+
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
9+
<link rel="stylesheet" href="styles.css">
10+
{{{head}}}
11+
</head>
12+
<body class="max-w-2xl mx-auto px-2 py-2 bg-bg">
13+
{{{content}}}
14+
</body>
15+
</html>

src/index.html

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Tiny Town.Studio</title>
7-
<link rel="preconnect" href="https://rsms.me/">
8-
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
9-
<link rel="stylesheet" href="styles.css">
10-
</head>
11-
<body class="max-w-2xl mx-auto px-2 py-2 bg-bg">
12-
<hgroup>
13-
<h2 class="font-semibold">TinyTown.studio</h2>
14-
</hgroup>
15-
<div class="flex flex-col gap-4 mt-10">
16-
<p class="text-sm">Coming soon...</p>
17-
</div>
18-
</body>
19-
</html>
1+
<hgroup>
2+
<h2 class="font-semibold">TinyTown.studio</h2>
3+
</hgroup>
4+
<div class="flex flex-col gap-4 mt-10">
5+
<p class="text-sm">Coming soon...</p>
6+
</div>
7+
<div class="flex flex-col gap-4 mt-10">
8+
<h3 class="font-semibold">Our Tools</h3>
9+
<ul class="pl-6">
10+
<li class="px-2 py-2 list-disc">
11+
<a
12+
href="https://github.com/TinyTownStudio/pub"
13+
class="underline underline-offset-4"
14+
>pub</a
15+
>
16+
</li>
17+
</ul>
18+
</div>

tailwind.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @type {import('tailwindcss').Config} */
22
module.exports = {
33
content: [
4-
"./src/**/*.html",
4+
"./src/**/*.{markdown,mustache,html}",
55
],
66
theme: {
77
extend: {

0 commit comments

Comments
 (0)