Browse Source

Fix favicon and some other stuff

mistress
Daniel Muckerman 3 years ago
parent
commit
d38ea1c712
6 changed files with 7 additions and 5 deletions
  1. +2
    -0
      Dockerfile
  2. +3
    -3
      config/config.yaml
  3. BIN
      static/favicon.ico
  4. BIN
      static/images/wiki.png
  5. +1
    -1
      templates/games.j2
  6. +1
    -1
      templates/index.j2

+ 2
- 0
Dockerfile View File

@ -7,5 +7,7 @@ ADD . /project
RUN rm /project/.envrc
RUN rm -rf /project/env
RUN apt-get update && apt-get install -y python3-dev libldap2-dev libsasl2-dev libssl-dev
RUN pip install -r requirements.txt
CMD ["flask","run","--host=0.0.0.0"]

+ 3
- 3
config/config.yaml View File

@ -11,10 +11,10 @@ game_description: "We're all gamers at heart, so welcome to the Valhalla of self
countdown:
active: False
name: "The End of Drunktrips: You Can (Not) Continue"
timestamp: "August 31 2020 10:00:00-0400"
timestamp: "October 17 2020 10:00:00-0400"
final_countdown:
active: True
active: False
timestamp: "August 16 2020 17:16:00-0400"
apps:
@ -67,7 +67,7 @@ games:
image: "gameboy.png"
terraformingmars:
name: "Terraforming Mars"
description: "<br>Experience the glory of \"cooperative\" gameplay through corporate simulation!"
description: "<br>I don't want to live on this planet anymore. -Prof. Farnsworth"
link: "https://terraforming-mars.flamwenco.com"
image: "mars.png"
minecraft:

BIN
static/favicon.ico View File

Before After

BIN
static/images/wiki.png View File

Before After
Width: 500  |  Height: 500  |  Size: 46 KiB

+ 1
- 1
templates/games.j2 View File

@ -3,7 +3,7 @@
{% block styles %}
{{super()}}
<link rel="icon" type="image/png" href="{{url_for('.static', filename='favicon.png')}}" />
{# <link rel="icon" type="image/png" href="{{url_for('.static', filename='favicon.png')}}" /> #}
<link rel="stylesheet" href="{{url_for('.static', filename='style.css')}}">
{% if countdown is defined %}
<link rel="stylesheet" href="{{url_for('.static', filename='clock.css')}}">

+ 1
- 1
templates/index.j2 View File

@ -3,7 +3,7 @@
{% block styles %}
{{super()}}
<link rel="icon" type="image/png" href="{{url_for('.static', filename='favicon.png')}}" />
{# <link rel="icon" type="image/png" href="{{url_for('.static', filename='favicon.png')}}" /> #}
<link rel="stylesheet" href="{{url_for('.static', filename='style.css')}}">
{% if countdown is defined %}
<link rel="stylesheet" href="{{url_for('.static', filename='clock.css')}}">

Loading…
Cancel
Save