diff options
Diffstat (limited to 'app/pages')
-rw-r--r-- | app/pages/templates/pages/homepage.html | 8 | ||||
-rw-r--r-- | app/pages/views.py | 2 |
2 files changed, 4 insertions, 6 deletions
diff --git a/app/pages/templates/pages/homepage.html b/app/pages/templates/pages/homepage.html index 31aa32e..ed67f80 100644 --- a/app/pages/templates/pages/homepage.html +++ b/app/pages/templates/pages/homepage.html @@ -30,11 +30,11 @@ <section class="full-one-col"> <h2 class="homepage-section-header">The Wandren Code</h2> <ol> - <li>I will be brave and courageous</li> - <li>I will strengthen my body</li> - <li>I will help my family</li> + <li>I Will Be Brave and Courageous</li> + <li>I Will Strengthen My Mind and Will</li> + <li>I Will Strengthen My Body</li> </ol> - <a href="{% url 'pages:detail' 'code' %}" class="btn" title="Read the Wandren code">Read the full code</a> + <a href="{% url 'pages:detail' 'code' %}" class="btn" title="Read the Wandren code">Read the Full Code →</a> </section> <section class="full-two-col"> <div class="col-one"> diff --git a/app/pages/views.py b/app/pages/views.py index 5262806..9226dbe 100644 --- a/app/pages/views.py +++ b/app/pages/views.py @@ -36,5 +36,3 @@ class HomePageList(DetailView): context = super(HomePageList, self).get_context_data(**kwargs) #context['object_list'] = Post.objects.filter(post_type=PostType.JRNL).filter(status__exact=1).order_by('-pub_date').exclude().select_related('location').select_related('featured_image')[1:9] return context - - |