Skip to content

Commit 709bf2f

Browse files
committed
Cleanup.
2 parents 0a6801a + 4df4daf commit 709bf2f

File tree

4 files changed

+41
-1
lines changed

4 files changed

+41
-1
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Hackers and Slackers
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,13 @@
88
[![GitHub Stars](https://img.shields.io/github/stars/hackersandslackers/flask-assets-tutorial.svg?style=flat-square8&colorA=4c566a&logo=GitHub&colorB=ebcb8b)](https://github.com/hackersandslackers/flask-assets-tutorial/stargazers)
99
[![GitHub Forks](https://img.shields.io/github/forks/hackersandslackers/flask-assets-tutorial.svg?style=flat-square&colorA=4c566a&logo=GitHub&colorB=ebcb8b)](https://github.com/hackersandslackers/flask-assets-tutorial/network)
1010

11-
![Flask Assets Tutorial](https://github.com/hackersandslackers/flask-assets-tutorial/.github/[email protected])
11+
![Flask Assets Tutorial](https://github.com/hackersandslackers/flask-assets-tutorial/blob/master/.github/[email protected]?raw=true)
1212

13+
<<<<<<< HEAD
1314
Build and code-split your frontend assets across Blueprints using Flask-Assets. Accompanying tutorial on Hackers and Slackers here: https://hackersandslackers.com/flask-assets/
15+
=======
16+
Structure your Flask apps in a scalable and intelligent way using Blueprints. This repository contains source code for the accompanying tutorial on Hackers and Slackers: https://hackersandslackers.com/flask-assets
17+
>>>>>>> 4df4daf539e3f82a9604ab064226669c931f58e4
1418
1519
## Installation
1620

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<script type="text/javascript">
2+
var _gauges = _gauges || [];
3+
(function() {
4+
var t = document.createElement('script');
5+
t.type = 'text/javascript';
6+
t.async = true;
7+
t.id = 'gauges-tracker';
8+
t.setAttribute('data-site-id', '5eb6bb095292fb0fdbffe180');
9+
t.setAttribute('data-track-path', 'https://track.gaug.es/track.gif');
10+
t.src = 'https://d2fuc4clr7gvcn.cloudfront.net/track.js';
11+
var s = document.getElementsByTagName('script')[0];
12+
s.parentNode.insertBefore(t, s);
13+
})();
14+
</script>

application/templates/layout.jinja2

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<!-- Scripts -->
1717
<script src="{{ url_for('static', filename='dist/js/main.min.js') }}"></script>
1818
{% block additionalscripts %}{% endblock %}
19+
{% include 'analytics.jinja2' %}
1920
</body>
2021

2122
</html>

0 commit comments

Comments
 (0)