Skip to content

Commit

Permalink
Merge pull request #557 from UrLab/updated-logo
Browse files Browse the repository at this point in the history
Changed old logo png to new svg
  • Loading branch information
QuarkUpCode authored Oct 14, 2024
2 parents 2772a92 + f646177 commit 5d4b7cc
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 10 deletions.
2 changes: 1 addition & 1 deletion badges/templates/badges_home.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<meta property="og:description" content="La liste des badges du hackerspace" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://urlab.be{% url "badges_home_view" %}" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.png" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.svg" />
{% endblock %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion events/templates/events_home.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<meta property="og:description" content="La liste des événements du hackerspace" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://urlab.be{% url "events_home" %}" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.png" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.svg" />
{% endblock %}

{% block content %}
Expand Down
4 changes: 2 additions & 2 deletions incubator/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<meta property="og:title" content="UrLab" />
<meta property="og:type" content="place" />
<meta property="og:url" content="https://urlab.be" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.png" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.svg" />
{% endblock %}
</head>

Expand All @@ -44,7 +44,7 @@
{% if space_open %}
<div id="home-logo"><a href="/"><img id="home-logo-image" src="/static/img/space-invaders-open.png" /></a></div>
{% else %}
<div id="home-logo"><a href="/"><img id="home-logo-image" src="/static/img/space-invaders.png" /></a></div>
<div id="home-logo"><a href="/"><img id="home-logo-image" src="/static/img/space-invaders.svg" /></a></div>
{% endif %}
</header>

Expand Down
2 changes: 1 addition & 1 deletion projects/templates/projects_home.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<meta property="og:description" content="La liste des projets du hackerspace" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://urlab.be{% url "projects_home" %}" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.png" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.svg" />
{% endblock %}

{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion space/templates/motd.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta property="og:description" content="En direct de notre channel IRC !" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://urlab.be{% url "motd" 1 %}" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.png" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.svg" />
{% endblock %}

{% block content %}
Expand Down
4 changes: 2 additions & 2 deletions space/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def spaceapi(request):
response = {
"api": "0.13",
"space": "UrLab",
"logo": "https://urlab.be/static/img/space-invaders.png",
"logo": "https://urlab.be/static/img/space-invaders.svg",
"url": "https://urlab.be",
"location": {
"lat": 50.8115138,
Expand All @@ -163,7 +163,7 @@ def spaceapi(request):
"lastchange": round(SpaceStatus.objects.last().time.timestamp()),
"icon": {
"open": "https://urlab.be/static/img/space-invaders-open.png",
"closed": "https://urlab.be/static/img/space-invaders.png"
"closed": "https://urlab.be/static/img/space-invaders.svg"
}
},
# "events": {},
Expand Down
28 changes: 28 additions & 0 deletions static/img/space-invaders.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion wiki/templates/article_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<meta property="og:title" content="{{ article.title }}" />
<meta property="og:url" content="https://urlab.be{% url "view_article" article.pk %}" />
<meta property="og:description" content="{{ article.content }}" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.png" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.svg" />
<meta property="article:section" content="Badge" />
{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion wiki/templates/wiki_home.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<meta property="og:description" content="Le wiki du hackerspace, toute l'aide dont tu as besoin est ici :)" />
<meta property="og:type" content="article" />
<meta property="og:url" content="https://urlab.be{% url "wiki_home" %}" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.png" />
<meta property="og:image" content="https://urlab.be/static/img/space-invaders.svg" />
{% endblock %}

{% block content %}
Expand Down

0 comments on commit 5d4b7cc

Please sign in to comment.