Moved bottom navbar from layout to index.
This commit is contained in:
parent
7f2e4b6634
commit
1f9e9ee650
@ -103,6 +103,17 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block footer %}
|
||||||
|
<!-- Navbar with the months of the selected account -->
|
||||||
|
<div class="navbar navbar-fixed-bottom">
|
||||||
|
<div class="navbar-inner" ng-controller="MonthController">
|
||||||
|
<ul class="nav">
|
||||||
|
<li ng-repeat="month in months" ng-class="monthClass(month)"><a href="#" ng-click="selectMonth(month)">[[month.year]]-[[month.month]]</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
<!-- Custom Javascript library for entries -->
|
<!-- Custom Javascript library for entries -->
|
||||||
{% block js %}
|
{% block js %}
|
||||||
<script type="text/javascript" src="{{ url_for('static', filename='js/months.js') }}"></script>
|
<script type="text/javascript" src="{{ url_for('static', filename='js/months.js') }}"></script>
|
||||||
|
@ -77,15 +77,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Navbar with the months of the selected account -->
|
{% block footer %}{% endblock %}
|
||||||
<div class="navbar navbar-fixed-bottom">
|
|
||||||
<div class="navbar-inner" ng-controller="MonthController">
|
|
||||||
<ul class="nav">
|
|
||||||
<li ng-repeat="month in months" ng-class="monthClass(month)"><a href="#" ng-click="selectMonth(month)">[[month.year]]-[[month.month]]</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- JQuery Javascript library -->
|
<!-- JQuery Javascript library -->
|
||||||
<script type="text/javascript" src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
|
<script type="text/javascript" src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user