Skip to content

Commit d3ac0ae

Browse files
committed
rework
1 parent f9d0754 commit d3ac0ae

File tree

16 files changed

+129
-78
lines changed

16 files changed

+129
-78
lines changed

config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
baseURL = 'https://bemoty.org/'
1+
baseURL = 'https://bemoty.dev'
22
languageCode = 'en-us'
3-
title = "Home - Joshua W."
3+
title = "Home / Joshua Winkler"
44
enableRobotsTXT = true
55
description = "Portfolio website of Joshua Winkler"
66
[markup]

content/about.md

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

content/blog/_index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "Blog / Joshua Winkler"
3+
---
4+
5+
## Blog
6+

content/blog/about-this-blog.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: "About this blog"
3+
date: 2024-05-09T16:00:00+02:00
4+
draft: false
5+
---
6+
7+
## About this blog
8+
9+
Hi, this post is really just a test for whether or not my [Hugo](https://gohugo.io) blog setup is working as expected. So if you're reading this and you're not me, congratulations! You've found my website (in a working state)! 🎉
10+
11+
I'm usually more a lurker than a poster, as can be seen by the activity of my [Twitter (not X) feed](https://twitter.com/bemoty), so the chances of me never posting something here are nonzero. But just in case something interesting happens in my life and I feel like sharing it, this is the place where it will happen.
12+
13+
```java {lineNos=inline}
14+
public class HelloWorld {
15+
public static void main(String[] args) {
16+
System.out.println("Code highlighting is working! Nice!");
17+
}
18+
}
19+
```
20+
21+
Anyway, thanks for stopping by and I hope you have a great day. <3

content/contact.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: "Contact - Joshua W."
2+
title: "Contact / Joshua Winkler"
33
date: 2022-12-14T22:21:33+01:00
44
draft: false
55
---
66

77
### Contact me
88

9-
If you want to reach out, just send me an email.
9+
If you want to talk about something, just send me an email.
1010

1111
1212

content/index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: "Home / Joshua Winkler"
3+
date: 2022-12-14T18:01:07+01:00
4+
draft: false
5+
---
6+
7+
<img src="/img/friends.webp" alt="Friends" style="width: 100%;"/>
8+
<p class="muted">— me with my friends in Innsbruck</p>
9+
10+
## Hi!
11+
12+
I'm Josh, a software developer living in Austria, currently studying computer science at the [University of Innsbruck](https://uibk.ac.at/) and working as Head Developer for [GommeHD.net](https://gommehd.net/), a small video game company based in Germany. I have been coding full-stack applications since I was 16 and I'm always looking for new challenges.
13+
14+
On the internet I'm also known by my pseudonym **bemoty**, which is a meaningless name I made up as a kid and have used online ever since.

layouts/404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{ define "main" }}
2-
<main>
2+
<main class="page">
33
<h1>404</h1>
44
<p>Sorry, this page doesn't exist.</p>
55
</main>

layouts/_default/baseof.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,16 @@
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<title>
88
{{ if eq .Kind "404" }}
9-
404 - Joshua W.
9+
Not found / Joshua Winkler
1010
{{ else }}
1111
{{ .Title }}
1212
{{ end }}
1313
</title>
1414
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
1515
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
16+
{{ with .OutputFormats.Get "rss" -}}
17+
{{ printf `<link rel=%q type=%q href=%q title=%q>` .Rel .MediaType.Type .Permalink site.Title | safeHTML }}
18+
{{ end }}
1619
<link rel="stylesheet" href="{{ "style/font.css" | relURL }}">
1720
<link rel="stylesheet" href="{{ "style/main.css" | relURL }}">
1821
</head>

layouts/_default/list.html

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
{{ define "main" }}
2-
<ul>
3-
{{ range .Paginator.Pages }}
4-
<li>
5-
<div>
6-
{{ .Date.Format "2006-01-02" }}
7-
<a href="{{ .RelPermalink }}">{{.Title }}</a>
8-
</div>
9-
</li>
10-
{{ end }}
11-
</ul>
2+
<main class="page">
3+
{{ .Content }}
4+
<ul>
5+
{{ range .Paginator.Pages }}
6+
<li>
7+
<div>
8+
{{ .Date.Format "2006-01-02" }}
9+
<a href="{{ .RelPermalink }}">{{.Title }}</a>
10+
</div>
11+
</li>
12+
{{ end }}
13+
</ul>
14+
</main>
1215
{{ end }}

layouts/_default/single.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{{ define "main" }}
22
<main class="page">
3+
<span class="posted">{{ .Page.Date.Format "2006-01-02" }}</span>
34
{{ .Content }}
45
</main>
56
{{ end }}

0 commit comments

Comments
 (0)