1
0
mirror of https://github.com/danbee/danbarber.me.hugo.git synced 2026-06-20 23:02:29 +00:00
This commit is contained in:
Daniel Barber 2025-06-02 20:55:00 -05:00
parent c6a2b0f9b9
commit cbc7a6068e
17 changed files with 53 additions and 15 deletions

0
.hugo_build.lock Normal file
View File

View File

@ -1,2 +1,2 @@
hugo extended_0.120.4 hugo-extended 0.120.4
ruby 3.2.2 ruby 3.2.2

View File

@ -4,6 +4,7 @@
// 1. Settings used with preprocessors and contain font, // 1. Settings used with preprocessors and contain font,
// colors definitions, etc. // colors definitions, etc.
// @import "settings/dev";
@import "settings/global"; @import "settings/global";
@import "settings/colors"; @import "settings/colors";
@import "settings/typography"; @import "settings/typography";

View File

@ -0,0 +1,3 @@
* {
outline: 1px solid rgba(0, 255, 0, 0.25);
}

View File

@ -2,6 +2,6 @@
date: "2019-10-16" date: "2019-10-16"
--- ---
Hi, my name is Dan Barber. Im a web designer and developer in Madison, WI. Hi, I'm Dan and this is my personal space on the web. You can find out more <a
I design and build standards compliant websites that are simple, usable and href="/about">about me</a> or see what kind of things I'm <a
attractive using open source software technologies. href="/now">now</a>.

View File

@ -1,15 +1,14 @@
--- ---
title: About Me title: About Me
layout: about layout: page
--- ---
<figure> <figure>
{{< img src="DSCF1968.jpg" alt="Hello!" caption="" >}} {{< img src="DSCF1968.jpg" alt="Hello!" caption="" >}}
</figure> </figure>
Hi, my name is Dan Barber. Im a web developer in New York. I design and build Hi, my name is Dan Barber. Im a web developer currently living in Wisconsin. I
standards compliant websites that are simple, usable and attractive using open love computers and music, and often combine the two.
source software technologies.
In my spare time I play drums, guitar and piano (and occasionally the ukulele) 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 and make music using computers. I also like to dabble in electronics and video

7
content/now/_index.md Normal file
View 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.

View File

@ -0,0 +1,7 @@
---
layout: none
---
### Music
Here are some of the albums I've been enjoying recently:

Binary file not shown.

After

Width:  |  Height:  |  Size: 651 KiB

View File

@ -0,0 +1,4 @@
---
title: Skeletá
artist: Ghost
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 329 KiB

View File

@ -0,0 +1,4 @@
---
title: Home Arcade
artist: Lukhash
---

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 KiB

View File

@ -0,0 +1,4 @@
---
title: Home Arcade
artist: Lukhash
---

View File

@ -6,10 +6,4 @@
{{.Content}} {{.Content}}
</article> </article>
<article class="projects container">
<h3>Projects</h3>
{{ partial "projects/persephone" . }}
</article>
{{ end }} {{ end }}

View File

@ -0,0 +1,9 @@
{{ define "main" }}
<article class="post container">
<header>
<h2 class="post__title">{{.Title}}</h2>
</header>
{{.Content}}
</article>
{{ end }}

View File

@ -1,6 +1,12 @@
<header class="site-header" role="banner"> <header class="site-header" role="banner">
<div class="container"> <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="/"> <a class="site-header__home-link logo__link" href="/">
{{ partial "logo.svg" . }} {{ partial "logo.svg" . }}
</a> </a>