Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Layout #812

Closed
wants to merge 36 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
f08fe01
NeuesLayoutBS5 - config
PrivatePHPCoder Oct 5, 2023
e488387
Verzeichnise und Index.php angelegt
PrivatePHPCoder Oct 5, 2023
e7934f4
Update index.php
PrivatePHPCoder Oct 5, 2023
aad978f
Update index.php
PrivatePHPCoder Oct 5, 2023
45a3697
Fehlerbeseitigung und Anlegen der style.css
PrivatePHPCoder Oct 5, 2023
3147c09
Update index.php
PrivatePHPCoder Oct 5, 2023
c10b20a
Update index.php
PrivatePHPCoder Oct 5, 2023
9dc0cd9
Header-Style-Update
PrivatePHPCoder Oct 5, 2023
3091de2
Style Update Logo
PrivatePHPCoder Oct 5, 2023
cab6ebe
Update style.css
PrivatePHPCoder Oct 5, 2023
e3a59c6
Navigation mit Dropdown
PrivatePHPCoder Oct 5, 2023
f29ade8
Merge branch 'IlchCMS:master' into NewLayout
Oct 6, 2023
8fbaa75
Merge branch 'IlchCMS:master' into NewLayout
Oct 6, 2023
95276f8
Fix errors handling non-image file (#807)
blackcoder87 Oct 7, 2023
7f78a0b
Forum: improve performance of query (#810)
blackcoder87 Oct 7, 2023
540c437
So einige Erweiterungen
PrivatePHPCoder Oct 7, 2023
0c7747c
Merge branch 'IlchCMS:master' into NewLayout
Oct 7, 2023
de99ea9
Update index.php
PrivatePHPCoder Oct 7, 2023
a069071
Merge branch 'NewLayout' of https://github.com/RTX2070/Ilch-fork into…
PrivatePHPCoder Oct 7, 2023
ef5d62a
Update index.php
PrivatePHPCoder Oct 7, 2023
7c6944e
Update composer.json
PrivatePHPCoder Oct 7, 2023
89fbbec
Fix errors in dialog when other user got deleted (#814)
blackcoder87 Oct 8, 2023
2d9aaf1
Fix errors after deleting logged in user (#816)
blackcoder87 Oct 8, 2023
459ba4b
Delete possibly orphaned posts and topics (#817)
blackcoder87 Oct 8, 2023
fd26d0b
Einige Änderungen
PrivatePHPCoder Oct 8, 2023
076512e
Merge branch 'IlchCMS:master' into NewLayout
Oct 8, 2023
9257ffe
Update Vote, Birthday, Event,Newsletter, Job (#818)
Slipi85 Oct 8, 2023
6706800
Merge branch 'master' into UpdateToBootstrap5
blackcoder87 Oct 8, 2023
c78d89c
Merge pull request #1 from RTX2070/NewLayout
Oct 9, 2023
5a164e7
Dialog: fix wrong variable name (#820)
blackcoder87 Oct 10, 2023
a40214f
Forum: fix alter table statement (#821)
blackcoder87 Oct 10, 2023
782b3ed
Merge branch 'IlchCMS:master' into NewLayout
Oct 11, 2023
875c1ff
Update config.php
Oct 13, 2023
5993164
Update main.js
PrivatePHPCoder Oct 13, 2023
bdde9ae
Update index.php
PrivatePHPCoder Oct 13, 2023
939da7f
Übersetzung
PrivatePHPCoder Oct 13, 2023
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
24 changes: 24 additions & 0 deletions application/layouts/rtx_layout01/config/config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
/**
* @copyright Ilch 2
* @package ilch
*/

namespace Layouts\rtx_layout01\Config;

class Config extends \Ilch\Config\Install
{
public $config = [
'name' => 'rtx_layout01',
'version' => '1.0.0',
'author' => 'RTX2070',
'link' => 'https://ilch.de',
'desc' => 'Bootstrap 5 Standard Layout (flexbox)',

//'modulekey' => 'Name of Module'
];

public function getUpdate($installedVersion)
{
}
}
Loading