Skip to content

Commit 4725f54

Browse files
committed
another test commit
1 parent 934305a commit 4725f54

File tree

7 files changed

+43
-57
lines changed

7 files changed

+43
-57
lines changed

_includes/components/hero.vto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{{ export hero }}
2+
<section class="hero is-danger is-halfheight">
3+
<div class="hero-body">
4+
<div>
5+
<p class="title">Fullheight hero</p>
6+
<p class="subtitle">Fullheight subtitle</p>
7+
</div>
8+
</div>
9+
</section>
10+
{{ /export }}

_includes/components/navbar.vto

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{{ export navbar }}
2+
<nav class="navbar" role="navigation" aria-label="main navigation">
3+
<div class="container is-max-widescreen">
4+
<div class="navbar-brand">
5+
<a class="navbar-item" href="/">
6+
doughkit.dev
7+
</a>
8+
</div>
9+
10+
<div id="navbarBasicExample" class="navbar-menu">
11+
<div class="navbar-end">
12+
<a class="navbar-item" href="#">Home</a>
13+
<a class="navbar-item" href="#">About</a>
14+
<a class="navbar-item" href="#">Contact</a>
15+
</div>
16+
</div>
17+
</div>
18+
</nav>
19+
{{ /export }}

_includes/layouts/landing.vto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: "base.vto"
3+
---
4+
5+
{{ import { navbar } from "components/navbar.vto" }}
6+
{{ import { hero } from "components/hero.vto" }}
7+
8+
{{ navbar }}
9+
{{ hero }}
10+
{{ content }}

_includes/scss/_grid_responsive.scss

Lines changed: 0 additions & 46 deletions
This file was deleted.

deno.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"imports": {
1414
"@11tyrocks/eleventy-plugin-sass-lightningcss": "npm:@11tyrocks/eleventy-plugin-sass-lightningcss@^1.3.0",
1515
"@11ty/eleventy": "npm:@11ty/eleventy@^3.1.2",
16+
"bulma": "npm:bulma@^1.0.4",
1617
"eleventy-plugin-vento": "npm:eleventy-plugin-vento@^5.2.1",
1718
"html-minifier-next": "npm:html-minifier-next@^4.16.4",
1819
"milligram": "npm:milligram@^1.4.1",

src/bundle.scss

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
@use "sass:color";
22

3-
@use "../_includes/scss/_normalize";
3+
@use "../node_modules/bulma/bulma.scss";
44
@use "../_includes/scss/_typography";
5-
@use "../_includes/scss/_grid_responsive";
6-

src/index.md

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
---
2-
layout: "base.vto"
2+
layout: "landing.vto"
33
---
4-
# Heading 1
5-
## Heading 2
6-
### Heading 3
7-
#### Heading 4
8-
##### Heading 5
9-
###### Heading 6
10-
Normal Text
4+
### still a WIP

0 commit comments

Comments
 (0)