Django: Tips and Tricks
In this article, we will walk through one way of integrating Vue.js with Django.
Django’s syndication framework makes it pretty simple to create RSS feeds. It is a little trickier if you want to create separate feeds based on a category or a tag. For example, we have a feed at /articles/django/feed/ that returns articles about Django and a feed at /articles/python/feed/ that returns articles about Python. In this article, I explain how to do this.
