Merge pull request #14 from schneiderfelipe/useatomfeed

Use the correct link to feed
This commit is contained in:
José Guilherme Vanz
2020-05-13 10:51:47 -03:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -34,8 +34,8 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js" crossorigin="anonymous"></script>
{% endif %} {% endif %}
<!-- RSS --> <!-- Atom feed -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml"> <link rel="alternate" type="application/atom+xml" title="{{ SITENAME }} (Feed)" href="{{ FEED_ALL_ATOM }}" />
{% include 'fragments/google_analytics.html' %} {% include 'fragments/google_analytics.html' %}
</head> </head>
+1 -1
View File
@@ -35,7 +35,7 @@
</a> </a>
{% endif %} {% endif %}
{% endfor %} {% endfor %}
<a class="sidebar-nav-item" href="{{ FEED_ALL_RSS }}"> <a class="sidebar-nav-item" href="{{ FEED_ALL_ATOM }}">
<i class="fas fa-rss"></i> <i class="fas fa-rss"></i>
</a> </a>
</nav> </nav>