Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
faui2k17
generator
Commits
c838e518
Unverified
Commit
c838e518
authored
Aug 15, 2019
by
Philip Kaludercic
🌝
Browse files
fixed html validator warnings and mistakes
parent
84fbb338
Changes
1
Hide whitespace changes
Inline
Side-by-side
local/theme.scm
View file @
c838e518
...
...
@@ -18,8 +18,10 @@
(
lambda
(
post
)
`
(
article
,
(
post-sxml
post
)
(
nav
(
time
,
(
date->string
(
post-date
post
)
"Beigetragen am ~d ~h. ~Y"
))
(
nav
(
span
"Beigetragen am "
(
time
(
@
(
datetime
,
(
date->string
(
post-date
post
)
"~4"
)))
,
(
date->string
(
post-date
post
)
"~d ~h. ~Y"
)))
(
span
"Tags: "
,
(
intersperse
(
map
(
lambda
(
tag
)
...
...
@@ -39,25 +41,26 @@
#
:layout
(
lambda
(
site
title
body
)
`
((
doctype
"html"
)
(
head
(
meta
(
@
(
charset
"utf-8"
)))
(
meta
(
@
(
name
"referrer"
)
(
content
"none"
)))
(
meta
(
@
(
name
"viewport"
)
(
content
"width=device-width"
)))
(
title
,
title
)
(
link
(
@
(
rel
"stylesheet"
)
(
href
"/static/style.css"
)))
(
link
(
@
(
rel
"alternate"
)
(
type
"application/atom+xml"
)
(
title
"Atom"
)
(
href
,
(
string-append
(
site-domain
site
)
"/feed.xml"
))))
(
link
(
@
(
rel
"alternate"
)
(
type
"application/rss+xml"
)
(
title
"RSS"
)
(
href
,
(
string-append
(
site-domain
site
)
"/rss-feed.xml"
)))))
(
body
(
header
(
nav
,@
(
list
(
link
'
(
code
"#faui2k17"
)
"/"
)
(
link
"IRC"
"/irc.html"
)
(
link
"WhatsApp"
"/whatsapp.html"
)
(
link
"Beitragen"
"/meta.html"
)
(
link
"Atom"
"/feed.xml"
)
(
link
"RSS"
"/rss-feed.xml"
))))
,
body
)))
(
html
(
@
(
lang
"de"
))
(
head
(
meta
(
@
(
charset
"utf-8"
)))
(
meta
(
@
(
name
"referrer"
)
(
content
"none"
)))
(
meta
(
@
(
name
"viewport"
)
(
content
"width=device-width"
)))
(
title
,
title
)
(
link
(
@
(
rel
"stylesheet"
)
(
href
"/static/style.css"
)))
(
link
(
@
(
rel
"alternate"
)
(
type
"application/atom+xml"
)
(
title
"Atom"
)
(
href
,
(
string-append
(
site-domain
site
)
"/feed.xml"
))))
(
link
(
@
(
rel
"alternate"
)
(
type
"application/rss+xml"
)
(
title
"RSS"
)
(
href
,
(
string-append
(
site-domain
site
)
"/rss-feed.xml"
)))))
(
body
(
header
(
nav
,@
(
list
(
link
'
(
code
"#faui2k17"
)
"/"
)
(
link
"IRC"
"/irc.html"
)
(
link
"WhatsApp"
"/whatsapp.html"
)
(
link
"Beitragen"
"/meta.html"
)
(
link
"Atom"
"/feed.xml"
)
(
link
"RSS"
"/rss-feed.xml"
))))
,
body
))))
#
:post-template
(
make-post-generator
)
#
:collection-template
(
lambda
(
site
title
posts
prefix
number
last?
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment