Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/autoload/app.global.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

$app = [
'name' => 'Dotkernel Light V1',
'name' => 'Dotkernel Light | PSR-15 compliant application',
];

return [
Expand Down
7 changes: 2 additions & 5 deletions src/App/templates/app/index.html.twig
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{% extends '@layout/default.html.twig' %}

{% block title %}Home{% endblock %}
{% block title %}A PSR-15 compliant application{% endblock %}

{% block content %}
<div class="page-intro home-intro">
<div class="container">
<p class="welcome">Dotkernel Light is a basic</p>
<h1>PSR-7 Middleware skeleton</h1>
<h1>PSR-15 Middleware skeleton</h1>
<p>Built on top of the Mezzio microframework. <br/>Composed of a set of custom and extended Laminas components.</p>
</div>
<div class="arrow_down">
Expand Down Expand Up @@ -85,9 +85,6 @@
<div class="row">
<div class="col-md-12 text-start">
<ul class="list-unstyled list-group list-group-flush">
<li class="list-group-item">
<a href="https://github.com/dotkernel/dot-controller" target="_blank" class="text-decoration-none">dot-controller</a>: controller-like middleware for laminas
</li>
<li class="list-group-item">
<a href="https://github.com/dotkernel/dot-log" target="_blank" class="text-decoration-none">dot-log</a>: generic logging component
</li>
Expand Down
5 changes: 4 additions & 1 deletion src/App/templates/layout/default.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />

<title>{% block title %}{% endblock %} | Dotkernel Light V1</title>
<title>{% block title %}{% endblock %} | Dotkernel Light</title>
{% block canonical %}<link rel="canonical" href="{{ url(routeName ?? null) }}" />{% endblock %}

<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('images/app/favicon/apple-touch-icon.png') }}">
Expand Down Expand Up @@ -51,6 +51,9 @@
<li class="nav-item">
<a class="nav-link" href="https://github.com/dotkernel/light/" target="_blank">GitHub</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://docs.dotkernel.org/light-documentation/" target="_blank">Documentation</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="{{ url('app::index') }}">Disabled</a>
</li>
Expand Down
Loading