mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
adding webp replacement
This commit is contained in:
parent
ec1f4274a3
commit
b08d83b849
@ -38,7 +38,7 @@ class StateUsersTable extends Table
|
||||
parent::initialize($config);
|
||||
|
||||
$this->setTable('state_users');
|
||||
$this->setDisplayField('id');
|
||||
$this->setDisplayField('email');
|
||||
$this->setPrimaryKey('id');
|
||||
|
||||
/*$this->belongsTo('Indices', [
|
||||
|
||||
@ -47,8 +47,16 @@ $GLOBALS["self"] = $this;
|
||||
<nav class="t-header">
|
||||
<div class="t-header-brand-wrapper">
|
||||
<a href="/">
|
||||
<?= $this->Html->image('logo_schrift_half.webp', ['alt' => 'Logo', 'class' => 'logo']) ?>
|
||||
<?= $this->Html->image('logo_half.webp', ['alt' => 'Logo', 'class' => 'logo-mini']) ?>
|
||||
<picture class="logo">
|
||||
<source srcset="/img/logo_schrift_half.webp" type="image/webp">
|
||||
<source srcset="/img/logo_schrift_half.png" type="image/png">
|
||||
<img src="/img/logo_schrift_half.png" class="logo" alt="Logo">
|
||||
</picture>
|
||||
<picture class="logo-mini">
|
||||
<source srcset="/img/logo_half.webp" type="image/webp">
|
||||
<source srcset="/img/logo_half.png" type="image/png">
|
||||
<img src="/img/logo_half.png" class="logo-mini" alt="Logo">
|
||||
</picture>
|
||||
</a>
|
||||
<button class="t-header-toggler t-header-desk-toggler d-none d-lg-block">
|
||||
<svg class="logo" viewBox="0 0 200 200">
|
||||
|
||||
BIN
webroot/img/logo_half.png
Normal file
BIN
webroot/img/logo_half.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.7 KiB |
BIN
webroot/img/logo_schrift.png
Normal file
BIN
webroot/img/logo_schrift.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 55 KiB |
BIN
webroot/img/logo_schrift_half.png
Normal file
BIN
webroot/img/logo_schrift_half.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
Loading…
x
Reference in New Issue
Block a user