diff --git a/app/home/templates/home/content/index/index.html b/app/home/templates/home/content/index/index.html index a36622a..49641b8 100644 --- a/app/home/templates/home/content/index/index.html +++ b/app/home/templates/home/content/index/index.html @@ -1,72 +1,73 @@ {% extends 'home/base/base.html' %} {% load static %} -{% block content%} - -
- +{% block content %} - -{% include 'home/content/index/header.html' %} - + +
+ - -{% include 'home/content/index/banner.html' %} - - - -{% include 'home/content/index/feature.html' %} - + {% include 'home/content/index/header.html' %} + - -{% include 'home/content/index/about.html' %} - + + {% include 'home/content/index/banner.html' %} + - -{% include 'home/content/index/services_area.html' %} - + + {% include 'home/content/index/feature.html' %} + - -{% include 'home/content/index/process_area.html' %} - + + {% include 'home/content/index/about.html' %} + - -{% include 'home/content/index/pricing.html' %} - + + {% include 'home/content/index/services_area.html' %} + - -{% include 'home/content/index/team_area.html' %} - + + {% include 'home/content/index/process_area.html' %} + - -{% include 'home/content/index/testimonials_area.html' %} - + + {% include 'home/content/index/pricing.html' %} + - -{% include 'home/content/index/contact_area.html' %} - + + {% include 'home/content/index/team_area.html' %} + - -{% include 'home/content/index/companies_area.html' %} - + + {% include 'home/content/index/testimonials_area.html' %} + - -{% include 'home/content/index/footer.html' %} - + + {% include 'home/content/index/contact_area.html' %} + - -{% include 'home/jquery/jguery.html' %} + + {% include 'home/content/index/companies_area.html' %} + + + + {% include 'home/content/index/footer.html' %} + + + + {% include 'home/jquery/jguery.html' %} {% endblock content %} \ No newline at end of file diff --git a/app/home/templates/home/content/index/preloader.html b/app/home/templates/home/content/index/preloader.html new file mode 100644 index 0000000..e69de29 diff --git a/www/static/file/home/css/style.css b/www/static/file/home/css/style.css index 8f598a3..51fc3a1 100644 --- a/www/static/file/home/css/style.css +++ b/www/static/file/home/css/style.css @@ -2924,7 +2924,7 @@ body, content: ""; height: 100%; width: 100%; - background: url(assets/img/shape/2.svg); + background: url('../img/shape/2.svg'); background-repeat: no-repeat; background-size: contain; background-position: center bottom; @@ -3149,7 +3149,7 @@ body, content: ""; height: 100%; width: 100%; - background: url(assets/img/shape-3.png); + background: url('../img/shape-3.png'); background-size: cover; background-repeat: no-repeat; background-position: center center; @@ -3267,7 +3267,7 @@ body, content: ""; height: 100%; width: 100%; - background: url(assets/img/shape-2.png); + background: url('../img/shape-2.png'); background-repeat: no-repeat; background-position: bottom; background-size: contain; @@ -3483,7 +3483,7 @@ body, content: ""; height: 100%; width: 100%; - background: url(assets/img/shape-5.png) no-repeat; + background: url('../img/shape-5.png') no-repeat; background-size: cover; background-position: bottom; z-index: -1; @@ -3608,7 +3608,7 @@ body, content: ""; height: 100%; width: 100%; - background: url(assets/img/icon-shape.png); + background: url('../img/icon-shape.png'); z-index: -1; background-size: contain; background-repeat: no-repeat; @@ -3668,7 +3668,7 @@ body, content: ""; height: 100%; width: 100%; - background: url(assets/img/map.svg); + background: url('../img/map.svg'); background-repeat: no-repeat; background-size: contain; background-position: center bottom; @@ -5097,6 +5097,6 @@ footer .f-items .f-item.link li:last-child { width: 100%; height: 100%; z-index: 999999; - background: url(assets/img/preloader.gif) center no-repeat #fff; + background: url('../img/preloader.gif') center no-repeat #fff; text-align: center; } \ No newline at end of file diff --git a/www/static/file/home/img/shape/1.png b/www/static/file/home/img/shape/1.png new file mode 100644 index 0000000..c167520 Binary files /dev/null and b/www/static/file/home/img/shape/1.png differ diff --git a/www/static/file/home/img/shape/1.svg b/www/static/file/home/img/shape/1.svg new file mode 100644 index 0000000..b55a80b --- /dev/null +++ b/www/static/file/home/img/shape/1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/static/file/home/img/shape/2.png b/www/static/file/home/img/shape/2.png new file mode 100644 index 0000000..92821d4 Binary files /dev/null and b/www/static/file/home/img/shape/2.png differ diff --git a/www/static/file/home/img/shape/2.svg b/www/static/file/home/img/shape/2.svg new file mode 100644 index 0000000..521127a --- /dev/null +++ b/www/static/file/home/img/shape/2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/static/file/home/img/shape/3.png b/www/static/file/home/img/shape/3.png new file mode 100644 index 0000000..3b2a3ed Binary files /dev/null and b/www/static/file/home/img/shape/3.png differ diff --git a/www/static/file/home/img/shape/3.svg b/www/static/file/home/img/shape/3.svg new file mode 100644 index 0000000..b10d3cc --- /dev/null +++ b/www/static/file/home/img/shape/3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/www/static/file/home/img/shape/4.png b/www/static/file/home/img/shape/4.png new file mode 100644 index 0000000..ea74c56 Binary files /dev/null and b/www/static/file/home/img/shape/4.png differ diff --git a/www/static/file/home/img/shape/5.png b/www/static/file/home/img/shape/5.png new file mode 100644 index 0000000..9ea3ee6 Binary files /dev/null and b/www/static/file/home/img/shape/5.png differ diff --git a/www/static/file/home/img/shape/6.png b/www/static/file/home/img/shape/6.png new file mode 100644 index 0000000..adba2a8 Binary files /dev/null and b/www/static/file/home/img/shape/6.png differ diff --git a/www/static/file/home/img/shape/7.png b/www/static/file/home/img/shape/7.png new file mode 100644 index 0000000..6e62d34 Binary files /dev/null and b/www/static/file/home/img/shape/7.png differ diff --git a/www/static/file/home/img/shape/7.svg b/www/static/file/home/img/shape/7.svg new file mode 100644 index 0000000..5508fa7 --- /dev/null +++ b/www/static/file/home/img/shape/7.svg @@ -0,0 +1 @@ + \ No newline at end of file