18 lines
546 B
PHP
18 lines
546 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">
|
|
|
|
<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>
|
|
<a href="{{ route('recent-articles') }}">Recent Articles</a>
|
|
</main>
|
|
</body>
|
|
</html>
|