mirror of
https://github.com/YunoHost/pepettes.git
synced 2024-09-03 20:06:20 +02:00
proper logo alt text with the configured name
This commit is contained in:
parent
31640b1523
commit
89dee68807
1 changed files with 39 additions and 36 deletions
|
@ -1,5 +1,6 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
@ -7,7 +8,8 @@
|
|||
<title>{{ _('Donate to %(name)s', name=name) }}</title>
|
||||
|
||||
<link rel="icon" href="{{ favicon }}" type="image/x-icon" />
|
||||
<link href="./css/bootstrap-5.0.0-beta2.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
|
||||
<link href="./css/bootstrap-5.0.0-beta2.min.css" rel="stylesheet"
|
||||
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
|
||||
<link href="./css/global.css" rel="stylesheet" />
|
||||
<script src="https://js.stripe.com/v3/"></script>
|
||||
<script src="./index.js" defer></script>
|
||||
|
@ -16,7 +18,7 @@
|
|||
<body class="text-center">
|
||||
<main class="form-donate">
|
||||
<div>
|
||||
<img src="{{ logo }}" class="mb-4" alt="Project Logo" max-width="7em"/>
|
||||
<img src="{{ logo }}" class="mb-4" alt="{{ _('%(name)s Logo', name=name) }}" max-width="7em" />
|
||||
<h1 class="h3 mb-3 fw-normal">{{ _('I want to give to %(name)s', name=name) }}</h1>
|
||||
<div class="input-group mb-3">
|
||||
<input type="hidden" id="csrf" value="{{ csrf }}" />
|
||||
|
@ -39,4 +41,5 @@
|
|||
</div>
|
||||
</main>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue