Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed old logo png to new svg #557

Merged
merged 1 commit into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading