mirror of
https://github.com/monstra-cms/monstra.git
synced 2025-08-29 16:00:09 +02:00
#431 initial commit for MONSTRA 4
This commit is contained in:
0
site/themes/default/assets/css/theme.css
Executable file
0
site/themes/default/assets/css/theme.css
Executable file
BIN
site/themes/default/assets/img/morfy-logo.png
Executable file
BIN
site/themes/default/assets/img/morfy-logo.png
Executable file
Binary file not shown.
After Width: | Height: | Size: 5.2 KiB |
13
site/themes/default/default.yml
Executable file
13
site/themes/default/default.yml
Executable file
@@ -0,0 +1,13 @@
|
||||
name: Default
|
||||
version: 1.0.0
|
||||
description: Default Monstra theme
|
||||
author:
|
||||
name: Sergey Romanenko
|
||||
email: awilum@msn.com
|
||||
url: https://github.com/Awilum
|
||||
homepage: https://github.com/Monstra/Monstra
|
||||
bugs: https://github.com/Monstra/Monstra/issues
|
||||
license: MIT
|
||||
|
||||
# Theme settings
|
||||
enabled: true
|
3
site/themes/default/index.php
Executable file
3
site/themes/default/index.php
Executable file
@@ -0,0 +1,3 @@
|
||||
<?php Theme::getTemplate('partials/head'); ?>
|
||||
index
|
||||
<?php Theme::getTemplate('partials/footer'); ?>
|
3
site/themes/default/partials/footer.php
Executable file
3
site/themes/default/partials/footer.php
Executable file
@@ -0,0 +1,3 @@
|
||||
<?php Theme::getTemplate('tail'); ?>
|
||||
</body>
|
||||
</html>
|
18
site/themes/default/partials/head.php
Executable file
18
site/themes/default/partials/head.php
Executable file
@@ -0,0 +1,18 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="icon" href="../../../../favicon.ico">
|
||||
|
||||
<title>Cover Template for Bootstrap</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="../../../../dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="cover.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
1
site/themes/default/partials/navigation.php
Executable file
1
site/themes/default/partials/navigation.php
Executable file
@@ -0,0 +1 @@
|
||||
navigation here
|
5
site/themes/default/partials/tail.php
Executable file
5
site/themes/default/partials/tail.php
Executable file
@@ -0,0 +1,5 @@
|
||||
{* Bootstrap core JavaScript *}
|
||||
{* Placed at the end of the document so the pages load faster *}
|
||||
<script src="<?php echo Url::getBase(); ?>/themes/<?php echo Config::get('site.theme'); ?>/bower_components/jquery/dist/jquery.min.js"></script>
|
||||
<script src="<?php echo Url::getBase(); ?>}/themes/<?php echo Config::get('site.theme'); ?>/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
|
||||
<?php Action::run('theme_footer'); ?>
|
Reference in New Issue
Block a user