A very basic page to start
This commit is contained in:
commit
700891570b
4 changed files with 43 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
*.html
|
9
Makefile
Normal file
9
Makefile
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
PREFIX=/usr/local/patinage
|
||||||
|
TARGET=index.html
|
||||||
|
|
||||||
|
%.html: %.md
|
||||||
|
pandoc -s $^ -o $@
|
||||||
|
|
||||||
|
install: $(TARGET)
|
||||||
|
mkdir -p $(PREFIX)
|
||||||
|
cp $^ $(PREFIX)
|
26
guix.scm
Normal file
26
guix.scm
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
(use-modules ((gnu packages haskell-xyz) #:select (pandoc))
|
||||||
|
((guix build-system gnu) #:select (gnu-build-system))
|
||||||
|
((guix gexp) #:select (gexp local-file))
|
||||||
|
((guix git-download) #:select (git-predicate))
|
||||||
|
((guix licenses) #:select (gpl3+))
|
||||||
|
((guix packages) #:select (package))
|
||||||
|
((loom packages sjw) #:select (sjw)))
|
||||||
|
|
||||||
|
(let ((%source-dir (dirname (current-filename))))
|
||||||
|
(package
|
||||||
|
(name "patinage")
|
||||||
|
(version "dev")
|
||||||
|
(source (local-file %source-dir
|
||||||
|
#:recursive? #t
|
||||||
|
#:select? (git-predicate %source-dir)))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs (list pandoc))
|
||||||
|
(arguments
|
||||||
|
`(#:make-flags ,#~(list (string-append "PREFIX=" #$output))
|
||||||
|
#:phases (modify-phases %standard-phases
|
||||||
|
(delete 'configure)
|
||||||
|
(delete 'check))))
|
||||||
|
(home-page "https://git.marvid.fr/Tissevert/patinage")
|
||||||
|
(synopsis "Une vitrine pour des vidéos de patinage.")
|
||||||
|
(description "")
|
||||||
|
(license gpl3+)))
|
7
index.md
Normal file
7
index.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
title: Patin à glace
|
||||||
|
---
|
||||||
|
|
||||||
|
# CSGL - Gala 2023
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue