Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
Nala Ginrut
colt
Commits
5cf56fd7
Verified
Commit
5cf56fd7
authored
Dec 02, 2019
by
Nala Ginrut
Browse files
Fix unique atom id and empty title
parent
6294d165
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
app/controllers/feed.scm
app/controllers/feed.scm
+2
-2
No files found.
app/controllers/feed.scm
View file @
5cf56fd7
...
...
@@ -34,8 +34,8 @@
(
author
(
colt-conf-get
'blog-author
)))
`
(
entry
(
author
(
name
,
author
)
(
uri
,
blog-url
))
(
title
(
@
(
type
"text"
))
,
title
)
(
id
,
(
string-append
blog-url
"/"
))
; according to W3C validation to end with '/'
(
title
(
@
(
type
"text"
))
,
(
if
(
string-null?
title
)
"No title"
title
)
)
(
id
,
(
post-oid
post
))
(
link
(
@
(
rel
"alternate"
)
(
type
"text/html"
)
(
href
,
(
->url
blog-url
url-name
))))
(
published
,
updated-time
)
...
...
Write
Preview
Markdown
is supported
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