Remove logo and fix #47
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
dc1e5138c6
commit
96fe158a86
@ -15,6 +15,7 @@ body {
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
}
|
||||
|
||||
body {
|
||||
@ -24,15 +25,7 @@ body {
|
||||
color: #b9bbbe;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
#logo {
|
||||
position: relative;
|
||||
left: 24px;
|
||||
top: 24px;
|
||||
height: 36px;
|
||||
width: 130px;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
footer,
|
||||
|
@ -13,11 +13,6 @@
|
||||
href="{{ url_for('static', filename='css/global.css') }}"/>
|
||||
</head>
|
||||
<body>
|
||||
<img src="{{ url_for('static', filename='img/Discord-Logo+Wordmark-White.svg') }}"
|
||||
id="logo"
|
||||
height="36"
|
||||
width="130"
|
||||
alt="{{ _('Discord Logo') }}"/>
|
||||
<div id="content">
|
||||
{% block content %}
|
||||
{% endblock content %}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{% extends "base.html.j2" %}
|
||||
{% block content %}
|
||||
<form action="" method="get">
|
||||
<form action="{{ url_for(".index") }}" method="get">
|
||||
<div id="box">
|
||||
<div id="avatars">
|
||||
<img src="{{ client.user.display_avatar }}"
|
||||
@ -8,7 +8,7 @@
|
||||
width="80"
|
||||
height="80"/>
|
||||
</div>
|
||||
<h1>{{ client.user.display_name }}</h1>
|
||||
<h1><a href="{{ url_for(".index") }}">{{ client.user.display_name }}</a></h1>
|
||||
<h2>{{ _('The discord scheduled event calendar generator') }}</h2>
|
||||
<hr />
|
||||
<h3>{{ _('This will allow you to:') }}</h3>
|
||||
|
@ -12,7 +12,7 @@
|
||||
width="80"
|
||||
height="80"/>
|
||||
</div>
|
||||
<h1>{{ client.user.display_name }}</h1>
|
||||
<h1><a href="{{ url_for(".index") }}">{{ client.user.display_name }}</a></h1>
|
||||
<h2>{{ _('The discord scheduled event calendar generator') }}</h2>
|
||||
<hr />
|
||||
<ul id="providers">
|
||||
|
Loading…
Reference in New Issue
Block a user