Permalink
Cannot retrieve contributors at this time
from django.db import models | |
from django.contrib.syndication.views import Feed | |
from django.urls import reverse | |
from blog.models import BlogPage | |
class BlogsFeedAmp(Feed): | |
title = "My blog articles in amp format" | |
link = "/blogs-feed-amp/" | |
description = "All of my blogs as they are published" | |
def items(self): | |
return BlogPage.objects.live().order_by('-date') | |
def item_title(self, item): | |
return item.title | |
def item_description(self, item): | |
return item.intro | |
def item_link(self, item): | |
base_url = item.get_absolute_url() | |
amp_url = base_url + "amp" | |
return amp_url | |
class BlogsFeed(Feed): | |
title = "My blog articles" | |
link = "/blogs-feed/" | |
description = "All of my blogs as they are published" | |
def items(self): | |
return BlogPage.objects.live().order_by('-date') | |
def item_title(self, item): | |
return item.title | |
def item_description(self, item): | |
return item.intro |