info
This commit is contained in:
parent
643f14d2ed
commit
87334f0c8a
3 changed files with 76 additions and 4 deletions
|
@ -6,6 +6,7 @@
|
|||
"scripts": {
|
||||
"build": "mkdir -p dist && eleventy --input=./src --output=./dist",
|
||||
"build:styles": "npx postcss ./src/styles.css -o ./dist/styles.css --env production",
|
||||
"watch:styles": "npx postcss ./src/styles.css -o ./dist/styles.css --watch",
|
||||
"start": "mkdir -p dist && eleventy --serve --input=./src --output=./dist"
|
||||
},
|
||||
"repository": {
|
||||
|
|
|
@ -11,20 +11,83 @@
|
|||
|
||||
<title>{{ title }}</title>
|
||||
</head>
|
||||
<body>
|
||||
<body class="bg-gray-200">
|
||||
<div class="relative bg-indigo-900">
|
||||
<div class="absolute inset-0">
|
||||
<img class="w-full h-full object-cover mb-16" src="/assets/snacks.jpg" alt="">
|
||||
<div class="absolute inset-0 bg-indigo-900" style="mix-blend-mode: multiply;" aria-hidden="true"></div>
|
||||
</div>
|
||||
<div class="relative max-w-7xl mx-auto py-24 px-4 sm:py-32 sm:px-6 lg:px-8">
|
||||
<h1 class="text-4xl font-extrabold tracking-tight text-white sm:text-5xl lg:text-6xl">{{ title }}</h1>
|
||||
<h1 class="text-4xl font-extrabold tracking-tight text-white sm:text-5xl lg:text-6xl">{{ name }}</h1>
|
||||
<p class="mt-6 text-xl text-indigo-100 max-w-3xl">
|
||||
{{ description }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ content | safe }}
|
||||
<div class="max-w-4xl mx-auto my-6">
|
||||
<div class="bg-white shadow overflow-hidden sm:rounded-lg">
|
||||
<div class="px-4 py-5 sm:px-6">
|
||||
<h3 class="text-lg leading-6 font-medium text-gray-900">
|
||||
About
|
||||
</h3>
|
||||
<p class="mt-1 max-w-2xl text-sm text-gray-500">
|
||||
{{ subtitle }}
|
||||
</p>
|
||||
</div>
|
||||
<div class="border-t border-gray-200 px-4 py-5 sm:p-0">
|
||||
<dl class="sm:divide-y sm:divide-gray-200">
|
||||
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
||||
<dt class="text-sm font-medium text-gray-500">
|
||||
Full name
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
{{ fullName }}
|
||||
</dd>
|
||||
</div>
|
||||
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
||||
<dt class="text-sm font-medium text-gray-500">
|
||||
Species
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
{{ species }}
|
||||
</dd>
|
||||
</div>
|
||||
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
||||
<dt class="text-sm font-medium text-gray-500">
|
||||
Personality
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
{{ personality }}
|
||||
</dd>
|
||||
</div>
|
||||
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
||||
<dt class="text-sm font-medium text-gray-500">
|
||||
Gender
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
{{ gender }}
|
||||
</dd>
|
||||
</div>
|
||||
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
||||
<dt class="text-sm font-medium text-gray-500">
|
||||
Orientation
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
{{ orientation }}
|
||||
</dd>
|
||||
</div>
|
||||
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
|
||||
<dt class="text-sm font-medium text-gray-500">
|
||||
About
|
||||
</dt>
|
||||
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">
|
||||
{{ about }}
|
||||
</dd>
|
||||
</div>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,7 +1,15 @@
|
|||
---
|
||||
layout: default
|
||||
title: Gaiety
|
||||
subtitle: The pup, the legend... or at least she's a good dog.
|
||||
description: Homepage for the fursona of Gaiety, the doggo.
|
||||
name: Gaiety
|
||||
fullName: Gaiety Zuri
|
||||
species: Anatolian Shepherd
|
||||
personality: 💋 Playful, Courageous, Friendly
|
||||
gender: 💃 Female [She/Her]
|
||||
orientation: 🌈 Bisexual (Leaning Lesbian)
|
||||
about: ...
|
||||
---
|
||||
|
||||
Sup
|
||||
|
|
Loading…
Add table
Reference in a new issue