Skip to content

Commit c1f53ec

Browse files
authored
Merge pull request #54 from dotkernel/sr-15
Update title and add PSR-15 on index page
2 parents 6b5529e + 52570d4 commit c1f53ec

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

config/autoload/app.global.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
$app = [
6-
'name' => 'Dotkernel Light V1',
6+
'name' => 'Dotkernel Light | PSR-15 compliant application',
77
];
88

99
return [

src/App/templates/app/index.html.twig

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{% extends '@layout/default.html.twig' %}
22

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

55
{% block content %}
66
<div class="page-intro home-intro">
77
<div class="container">
88
<p class="welcome">Dotkernel Light is a basic</p>
9-
<h1>PSR-7 Middleware skeleton</h1>
9+
<h1>PSR-15 Middleware skeleton</h1>
1010
<p>Built on top of the Mezzio microframework. <br/>Composed of a set of custom and extended Laminas components.</p>
1111
</div>
1212
<div class="arrow_down">
@@ -85,9 +85,6 @@
8585
<div class="row">
8686
<div class="col-md-12 text-start">
8787
<ul class="list-unstyled list-group list-group-flush">
88-
<li class="list-group-item">
89-
<a href="https://github.com/dotkernel/dot-controller" target="_blank" class="text-decoration-none">dot-controller</a>: controller-like middleware for laminas
90-
</li>
9188
<li class="list-group-item">
9289
<a href="https://github.com/dotkernel/dot-log" target="_blank" class="text-decoration-none">dot-log</a>: generic logging component
9390
</li>

src/App/templates/layout/default.html.twig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
77

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

1111
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('images/app/favicon/apple-touch-icon.png') }}">
@@ -51,6 +51,9 @@
5151
<li class="nav-item">
5252
<a class="nav-link" href="https://github.com/dotkernel/light/" target="_blank">GitHub</a>
5353
</li>
54+
<li class="nav-item">
55+
<a class="nav-link" href="https://docs.dotkernel.org/light-documentation/" target="_blank">Documentation</a>
56+
</li>
5457
<li class="nav-item">
5558
<a class="nav-link disabled" href="{{ url('app::index') }}">Disabled</a>
5659
</li>

0 commit comments

Comments
 (0)