|
- {% extends 'base.html' %}
- {% load staticfiles %}
-
- {% block stylesheets %}
- <link rel="stylesheet" href="{% static 'css/about.css' %}">
- {% endblock stylesheets %}
-
- {% block content %}
- <section class="banner">
- <h3>About Us</h3>
- </section>
- <section class="about-content">
- <div class="inner-container">
- <figure>
- <img src="{% static 'images/edits/founders.jpg' %}" alt="">
- </figure>
- <div class="description">
- <div class="heading"><mark>About</mark> BCB</div>
- <h3>Brief History</h3>
- <p>
- The Bharath co-operative Bank Ltd, having its head office at No-30,15th
- cross, Jayanagar 3rd block, Bangalore -560011 was started on 21-08-1974
- by SAHAKARA RATHNA B.L LAKKEGOWDA WHO WAS THE FOUNDER
- OF THIS BANK. On 03.01.1975 this bank got the permission by Reserve
- Bank of India (RBI) and started its transaction on 27.03.1975. It is
- registered under Karnataka Co-operative society's act 1959 and is
- governed by guideline of RBI issued from time to time. This bank served
- for 38 years and is stepping towards its 39th years. This bank was graded
- 'A' by RBI for providing quality services and facilities to its members.
- </p>
- </div>
- </div>
- <section class="features">
- <h3>Area of Operation</h3>
- <p>
- Area of operation is limited to four districts of Karnataka i.e. Bangalore
- (rural and urban), Mysore, Ramanagar, Hassan.
- </p>
- </section>
- <section class="features">
- <h3>Salient Features Of Bharath Co-operative Bank</h3>
- <ul>
- <li>Fully computerized services in all branches.</li>
- <li>Safe deposit locker facility available.</li>
- <li>Deposits up to Rs 100000/- covered under DICGC.</li>
- <li>Higher rate of interest of 21% on term deposits for senior citizens.</li>
- <li>Immovable property loans for constructions purchase of property
- purchase of site/house/flat, marriage, repayment of debts, higher
- education and business.
- </li>
- <li>Vehicle loan, gold loan, government security loan, 75% face value.</li>
- <li>Direct clearing facility.</li>
- </ul>
- </section>
- </section>
- <!-- <section id="our-team">
- <h3>Our <marked>Team</marked></h3>
- <div class="owl-carousel owl-team">
- <section class="section-container">
- <figure>
- <img src="{% static 'images/cover-image.jpg' %}" alt="">
- </figure>
- <marked>Joseph</marked>
- <p>
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic, consequuntur!
- </p>
- </section>
- <section class="section-container">
- <figure>
- <img src="{% static 'images/cover-image.jpg' %}" alt="">
- </figure>
- <marked>Joseph</marked>
- <p>
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic, consequuntur!
- </p>
- </section>
- <section class="section-container">
- <figure>
- <img src="{% static 'images/cover-image.jpg' %}" alt="">
- </figure>
- <marked>Joseph</marked>
- <p>
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic, consequuntur!
- </p>
- </section>
- <section class="section-container">
- <figure>
- <img src="{% static 'images/cover-image.jpg' %}" alt="">
- </figure>
- <marked>Joseph</marked>
- <p>
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic, consequuntur!
- </p>
- </section>
- <section class="section-container">
- <figure>
- <img src="{% static 'images/cover-image.jpg' %}" alt="">
- </figure>
- <marked>Joseph</marked>
- <p>
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Hic, consequuntur!
- </p>
- </section>
- </div>
- <div class="owl-team-btn">
- <i class="fas fa-chevron-left" id="team-carousel-right-btn"></i>
- <i class="fas fa-chevron-right" id="team-carousel-left-btn"></i>
- </div>
- </section> -->
- {% endblock content %}
-
- {% block scripts %}
- <script src="{% static 'js/about.js' %}"></script>
- {% endblock scripts %}
|