30 lines
911 B
PHP
30 lines
911 B
PHP
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
|
||
|
|
<!-- Include our local version of HTMX -->
|
||
|
|
<script src="/htmx.1.9.12.js"></script>
|
||
|
|
|
||
|
|
<link href="/word-salad.css" rel="stylesheet" />
|
||
|
|
|
||
|
|
<title>{{ config('blog.publishing_name') }} | Home</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<main>
|
||
|
|
<h2>Hey guys, check back soon for some word-based #content</h2>
|
||
|
|
|
||
|
|
<div id="button-container">
|
||
|
|
<button hx-get="{{ route('surprise') }}"
|
||
|
|
hx-trigger="click"
|
||
|
|
hx-target="#button-container"
|
||
|
|
hx-swap="outerHTML"
|
||
|
|
>
|
||
|
|
Click Me!
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
</main>
|
||
|
|
</body>
|
||
|
|
</html>
|