summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/gtd/models.py1
-rw-r--r--templates/base.html4
2 files changed, 3 insertions, 2 deletions
diff --git a/app/gtd/models.py b/app/gtd/models.py
index 35069bf..cf0d086 100644
--- a/app/gtd/models.py
+++ b/app/gtd/models.py
@@ -149,6 +149,7 @@ class PostStatus(models.IntegerChoices):
TURNEDIN = 1, ('turned in')
PUBLISHED = 2, ('published')
+
class WiredPost(models.Model):
# an entry in a feed
title = models.CharField(max_length=512, blank=True, null=True)
diff --git a/templates/base.html b/templates/base.html
index d9b75dd..693f424 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -29,9 +29,9 @@
<nav>
<a class="nav-item smcaps" href="{% url "jrnl:list" %}" title="Stories of life on the road.">Jrnl</a>
<a class="nav-item smcaps" href="{% url "essays:list" %}" title="Essays">Essays</a>
- <a class="nav-item smcaps" href="/range/" title="Range">Range</a>
<a class="nav-item smcaps" href="/friends/" title="Join the 'friends of a long year' newsletter">Friends</a>
- {%comment%}<a class="nav-item smcaps" href="/range/" title="Join the 'Range' newsletter">Range</a> {%endcomment%}
+ <a class="nav-item smcaps" href="/range/" title="Range">Range</a>
+ <!--<a class="nav-item smcaps" href="/guides/" title="Useful Stuff">Guides</a> -->
<a class="nav-item smcaps" href="/about" title="About Scott">About</a>
</nav>
</header>