- Implemented the dark photo-based theme.
Moved all images to public/assets/images. Added darkened photography across heroes, specials, menu cards, authentication, story, checkout, and footer. Replaced placeholder branding with the supplied logo. Preserved configurable menu item images. Updated desktop and mobile styling for readable cream/gold text.
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
<p><?= e($special['description']) ?></p>
|
||||
<div><strong><?= $special['price_cents'] !== null ? money($special['price_cents']) : 'No override' ?></strong><span class="status-dot <?= $special['active'] ? 'is-on' : '' ?>"><?= $special['active'] ? 'Active' : 'Hidden' ?></span></div>
|
||||
</summary>
|
||||
<form class="inline-editor form-stack" action="/admin/special/save" method="post">
|
||||
<form class="inline-editor form-stack" action="<?= e(url('/admin/special/save')) ?>" method="post">
|
||||
<?= csrf_field() ?>
|
||||
<input type="hidden" name="id" value="<?= (int) $special['id'] ?>">
|
||||
<div class="form-grid">
|
||||
@@ -42,7 +42,7 @@
|
||||
</div>
|
||||
<details class="new-record">
|
||||
<summary>+ Add Homepage Special</summary>
|
||||
<form class="inline-editor form-stack" action="/admin/special/save" method="post">
|
||||
<form class="inline-editor form-stack" action="<?= e(url('/admin/special/save')) ?>" method="post">
|
||||
<?= csrf_field() ?>
|
||||
<div class="form-grid">
|
||||
<label>Title<input type="text" name="title" required></label>
|
||||
|
||||
Reference in New Issue
Block a user