Skip to content

Commit

Permalink
Merge pull request #33 from questionlp/develop
Browse files Browse the repository at this point in the history
Remove unnecessary slash in empty tag
  • Loading branch information
questionlp authored Dec 2, 2023
2 parents 4f48714 + 4f0be58 commit cbaf6c2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changes

## 2.6.1

### Application Changes

- Remove unneeded slash in an empty tag for the Materialize CSS include

## 2.6.0

**Starting with version 2.6.0, support for all versions of Python prior to 3.10 have been deprecated.**
Expand Down
2 changes: 1 addition & 1 deletion app/templates/core/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">

<!--Import Materialize -->
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/materialize.min.css') }}" media="screen"/>
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/materialize.min.css') }}" media="screen">

<!-- Import Custom CSS -->
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
Expand Down
2 changes: 1 addition & 1 deletion app/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# graphs.wwdt.me is released under the terms of the Apache License 2.0
"""Application Version for Wait Wait Graphs Site"""

APP_VERSION = "2.6.0"
APP_VERSION = "2.6.1"

0 comments on commit cbaf6c2

Please sign in to comment.