Fixed title not displaying on the home page

This commit is contained in:
Chris Kankiewicz
2020-01-07 22:52:39 -07:00
parent d9ba30c310
commit 720d0c79a1
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
{% extends "layouts/app.twig" %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
{% include "components/header.twig" %}

View File

@@ -7,7 +7,7 @@
<link rel="stylesheet" href="{{ asset('app.css') }}">
<title>{% block title %}{% endblock %} &bull; Directory Lister</title>
<title>{{ title | default('Home') }} &bull; Directory Lister</title>
<div id="app" class="flex flex-col min-h-screen font-mono {{ config('dark_mode') ? 'dark-mode' : 'light-mode' }}">
{% block content %}{% endblock %}