31 lines
836 B
HTML
31 lines
836 B
HTML
{% extends "layouts/base.html" %}
|
|
|
|
{% block title %} Forms {% endblock title %}
|
|
|
|
<!-- Specific CSS goes HERE -->
|
|
{% block stylesheets %}{% endblock stylesheets %}
|
|
|
|
{% block content %}
|
|
|
|
<!-- ### $App Screen Content ### -->
|
|
<main class='main-content bgc-grey-100'>
|
|
<div id='mainContent'>
|
|
<div class="container-fluid">
|
|
<h4 class="c-grey-900 mT-10 mB-30">Google Maps</h4>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="bgc-white bd bdrs-3 p-20 mB-20">
|
|
<h6 class="c-grey-900 mB-20">Google Maps</h6>
|
|
<div id="google-map" style="padding-bottom: 75%;"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
{% endblock content %}
|
|
|
|
<!-- Specific Page JS goes HERE -->
|
|
{% block javascripts %}{% endblock javascripts %} |