mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 08:09:02 +00:00
cleanup: Switch to short tags
This commit is contained in:
parent
8fc7bef7f2
commit
b6108d1ed9
2 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
<div class="mob">
|
||||
<img src="/images/mobs/<?php echo $mob["image"] ?? "_placeholder.png"; ?>"><br />
|
||||
<?php echo $mob["id"]; ?><br />
|
||||
<?php echo $mob["name"]; ?><br />
|
||||
<?php echo $mob["rating"]; ?><br />
|
||||
<img src="/images/mobs/<?= $mob["image"] ?? "_placeholder.png"; ?>"><br />
|
||||
<?= $mob["id"]; ?><br />
|
||||
<?= $mob["name"]; ?><br />
|
||||
<?= $mob["rating"]; ?><br />
|
||||
</div>
|
|
@ -1,7 +1,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title><?php echo $title ?? ""; ?></title>
|
||||
<title><?= $title ?? ""; ?></title>
|
||||
<link rel="stylesheet" type="text/css" href="/styles/main.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
|
Loading…
Reference in a new issue