diff options
author | lxf <lxf@d1stkfactory> | 2014-05-29 14:22:46 +0000 |
---|---|---|
committer | lxf <lxf@d1stkfactory> | 2014-05-29 14:22:46 +0000 |
commit | 64b86549829c7b2987707a13e92fa43e3834de97 (patch) | |
tree | ab9cccba12e02714c1e29850af0d626b51474b17 /app/blog/models.py | |
parent | d6379dbc06393d286eedfd19c842f824100f2968 (diff) |
bugs fixes and changed image urls to use https
Diffstat (limited to 'app/blog/models.py')
-rw-r--r-- | app/blog/models.py | 1 |
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) |