parent
e30dac54ff
commit
8defa6719c
3 changed files with 39 additions and 4 deletions
@ -1,7 +1,8 @@ |
|||||||
from django.conf.urls import url |
from django.conf.urls import url |
||||||
|
from django.urls import path |
||||||
|
|
||||||
from . import views |
from . import views |
||||||
|
|
||||||
urlpatterns = [ |
urlpatterns = [ |
||||||
url(r'^', views.landing, name='landing'), |
path('about-us/', views.flatpage, {'url': '/about-us/'}, name='about'), |
||||||
#url(r'^$', views.home, name='home'), |
|
||||||
] |
] |
||||||
@ -0,0 +1,34 @@ |
|||||||
|
{% extends 'base.html' %} |
||||||
|
{% load static %} |
||||||
|
{% block content %} |
||||||
|
<div class="row"> |
||||||
|
<div class="col-12"> |
||||||
|
<div class="content"> |
||||||
|
<div class="content__title">О компании (full-page)</div> |
||||||
|
<div class="full-page"> |
||||||
|
<div class="full-page__image"><img src="{% static 'img/test-b.png' %}" alt=""></div> |
||||||
|
<div class="full-page__title">Компания «Русские програмы»</div> |
||||||
|
<div class="full-page__text"> |
||||||
|
<p>It is a long established fact that a reader will be distracted by the readable content of |
||||||
|
a page when looking at its layout. The point of using Lorem Ipsum is that it has a |
||||||
|
more-or-less normal distribution of letters, as opposed to using 'Content here, content |
||||||
|
here', making it look like readable English. Many desktop publishing packages and web |
||||||
|
page editors now use Lorem Ipsum as their default model text, and a search for 'lorem |
||||||
|
ipsum' will uncover many web sites still in their infancy. Various versions have evolved |
||||||
|
over the years, sometimes by accident, sometimes on purpose (injected humour and the |
||||||
|
like). |
||||||
|
</p> |
||||||
|
<p>It is a long established fact that a reader will be distracted by the readable content |
||||||
|
of a page when looking at its layout. The point of using Lorem Ipsum is that it has a |
||||||
|
more-or-less normal distribution of letters, as opposed to using 'Content here, content |
||||||
|
here', making it look like readable English. Many desktop publishing packages and web |
||||||
|
page editors now use Lorem Ipsum as their default model text, and a search for 'lorem |
||||||
|
ipsum' will uncover many web sites still in their infancy. Various versions have evolved |
||||||
|
over the years, sometimes by accident, sometimes on purpose (injected humour and the |
||||||
|
like).</p> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
{% endblock content %} |
||||||
Loading…
Reference in new issue