|
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>BCB</title>
- {% load staticfiles %}
- <!-- Using Google hot link to render fonts, downloaded Archgivo Black fonts isn't same as the previewed. -->
- <link href="https://fonts.googleapis.com/css?family=Archivo+Black" rel="stylesheet">
- <link rel="stylesheet" href="{% static 'css/fontawesome-all.min.css' %}">
- <link rel="stylesheet" href="{% static 'OwlCarousel-plugins/owl.carousel.min.css' %}">
- <link rel="stylesheet" href="{% static 'OwlCarousel-plugins/owl.theme.default.min.css' %}">
- <link rel="stylesheet" href="{% static 'css/common.css' %}">
- {% block stylesheets %}
- {% endblock stylesheets %}
- </head>
- <body>
- <div class="temp-intro">
- <div class="temp-name">Go to <mark><a href="/">Home</a></mark></div>
- <!-- <ul class="temp-social">
- <li>
- <a href="#"><i class="fab fa-facebook-f"></i></a>
- </li>
- <li>
- <a href="#"><i class="fab fa-twitter"></i></a>
- </li>
- <li>
- <a href="#"><i class="fab fa-linkedin-in"></i></a>
- </li>
- <li>
- <a href="#"><i class="fab fa-google-plus-g"></i></a>
- </li>
- </ul> -->
- </div>
- {% block navigation %}
- {% endblock navigation %}
-
- {% block content %}
- {% endblock content %}
- <footer id="footer">
- <small>copyright © 2018 <mark>Bharath Co-Operative Bank</mark></small>
- <small>Digitized By <mark>Webtrigon Mini</mark></small>
- </footer>
- <script src="https://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 'js/common.js' %}"></script>
- {% block scripts %}
- {% endblock scripts %}
- </body>
- </html>
|