1
0
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:
Awilum
2018-02-27 23:31:11 +03:00
parent 9a19078870
commit acfa870de9
46 changed files with 1760 additions and 0 deletions

View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

13
site/themes/default/default.yml Executable file
View 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
View File

@@ -0,0 +1,3 @@
<?php Theme::getTemplate('partials/head'); ?>
index
<?php Theme::getTemplate('partials/footer'); ?>

View File

@@ -0,0 +1,3 @@
<?php Theme::getTemplate('tail'); ?>
</body>
</html>

View 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>

View File

@@ -0,0 +1 @@
navigation here

View 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'); ?>