Commit 5f11ef0a authored by hanke's avatar hanke
Browse files

Merge branch 'introduce-favicon' into 'master'

Introduce apple-touch-icon to header.

See merge request !17
parents ee367fe7 44ba09d2
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -24,3 +24,9 @@ instance

# Environment files (might contain secrets)
.env

# weird macOS files (maximum compatibility)
.DS_Store
._.DS_Store
**/.DS_Store
**/._.DS_Store
+13.9 KiB
Loading image diff...
+5 −1
Original line number Diff line number Diff line
@@ -10,7 +10,11 @@
        />
        <link
            rel="icon"
            href="{{ url_for('static', filename='img/portal.svg') }}"
            href="{{ url_for('static', filename='static/img/portal.svg') }}"
        />
        <link
            rel="apple-touch-icon"
            href="{{ url_for('static', filename='static/img/portal.png') }}"
        />
    </head>