diff options
Diffstat (limited to 'app/pages')
-rw-r--r-- | app/pages/templates/pages/luxagraf/homepage.html | 5 | ||||
-rw-r--r-- | app/pages/views.py | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/app/pages/templates/pages/luxagraf/homepage.html b/app/pages/templates/pages/luxagraf/homepage.html index bde11b9..7b67a7a 100644 --- a/app/pages/templates/pages/luxagraf/homepage.html +++ b/app/pages/templates/pages/luxagraf/homepage.html @@ -41,10 +41,7 @@ </article>{% endwith %} </div> <section class="bio-short"> - <h2 class="homepage-section-header">About Luxagraf</h2> - <img src="/media/img/usa-resize.svg" alt="map of travels" class="homepage-map-img" /> - <p>We’re a family of five living full time in a vintage 1969 Dodge Travco motorhome. We’ve been at it for three years now. People always ask: <a href="https://luxagraf.net/1969-dodge-travco-motorhome">What's it like for five people to live in a 26ft RV</a>? <a href="https://luxagraf.net/essay/why-a-vintage-rv">Why do we live this way</a>?</p> - <p>The short answer is simple: because we like it and we can. If you want more than a soundbite, <a href="/jrnl/">read through the journal</a>. If you like it, sign up for the newsletter, <a href="/newsletter/friends/"><em>Friends of a Long Year</em></a>. I'd also <a href="/feed.xml">subscribe to the RSS feed</a>, but that's just <a href="/about">me</a>. <!-- If you’re interested there’s a guide section with some <a href="/guides/">advice, tips and tricks for those who’d aspire to live full time in a van or RV</a> --></p> + <h2 class="homepage-section-header">The Wandren Code</h2> </section> <section class="recent-popular"> <div class="recent"> diff --git a/app/pages/views.py b/app/pages/views.py index d876a49..a4be450 100644 --- a/app/pages/views.py +++ b/app/pages/views.py @@ -29,7 +29,7 @@ class HomePageList(DetailView): model = HomePage def get_template_names(self): - return ["pages/%s.html" % self.template_name, 'pages/luxagraf/homepage.html'] + return ["pages/%s.html" % self.template_name, 'pages/homepage.html'] def get_context_data(self, **kwargs): # Call the base implementation first to get a context |