Skip to content

Commit 9b69dca

Browse files
committed
Merge branch 'feat/improve-seo' into demo/1.24
2 parents 177fd83 + 06673fb commit 9b69dca

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Folge der Installationsanleitung auf [module-loader.de](https://module-loader.de
2323

2424
## Requirements
2525
- PHP 7.4 or above
26-
- modified 2.0.6.0 to 3.0.0
26+
- modified 2.0.6.0 to 3.0.2
2727

2828
## Authors
2929
- Robin Wieschendorf | <[email protected]> | [robinwieschendorf.de](https://robinwieschendorf.de)

mmlc_installer.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
ini_set('display_errors', 1);
1616
error_reporting(E_ALL & ~E_NOTICE);
1717

18-
define('VERSION', '0.8.1');
18+
define('VERSION', '0.9.0');
1919

2020
class Installer
2121
{
@@ -32,7 +32,9 @@ class Installer
3232
"2.0.7.0",
3333
"2.0.7.1",
3434
"2.0.7.2",
35-
"3.0.0"
35+
"3.0.0",
36+
"3.0.1",
37+
"3.0.2"
3638
];
3739

3840
public function invoke()

src/Templates/Head.tmpl.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,17 @@
77
?>
88

99
<meta charset="utf-8">
10-
<title>MMLC - Modified Module Loader Client</title>
1110
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
1211

12+
<?php if (!isset($moduleView) || !isset($module)) {?>
13+
<title>MMLC - Modified Module Loader Client</title>
14+
<meta name="description" content="Sie sind auf der Suche nach neuen Laufschuhen? » Wir haben die aktuellsten Modelle für Sie getestet!"/>
15+
<link rel="canonical" href="https://www.module-loader.de/module" />
16+
<?php } else { ?>
17+
<title><?= $moduleView->getName() ?> - 📦 Modul fürs modified Shop System</title>
18+
<meta name="description" content="<?= $module->getShortDescription() ?>"/>
19+
<?php } ?>
20+
1321
<?php
1422
echo TemplateHelper::loadStyleSheet('src/Templates/Styles/bootstrap.min.css');
1523
echo TemplateHelper::loadStyleSheet('src/Templates/Styles/font-awesome-all.css');

0 commit comments

Comments
 (0)