This repository was archived by the owner on May 20, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ def share(id):
141141@login_required
142142def tag (name ):
143143 tag = Tag .query .filter_by (tag = name ).first ()
144- return render_template ('tag.html' , notes = tag ._get_notes (), tag = name )
144+ return render_template ('app/ tag.html' , notes = tag ._get_notes (), tag = name )
145145
146146@main .route ('/shutdown' )
147147def server_shutdown ():
Original file line number Diff line number Diff line change @@ -14,5 +14,4 @@ <h1 class="top"> All Notes </h1>
1414{% block scripts %}
1515{{ super() }}
1616< script src ="{{ url_for('static', filename='js/libs/marked.js') }} "> </ script >
17- < script src ="{{ url_for('static', filename='js/braindump.js') }} "> </ script >
1817{% endblock %}
Original file line number Diff line number Diff line change 7272{% block scripts %}
7373{{ super() }}
7474{{ moment.include_moment() }}
75+ < script src ="{{ url_for('static', filename='js/braindump.js') }} "> </ script >
7576{% endblock %}
Original file line number Diff line number Diff line change 1+ {% extends 'app/app_base.html' %}
2+
3+ {% block title %} Braindump | Note {% endblock %}
4+
5+ {% block page_content %}
6+ < h1 class ="top "> Notes tagged {{ tag }} </ h1 >
7+ {% include 'app/_notes.html' %}
8+ {% endblock %}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments