mirror of
https://github.com/danbee/danbarber.me.hugo.git
synced 2026-06-20 23:02:29 +00:00
WIP
This commit is contained in:
parent
c6a2b0f9b9
commit
cbc7a6068e
0
.hugo_build.lock
Normal file
0
.hugo_build.lock
Normal file
@ -1,2 +1,2 @@
|
||||
hugo extended_0.120.4
|
||||
hugo-extended 0.120.4
|
||||
ruby 3.2.2
|
||||
|
||||
@ -4,6 +4,7 @@
|
||||
|
||||
// 1. Settings – used with preprocessors and contain font,
|
||||
// colors definitions, etc.
|
||||
// @import "settings/dev";
|
||||
@import "settings/global";
|
||||
@import "settings/colors";
|
||||
@import "settings/typography";
|
||||
|
||||
3
assets/css/settings/_dev.scss
Normal file
3
assets/css/settings/_dev.scss
Normal file
@ -0,0 +1,3 @@
|
||||
* {
|
||||
outline: 1px solid rgba(0, 255, 0, 0.25);
|
||||
}
|
||||
@ -2,6 +2,6 @@
|
||||
date: "2019-10-16"
|
||||
---
|
||||
|
||||
Hi, my name is Dan Barber. I’m a web designer and developer in Madison, WI.
|
||||
I design and build standards compliant websites that are simple, usable and
|
||||
attractive using open source software technologies.
|
||||
Hi, I'm Dan and this is my personal space on the web. You can find out more <a
|
||||
href="/about">about me</a> or see what kind of things I'm <a
|
||||
href="/now">now</a>.
|
||||
|
||||
@ -1,15 +1,14 @@
|
||||
---
|
||||
title: About Me
|
||||
layout: about
|
||||
layout: page
|
||||
---
|
||||
|
||||
<figure>
|
||||
{{< img src="DSCF1968.jpg" alt="Hello!" caption="" >}}
|
||||
</figure>
|
||||
|
||||
Hi, my name is Dan Barber. I’m a web developer in New York. I design and build
|
||||
standards compliant websites that are simple, usable and attractive using open
|
||||
source software technologies.
|
||||
Hi, my name is Dan Barber. I’m a web developer currently living in Wisconsin. I
|
||||
love computers and music, and often combine the two.
|
||||
|
||||
In my spare time I play drums, guitar and piano (and occasionally the ukulele)
|
||||
and make music using computers. I also like to dabble in electronics and video
|
||||
|
||||
7
content/now/_index.md
Normal file
7
content/now/_index.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Now
|
||||
layout: now
|
||||
---
|
||||
|
||||
On this page I keep a list of things that currently have my attention, like side
|
||||
projects, music I'm listening to, games I'm playing, and books I'm reading.
|
||||
7
content/now/music/_index.md
Normal file
7
content/now/music/_index.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
layout: none
|
||||
---
|
||||
|
||||
### Music
|
||||
|
||||
Here are some of the albums I've been enjoying recently:
|
||||
BIN
content/now/music/ghost.skeleta/cover.jpg
Normal file
BIN
content/now/music/ghost.skeleta/cover.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 651 KiB |
4
content/now/music/ghost.skeleta/index.md
Normal file
4
content/now/music/ghost.skeleta/index.md
Normal file
@ -0,0 +1,4 @@
|
||||
---
|
||||
title: Skeletá
|
||||
artist: Ghost
|
||||
---
|
||||
BIN
content/now/music/lukhash.home-arcade/cover.jpg
Normal file
BIN
content/now/music/lukhash.home-arcade/cover.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 329 KiB |
4
content/now/music/lukhash.home-arcade/index.md
Normal file
4
content/now/music/lukhash.home-arcade/index.md
Normal file
@ -0,0 +1,4 @@
|
||||
---
|
||||
title: Home Arcade
|
||||
artist: Lukhash
|
||||
---
|
||||
BIN
content/now/music/the-midnight.heroes/cover.jpg
Normal file
BIN
content/now/music/the-midnight.heroes/cover.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 418 KiB |
4
content/now/music/the-midnight.heroes/index.md
Normal file
4
content/now/music/the-midnight.heroes/index.md
Normal file
@ -0,0 +1,4 @@
|
||||
---
|
||||
title: Home Arcade
|
||||
artist: Lukhash
|
||||
---
|
||||
@ -6,10 +6,4 @@
|
||||
|
||||
{{.Content}}
|
||||
</article>
|
||||
|
||||
<article class="projects container">
|
||||
<h3>Projects</h3>
|
||||
|
||||
{{ partial "projects/persephone" . }}
|
||||
</article>
|
||||
{{ end }}
|
||||
|
||||
9
layouts/_default/now.html
Normal file
9
layouts/_default/now.html
Normal file
@ -0,0 +1,9 @@
|
||||
{{ define "main" }}
|
||||
<article class="post container">
|
||||
<header>
|
||||
<h2 class="post__title">{{.Title}}</h2>
|
||||
</header>
|
||||
|
||||
{{.Content}}
|
||||
</article>
|
||||
{{ end }}
|
||||
@ -1,6 +1,12 @@
|
||||
<header class="site-header" role="banner">
|
||||
<div class="container">
|
||||
<h1 class="logo__wrapper">
|
||||
<ul role="nav" class="site-header__menu">
|
||||
<li><a href="/">Home</a></li>
|
||||
<li><a href="/about">About</a></li>
|
||||
<li><a href="/now">Now</a></li>
|
||||
</ul>
|
||||
|
||||
<h1 class="site-header__logo logo__wrapper">
|
||||
<a class="site-header__home-link logo__link" href="/">
|
||||
{{ partial "logo.svg" . }}
|
||||
</a>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user