Skip to content

Commit

Permalink
initial files (modified from old site)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanvandegriff committed Aug 20, 2022
0 parents commit f2c0100
Show file tree
Hide file tree
Showing 254 changed files with 14,110 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Generated files by hugo
/public/
/resources/_gen/
/assets/jsconfig.json
hugo_stats.json

# Executable may be added to repository
hugo.exe
hugo.darwin
hugo.linux

# Temporary lock file while building
/.hugo_build.lock

/content/gallery
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Johan Vandegriff

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6 changes: 6 additions & 0 deletions archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
tags: []
---

8 changes: 8 additions & 0 deletions build-gallery.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash
cd `dirname $0`

sed -i 's,ignoreFiles = \["gallery/.*"\],#ignoreFiles = ["gallery/.*"],g' config.toml
scp config.toml johanv.net:hugo/config.toml
sleep 2
sed -i 's,#ignoreFiles = \["gallery/.*"\],ignoreFiles = ["gallery/.*"],g' config.toml
scp config.toml johanv.net:hugo/config.toml
52 changes: 52 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
baseURL = "https://johanv.net/"
languageCode = "en-us"
title = "johanv.net"
theme = "hugowncast"
timeout = "5m"
disablePathToLower = true
cleanDestinationDir = false
ignoreFiles = ["gallery/.*"]

[markup.goldmark.renderer]
unsafe = true

[permalinks]
tags = "/:title/"

[menu]
[[menu.main]]
name = "home"
url = "/"
weight = 1
[[menu.main]]
name = "games"
url = "https://games.johanv.xyz/"
weight = 2
[[menu.main]]
name = "blog"
url = "/blog/"
weight = 3
[[menu.main]]
name = "featured"
url = "/featured/"
weight = 4
[[menu.main]]
name = "videos"
url = "/videos/"
weight = 5
[[menu.main]]
name = "gallery"
url = "/gallery/"
weight = 6
[[menu.main]]
name = "resume"
url = "/resume/"
weight = 7
[[menu.main]]
name = "about"
url = "/about/"
weight = 8
[[menu.main]]
name = "contact"
url = "/contact/"
weight = 9
Binary file added content/ATinyGame/ATinyGame.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content/ATinyGame/ATinyGame.pdf
Binary file not shown.
Binary file added content/ATinyGame/dim.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f2c0100

Please sign in to comment.