Browse Source

Service page UI and functionality fixes.

master
navaneeth-webtrigon 7 years ago
parent
commit
3b3d0bf870
15 changed files with 173 additions and 121 deletions
  1. +1
    -1
      static/css/common.css
  2. +22
    -22
      static/css/home.css
  3. +6
    -3
      static/css/service.css
  4. +32
    -0
      static/js/about.js
  5. +13
    -0
      static/js/common.js
  6. +6
    -46
      static/js/home.js
  7. +1
    -1
      static/js/service.js
  8. +1
    -1
      static/scss/common.scss
  9. +7
    -7
      static/scss/home.scss
  10. +5
    -2
      static/scss/service.scss
  11. +5
    -1
      templates/about.html
  12. +1
    -1
      templates/base.html
  13. +47
    -24
      templates/home.html
  14. +4
    -4
      templates/partials/navigation.html
  15. +22
    -8
      templates/service.html

+ 1
- 1
static/css/common.css View File

@@ -144,7 +144,7 @@ mark {
top: 0; top: 0;
left: 0; left: 0;
background-color: white; background-color: white;
z-index: 5;
z-index: 100;
transition: height 500ms linear; transition: height 500ms linear;
} }
@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {


+ 22
- 22
static/css/home.css View File

@@ -336,89 +336,89 @@ section .description p {
cursor: pointer; cursor: pointer;
} }


#testimonial {
#branches {
background-color: #f0f0f0; background-color: #f0f0f0;
padding: 20px 0; padding: 20px 0;
} }
#testimonial h3 {
#branches h3 {
text-align: center; text-align: center;
padding: 20px 0; padding: 20px 0;
} }
#testimonial p {
#branches p {
text-align: center; text-align: center;
width: 50%; width: 50%;
margin: 0 auto; margin: 0 auto;
} }
@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {
#testimonial p {
#branches p {
width: 90%; width: 90%;
} }
} }
#testimonial .owl-testimonial {
#branches .owl-branches {
width: 80%; width: 80%;
margin: 0 auto; margin: 0 auto;
height: 55vh; height: 55vh;
} }
@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {
#testimonial .owl-testimonial {
#branches .owl-branches {
width: 100%; width: 100%;
} }
} }
#testimonial .owl-testimonial .owl-item-testimonial {
#branches .owl-branches .owl-item-branches {
display: flex; display: flex;
width: 97%; width: 97%;
background-color: white; background-color: white;
margin: 50px 0; margin: 50px 0;
} }
@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {
#testimonial .owl-testimonial .owl-item-testimonial {
#branches .owl-branches .owl-item-branches {
width: 90%; width: 90%;
margin: 50px auto; margin: 50px auto;
} }
} }
#testimonial .owl-testimonial .owl-item-testimonial figure {
width: 250px;
height: 300px;
#branches .owl-branches .owl-item-branches figure {
width: 500px;
height: 255px;
} }
@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {
#testimonial .owl-testimonial .owl-item-testimonial figure {
#branches .owl-branches .owl-item-branches figure {
width: 350px; width: 350px;
} }
} }
#testimonial .owl-testimonial .owl-item-testimonial figure img {
#branches .owl-branches .owl-item-branches figure img {
width: 100%; width: 100%;
height: 100%; height: 100%;
object-fit: cover; object-fit: cover;
} }
#testimonial .owl-testimonial .owl-item-testimonial .description {
#branches .owl-branches .owl-item-branches .description {
margin: 0 20px; margin: 0 20px;
padding: 10px 0; padding: 10px 0;
} }
#testimonial .owl-testimonial .owl-item-testimonial .description .person-name,
#testimonial .owl-testimonial .owl-item-testimonial .description .person-info {
#branches .owl-branches .owl-item-branches .description .person-name,
#branches .owl-branches .owl-item-branches .description .person-info {
font-size: 14px; font-size: 14px;
font-weight: bold; font-weight: bold;
} }
#testimonial .owl-testimonial .owl-item-testimonial .description .person-info {
#branches .owl-branches .owl-item-branches .description .person-info {
padding: 2px 0; padding: 2px 0;
color: #808285; color: #808285;
} }
#testimonial .owl-testimonial .owl-item-testimonial .description .person-name {
#branches .owl-branches .owl-item-branches .description .person-name {
color: #28aae2; color: #28aae2;
padding-top: 20px; padding-top: 20px;
} }
#testimonial .owl-testimonial .owl-item-testimonial blockquote {
#branches .owl-branches .owl-item-branches blockquote {
font-size: 16px; font-size: 16px;
color: #808285; color: #808285;
line-height: 1.8;
line-height: 1.3;
} }
#testimonial .testimonial-carousel-btn {
#branches .branches-carousel-btn {
text-align: center; text-align: center;
padding-bottom: 30px; padding-bottom: 30px;
position: relative; position: relative;
z-index: 2; z-index: 2;
} }
#testimonial .testimonial-carousel-btn i {
#branches .branches-carousel-btn i {
padding: 10px; padding: 10px;
background-color: #d2d4d5; background-color: #d2d4d5;
color: #57595b; color: #57595b;


