diff options
author | MaZderMind | 2015-10-05 11:49:59 +0200 |
---|---|---|
committer | MaZderMind | 2015-10-05 11:49:59 +0200 |
commit | 1e80133967b65f94db26c6b3914a58b341d57eca (patch) | |
tree | 51c6c188e3146f0e2b063128ebef6c37957b5317 /template | |
parent | de36612254684531311e3eb4419adc9675050f58 (diff) |
use inline-styled svg
Diffstat (limited to 'template')
-rw-r--r-- | template/404.phtml | 2 | ||||
-rw-r--r-- | template/500.phtml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/template/404.phtml b/template/404.phtml index 583ddc4..e323eb2 100644 --- a/template/404.phtml +++ b/template/404.phtml @@ -1,5 +1,5 @@ <div class="container"> <h1>404 Winkekatze Not Found</h1> - <img src="assets/img/missing-cat.png" alt="404 Winkekatze Not Found" /> + <?=file_get_contents('assets/img/missing-cat.svg') ?> </div> diff --git a/template/500.phtml b/template/500.phtml index feee78f..f3e5db3 100644 --- a/template/500.phtml +++ b/template/500.phtml @@ -4,5 +4,5 @@ <pre><?=h($e)?></pre> </div> - <img src="assets/img/missing-cat.png" alt="500 Internal Winkekatze Error" /> + <?=file_get_contents('assets/img/missing-cat.svg') ?> </div> |