Advertisement
robertvari

home.html

Jan 2nd, 2020
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.96 KB | None | 0 0
  1. {% extends '_base.html' %}
  2.  
  3. {% block title %} Home {% endblock title %}
  4.  
  5. {% block body %}
  6.         <div class="title_text">Welcome on <span class="creative">Creative</span>Portal</div>
  7.  
  8.         <div class="top_row_container">
  9.             {% for post in top_row_list %}
  10.                 <a href="{% url 'post_details' slug=post.slug %}"><div class="post_item" style="background-image: url({{ post.photo.url }})"></div></a>
  11.             {% endfor %}
  12.         </div>
  13.  
  14.         <hr>
  15.  
  16.         <p class="subtitle_text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusamus debitis error fuga id ipsam ipsum minus praesentium ratione! A debitis fuga iure minima mollitia nisi provident suscipit. Maxime perspiciatis, vitae!</p>
  17.  
  18.         <hr>
  19.  
  20.         {% if not user.is_authenticated %}
  21.             <div class="title_text"><a href=""> <span class="creative"> Join today </span> </a> and share your best moments!</div>
  22.         {% endif %}
  23. {% endblock body %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement