Skip to content

Commit

Permalink
Merge pull request #76 from przemub/bug/atom_validation
Browse files Browse the repository at this point in the history
Fix Atom feed namespace in themes
  • Loading branch information
uhnomoli authored May 30, 2020
2 parents 82e6761 + 42316f8 commit 15f0bcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mynt/themes/dark/feed.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="https://www.w3.org/2005/Atom">
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title }}</title>
{% if site.subtitle %}<subtitle>{{ site.subtitle }}</subtitle>{% endif %}
<link rel="alternate" href="{{ get_url(absolute=true) }}" />
Expand Down
2 changes: 1 addition & 1 deletion mynt/themes/light/feed.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="https://www.w3.org/2005/Atom">
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title }}</title>
{% if site.subtitle %}<subtitle>{{ site.subtitle }}</subtitle>{% endif %}
<link rel="alternate" href="{{ get_url(absolute=true) }}" />
Expand Down

0 comments on commit 15f0bcb

Please sign in to comment.