Initial website structure

This commit is contained in:
Victor Mignot 2024-09-22 20:38:03 +02:00
commit 267450d247
Signed by: dala
GPG key ID: 5E7F2CE1BEAFED3D
7 changed files with 46 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
result
public

0
.hugo_build.lock Normal file
View file

22
LICENSE Normal file
View file

@ -0,0 +1,22 @@
MIT License
Copyright (c) 2024 Victor Mignot
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.

5
README.md Normal file
View file

@ -0,0 +1,5 @@
# dalaran.fr
Dala's website and blog posts.
All the content is licensed under Creative Commons Attribution-ShareAlike 4.0 International.
The source code in itself is licensed under the MIT license.

5
archetypes/default.md Normal file
View file

@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

4
hugo.toml Normal file
View file

@ -0,0 +1,4 @@
baseURL = 'https://dalaran.fr/'
languageCode = 'en-us'
title = "Dala's homepage"
copyright = "CC BY-SA 4.0"

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> { }, ... }:
pkgs.mkShell {
name = "hugo-shell";
nativeBuildInputs = with pkgs; [
hugo
];
}