word-salad/resources/views/home.blade.php

18 lines
546 B
PHP
Raw Normal View History

<!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>