Skip to content

Commit

Permalink
add minified html/css files
Browse files Browse the repository at this point in the history
  • Loading branch information
6ri4n committed Sep 25, 2024
1 parent d2291f7 commit 90fad74
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions app/static/css/create_event.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions app/static/css/event.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions app/static/js/create.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions app/static/js/event.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/templates/event/create.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/>
<link
rel="stylesheet"
href="{{ url_for('static', filename='css/create_event.css') }}"
href="{{ url_for('static', filename='css/create_event.min.css') }}"
/>
</head>

Expand Down Expand Up @@ -141,7 +141,7 @@ <h1>When are you available?</h1>

<script
defer
src="{{ url_for('static', filename='js/create.js') }}"
src="{{ url_for('static', filename='js/create.min.js') }}"
></script>
</body>
</html>
4 changes: 2 additions & 2 deletions app/templates/event/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/>
<link
rel="stylesheet"
href="{{ url_for('static', filename='css/event.css') }}"
href="{{ url_for('static', filename='css/event.min.css') }}"
/>
</head>
<body>
Expand Down Expand Up @@ -112,7 +112,7 @@ <h1></h1>
</script>
<script
defer
src="{{ url_for('static', filename='js/event.js') }}"
src="{{ url_for('static', filename='js/event.min.js') }}"
></script>
</body>
</html>

0 comments on commit 90fad74

Please sign in to comment.