summaryrefslogtreecommitdiff
path: root/app/blog/models.py
diff options
context:
space:
mode:
authorlxf <lxf@d1stkfactory>2014-05-29 14:22:46 +0000
committerlxf <lxf@d1stkfactory>2014-05-29 14:22:46 +0000
commit64b86549829c7b2987707a13e92fa43e3834de97 (patch)
treeab9cccba12e02714c1e29850af0d626b51474b17 /app/blog/models.py
parentd6379dbc06393d286eedfd19c842f824100f2968 (diff)
bugs fixes and changed image urls to use https
Diffstat (limited to 'app/blog/models.py')
-rw-r--r--app/blog/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/blog/models.py b/app/blog/models.py
index e7f10ab..f01eeae 100644
--- a/app/blog/models.py
+++ b/app/blog/models.py
@@ -142,6 +142,7 @@ class EntryAside(models.Model):
class BlogSitemap(Sitemap):
changefreq = "never"
priority = 1.0
+ protocol = "https"
def items(self):
return Entry.objects.filter(status=1)