+ 6
- 3
static/css/service.css View File

@@ -57,12 +57,15 @@
.service-content .scene-container { .service-content .scene-container {
overflow: hidden; overflow: hidden;
width: 70%; width: 70%;
background-color: #f0f0f0;
} }
.service-content iframe {
.service-content object {
overflow-x: hidden; overflow-x: hidden;
display: none; display: none;
width: 100%;
height: 100%;
} }
.service-content iframe.active {
.service-content object.active {
display: block; display: block;
} }
.service-content ul { .service-content ul {
@@ -74,7 +77,7 @@
} }
.service-content ul li { .service-content ul li {
list-style: none; list-style: none;
padding: 25px 0;
padding: 10% 0;
border-bottom: 1px solid #808285; border-bottom: 1px solid #808285;
color: #403e41; color: #403e41;
text-align: center; text-align: center;


+ 32
- 0
static/js/about.js View File

@@ -0,0 +1,32 @@
var owl = $('.owl-team');
owl.owlCarousel({
loop: true,
margin: 0,
autoplay: true,
autoplayTimeout: 3000,
autoplayHoverPause: true,
responsiveClass: true,
responsive: {
0: {
items: 1
},
600: {
items: 1
},
1000: {
items: 4,
}
}
});

var team_carousel_Btn = $('.owl-team');
owl.owlCarousel();
$('#team-carousel-left-btn').click(function () {
"use strict";
team_carousel_Btn.trigger('next.owl.carousel', [300]);
});

$('#team-carousel-right-btn').click(function () {
"use strict";
team_carousel_Btn.trigger('prev.owl.carousel', [300]);
});

+ 13
- 0
static/js/common.js View File

@@ -0,0 +1,13 @@
window.addEventListener('scroll', page_scroll);
var page_header = document.getElementById('page-header');

function page_scroll() {
'use strict';
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
if (40 + winScroll < page_header.offsetTop) {
page_header.classList.remove('minimize');
} else {
page_header.classList.add('minimize');
}
}

+ 6
- 46
static/js/home.js View File

@@ -34,12 +34,6 @@ document.addEventListener('DOMContentLoaded', page_loaded);
function page_scroll() { function page_scroll() {
'use strict'; 'use strict';
var winScroll = document.body.scrollTop || document.documentElement.scrollTop; var winScroll = document.body.scrollTop || document.documentElement.scrollTop;

if (40 + winScroll < page_header.offsetTop) {
page_header.classList.remove('minimize');
} else {
page_header.classList.add('minimize');
}
if (-120 + winScroll >= about_description_animate.offsetTop) { if (-120 + winScroll >= about_description_animate.offsetTop) {
about_description_animate.classList.add('show'); about_description_animate.classList.add('show');
@@ -147,7 +141,7 @@ $('#service-carousel-right-btn').click(function () {
service_carousel_Btn.trigger('prev.owl.carousel', [300]); service_carousel_Btn.trigger('prev.owl.carousel', [300]);
}); });


var owl = $('.owl-testimonial');
var owl = $('.owl-branches');
owl.owlCarousel({ owl.owlCarousel({
loop: true, loop: true,
margin: 0, margin: 0,
@@ -169,48 +163,14 @@ owl.owlCarousel({
} }
}); });


var testimonial_carousel_Btn = $('.owl-testimonial');
var branches_carousel_Btn = $('.owl-branches');
owl.owlCarousel(); owl.owlCarousel();
$('#testimonial-carousel-left-btn').click(function () {
$('#branches-carousel-left-btn').click(function () {
"use strict"; "use strict";
testimonial_carousel_Btn.trigger('next.owl.carousel', [300]);
branches_carousel_Btn.trigger('next.owl.carousel', [300]);
}); });


$('#testimonial-carousel-right-btn').click(function () {
$('#branches-carousel-right-btn').click(function () {
"use strict"; "use strict";
testimonial_carousel_Btn.trigger('prev.owl.carousel', [300]);
branches_carousel_Btn.trigger('prev.owl.carousel', [300]);
}); });

var owl = $('.owl-team');
owl.owlCarousel({
loop: true,
margin: 0,
autoplay: true,
autoplayTimeout: 3000,
autoplayHoverPause: true,
responsiveClass: true,
responsive: {
0: {
items: 1
},
600: {
items: 1
},
1000: {
items: 4,
}
}
});

var team_carousel_Btn = $('.owl-team');
owl.owlCarousel();
$('#team-carousel-left-btn').click(function () {
"use strict";
team_carousel_Btn.trigger('next.owl.carousel', [300]);
});

$('#team-carousel-right-btn').click(function () {
"use strict";
team_carousel_Btn.trigger('prev.owl.carousel', [300]);
});


+ 1
- 1
static/js/service.js View File

@@ -1,5 +1,5 @@
var service_tabs = document.querySelectorAll('.service-content .side-content li'); var service_tabs = document.querySelectorAll('.service-content .side-content li');
var scenes = document.querySelectorAll('.scene-container iframe');
var scenes = document.querySelectorAll('.scene-container object');


for (var i = 0; i < service_tabs.length; i++) { for (var i = 0; i < service_tabs.length; i++) {
service_tabs[i].addEventListener('click', change_tabs); service_tabs[i].addEventListener('click', change_tabs);


+ 1
- 1
static/scss/common.scss View File

@@ -114,7 +114,7 @@ mark {
top: 0; top: 0;
left: 0; left: 0;
background-color: white; background-color: white;
z-index: 5;
z-index: 100;
transition: height 500ms linear; transition: height 500ms linear;


@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {


+ 7
- 7
static/scss/home.scss View File

@@ -347,7 +347,7 @@ section {
} }
} }


#testimonial {
#branches {
background-color: $lightest_gray; background-color: $lightest_gray;
padding: 20px 0; padding: 20px 0;


@@ -366,7 +366,7 @@ section {
} }
} }


.owl-testimonial {
.owl-branches {
width: 80%; width: 80%;
margin: 0 auto; margin: 0 auto;
height: 55vh; height: 55vh;
@@ -375,7 +375,7 @@ section {
width: 100%; width: 100%;
} }


.owl-item-testimonial {
.owl-item-branches {
display: flex; display: flex;
width: 97%; width: 97%;
background-color: white; background-color: white;
@@ -387,8 +387,8 @@ section {
} }


figure { figure {
width: 250px;
height: 300px;
width: 500px;
height: 255px;


@media screen and (max-width: 1024px) { @media screen and (max-width: 1024px) {
width: 350px; width: 350px;
@@ -426,12 +426,12 @@ section {
blockquote { blockquote {
font-size: $paragraph_size; font-size: $paragraph_size;
color: $dark_gray; color: $dark_gray;
line-height: 1.8;
line-height: 1.3;
} }
} }
} }


.testimonial-carousel-btn {
.branches-carousel-btn {
text-align: center; text-align: center;
padding-bottom: 30px; padding-bottom: 30px;
position: relative; position: relative;


+ 5
- 2
static/scss/service.scss View File

@@ -36,11 +36,14 @@
.scene-container { .scene-container {
overflow: hidden; overflow: hidden;
width: 70%; width: 70%;
background-color: $lightest_gray;
} }


iframe {
object {
overflow-x: hidden; overflow-x: hidden;
display: none; display: none;
width: 100%;
height: 100%;


&.active { &.active {
display: block; display: block;
@@ -56,7 +59,7 @@


li { li {
list-style: none; list-style: none;
padding: 25px 0;
padding: 10% 0;
border-bottom: 1px solid $dark_gray; border-bottom: 1px solid $dark_gray;
color: $dark_brown; color: $dark_brown;
text-align: center; text-align: center;


+ 5
- 1
templates/about.html View File

@@ -106,4 +106,8 @@
<i class="fas fa-chevron-right" id="team-carousel-left-btn"></i> <i class="fas fa-chevron-right" id="team-carousel-left-btn"></i>
</div> </div>
</section> </section>
{% endblock content %}
{% endblock content %}

{% block scripts %}
<script src="{% static 'js/about.js' %}"></script>
{% endblock scripts %}

+ 1
- 1
templates/base.html View File

@@ -65,7 +65,7 @@
</footer> </footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="{% static 'OwlCarousel-plugins/owl.carousel.min.js' %}"></script> <script src="{% static 'OwlCarousel-plugins/owl.carousel.min.js' %}"></script>
<script src="{% static 'js/home.js' %}"></script>
<script src="{% static 'js/common.js' %}"></script>
{% block scripts %} {% block scripts %}
{% endblock scripts %} {% endblock scripts %}
</body> </body>

+ 47
- 24
templates/home.html View File

@@ -26,7 +26,7 @@
<a href="#service">SERVICES</a> <a href="#service">SERVICES</a>
</li> </li>
<li> <li>
<a href="#testimonial">TESTIMONIAL</a>
<a href="#branches">BRANCHES</a>
</li> </li>
<li> <li>
<a href="#enquiry">ENQUIRY</a> <a href="#enquiry">ENQUIRY</a>
@@ -79,7 +79,9 @@
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam. enim ad minim veniam.
</p> </p>
<button type="button">OUR SERVICES<i class="fas fa-chevron-right"></i></button>
<a href="/service">
<button type="button">OUR SERVICES<i class="fas fa-chevron-right"></i></button>
</a>
</div> </div>
</section> </section>
<section id="about"> <section id="about">
@@ -197,14 +199,14 @@
<i class="fas fa-chevron-right" id="service-carousel-left-btn"></i> <i class="fas fa-chevron-right" id="service-carousel-left-btn"></i>
</div> </div>
</section> </section>
<section id="testimonial">
<h3>TESTIMONIALS</h3>
<section id="branches">
<h3>BRANCHES</h3>
<p> <p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua. Ut enim ad minim veniam. dolore magna aliqua. Ut enim ad minim veniam.
</p> </p>
<div class="owl-carousel owl-testimonial">
<div class="owl-item-testimonial">
<div class="owl-carousel owl-branches">
<div class="owl-item-branches">
<figure> <figure>
<img src="{% static 'images/corporate-people-photography.jpg' %}" alt=""> <img src="{% static 'images/corporate-people-photography.jpg' %}" alt="">
</figure> </figure>
@@ -216,12 +218,12 @@
labore et dolore magna aliqua. labore et dolore magna aliqua.
Ut enim ad minim veniam. Ut enim ad minim veniam.
</blockquote> </blockquote>
<div class="person-name">John Doe</div>
<div class="person-info">CEO</div>
<div class="person-info">Big Bank Ltd.</div>
<div class="person-name">Nagarabjavi</div>
<div class="person-info">Bangalore</div>
<div class="person-info">Karnataka</div>
</div> </div>
</div> </div>
<div class="owl-item-testimonial">
<div class="owl-item-branches">
<figure> <figure>
<img src="{% static 'images/boardroom-photography-London.jpg' %}" alt=""> <img src="{% static 'images/boardroom-photography-London.jpg' %}" alt="">
</figure> </figure>
@@ -233,12 +235,12 @@
labore et dolore magna aliqua. labore et dolore magna aliqua.
Ut enim ad minim veniam. Ut enim ad minim veniam.
</blockquote> </blockquote>
<div class="person-name">John Doe</div>
<div class="person-info">CEO</div>
<div class="person-info">Big Bank Ltd.</div>
<div class="person-name">Nagarabjavi</div>
<div class="person-info">Bangalore</div>
<div class="person-info">Karnataka</div>
</div> </div>
</div> </div>
<div class="owl-item-testimonial">
<div class="owl-item-branches">
<figure> <figure>
<img src="{% static 'images/corporate-people-photography.jpg' %}" alt=""> <img src="{% static 'images/corporate-people-photography.jpg' %}" alt="">
</figure> </figure>
@@ -250,12 +252,12 @@
labore et dolore magna aliqua. labore et dolore magna aliqua.
Ut enim ad minim veniam. Ut enim ad minim veniam.
</blockquote> </blockquote>
<div class="person-name">John Doe</div>
<div class="person-info">CEO</div>
<div class="person-info">Big Bank Ltd.</div>
<div class="person-name">Nagarabjavi</div>
<div class="person-info">Bangalore</div>
<div class="person-info">Karnataka</div>
</div> </div>
</div> </div>
<div class="owl-item-testimonial">
<div class="owl-item-branches">
<figure> <figure>
<img src="{% static 'images/boardroom-photography-London.jpg' %}" alt=""> <img src="{% static 'images/boardroom-photography-London.jpg' %}" alt="">
</figure> </figure>
@@ -267,15 +269,32 @@
labore et dolore magna aliqua. labore et dolore magna aliqua.
Ut enim ad minim veniam. Ut enim ad minim veniam.
</blockquote> </blockquote>
<div class="person-name">John Doe</div>
<div class="person-info">CEO</div>
<div class="person-info">Big Bank Ltd.</div>
<div class="person-name">Nagarabjavi</div>
<div class="person-info">Bangalore</div>
<div class="person-info">Karnataka</div>
</div>
</div>
<div class="owl-item-branches">
<figure>
<img src="{% static 'images/corporate-people-photography.jpg' %}" alt="">
</figure>
<div class="description">
<blockquote>
Lorem ipsum dolor sit amet, con-
sectetur adipiscing elit, sed do
eiusmod tempor incididunt ut
labore et dolore magna aliqua.
Ut enim ad minim veniam.
</blockquote>
<div class="person-name">Nagarabjavi</div>
<div class="person-info">Bangalore</div>
<div class="person-info">Karnataka</div>
</div> </div>
</div> </div>
</div> </div>
<div class="testimonial-carousel-btn">
<i class="fas fa-chevron-left" id="testimonial-carousel-right-btn" ></i>
<i class="fas fa-chevron-right" id="testimonial-carousel-left-btn"></i>
<div class="branches-carousel-btn">
<i class="fas fa-chevron-left" id="branches-carousel-right-btn" ></i>
<i class="fas fa-chevron-right" id="branches-carousel-left-btn"></i>
</div> </div>
</section> </section>
<section id="enquiry"> <section id="enquiry">
@@ -342,3 +361,7 @@
</div> </div>
</section> </section>
{% endblock content %} {% endblock content %}

{% block scripts %}
<script src="{% static 'js/home.js' %}"></script>
{% endblock scripts %}

+ 4
- 4
templates/partials/navigation.html View File

@@ -3,22 +3,22 @@
{% block navigation %} {% block navigation %}
<header id="page-header"> <header id="page-header">
<div class="inner-header"> <div class="inner-header">
<div class="temp-brand">
<a href = "/" class="temp-brand">
<figure> <figure>
<img src="{% static 'images/logo-icon.png' %}" alt=""> <img src="{% static 'images/logo-icon.png' %}" alt="">
</figure> </figure>
<h1><mark>Fundz</mark>in</h1> <h1><mark>Fundz</mark>in</h1>
</div>
</a>
<nav id="desktop-navigation-menu"> <nav id="desktop-navigation-menu">
<ul> <ul>
<li {% if menu == 'Home' %} class="active" {% endif %}> <li {% if menu == 'Home' %} class="active" {% endif %}>
<a href="/">HOME</a> <a href="/">HOME</a>
</li> </li>
<li {% if menu == 'About' %} class="active" {% endif %}> <li {% if menu == 'About' %} class="active" {% endif %}>
<a href="/">ABOUT</a>
<a href="/about">ABOUT</a>
</li> </li>
<li {% if menu == 'Service' %} class="active" {% endif %}> <li {% if menu == 'Service' %} class="active" {% endif %}>
<a href="/">SERVICES</a>
<a href="/service">SERVICES</a>
</li> </li>
<li> <li>
<a href="/">TESTIMONIAL</a> <a href="/">TESTIMONIAL</a>


+ 22
- 8
templates/service.html View File

@@ -16,7 +16,7 @@
<section class="service-content"> <section class="service-content">
<ul class="side-content"> <ul class="side-content">
<li data-tab = "sales" class="active">Sales &amp; Trading</li> <li data-tab = "sales" class="active">Sales &amp; Trading</li>
<li data-tab = "financial" >Financial Advisors</li>
<li data-tab = "financial">Financial Advisors</li>
<li data-tab = "investment">Investment Planning</li> <li data-tab = "investment">Investment Planning</li>
<li data-tab = "tax">Tax Consultants</li> <li data-tab = "tax">Tax Consultants</li>
<li data-tab = "loan">Financial Advisors</li> <li data-tab = "loan">Financial Advisors</li>
@@ -24,13 +24,27 @@
<li data-tab = "planning">Investment Planning</li> <li data-tab = "planning">Investment Planning</li>
</ul> </ul>
<div class="scene-container"> <div class="scene-container">
<iframe src="{% static 'files/sample-1.pdf' %}" frameborder="0" style="width:100%; height:100%;" class = "active" data-scene-target = "sales"></iframe>
<iframe src="{% static 'files/sample-2.pdf' %}" frameborder="0" style="width:100%; height:100%;" data-scene-target = "financial"></iframe>
<iframe src="{% static 'files/sample-1.pdf' %}" frameborder="0" style="width:100%; height:100%;" data-scene-target = "investment"></iframe>
<iframe src="{% static 'files/sample-2.pdf' %}" frameborder="0" style="width:100%; height:100%;" data-scene-target = "tax"></iframe>
<iframe src="{% static 'files/sample-1.pdf' %}" frameborder="0" style="width:100%; height:100%;" data-scene-target = "loan"></iframe>
<iframe src="{% static 'files/sample-2.pdf' %}" frameborder="0" style="width:100%; height:100%;" data-scene-target = "consultant"></iframe>
<iframe src="{% static 'files/sample-1.pdf' %}" frameborder="0" style="width:100%; height:100%;" data-scene-target = "planning"></iframe>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" class="active" data-scene-target = "sales">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "financial">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "investment">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "tax">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "loan">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-2.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "consultant">
<embed src="{% static 'files/sample-2.pdf' %}" type="application/pdf" />
</object>
<object data="{% static 'files/sample-1.pdf' %}" type="application/pdf" style="width:100%; height:100%;" data-scene-target = "planning">
<embed src="{% static 'files/sample-1.pdf' %}" type="application/pdf" />
</object>
</div> </div>
</section> </section>
{% endblock content %} {% endblock content %}


Loading…
Cancel
Save