1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-08 14:16:46 +02:00

Update default theme

This commit is contained in:
Awilum
2018-03-14 22:08:26 +03:00
parent 21bc30ec3a
commit 618fbc8323
4 changed files with 33 additions and 12 deletions

View File

@@ -1,3 +1,9 @@
<?php Theme::getTemplate('partials/tail'); ?>
<?php $this->rawilum['themes']->getTemplate('partials/tail'); ?>
<div class="powered">
Powered by <a href="http://rawilum.org">Rawilum</a>
</div>
</main>
</body>
</html>

View File

@@ -6,18 +6,19 @@
<meta name="description" content="">
<meta name="author" content="">
<?php Action::run('theme_meta'); ?>
<?php $this->rawilum['events']->dispatch('theme_meta'); ?>
<link rel="shortcut icon" href="<?php echo Url::getBase(); ?>/favicon.ico">
<link rel="shortcut icon" href="<?php echo Url::getBase(); ?>/favicon.ico">
<title><?php echo Config::get('site.title'); ?> | <?php echo Pages::getCurrentPage()['title']; ?></title>
<title><?php echo $this->rawilum['config']->get('site.title'); ?> | <?php echo $page['title']; ?></title>
<!-- Bootstrap core CSS -->
<link href="<?php echo Url::getBase(); ?>/site/themes/<?php echo Config::get('site.theme'); ?>/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="<?php echo Url::getBase(); ?>/site/themes/<?php echo $this->rawilum['config']->get('site.theme'); ?>/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="<?php echo Url::getBase(); ?>/site/themes/<?php echo Config::get('site.theme'); ?>/assets/css/theme.css" rel="stylesheet">
<?php Action::run('theme_header'); ?>
<link href="<?php echo Url::getBase(); ?>/site/themes/<?php echo $this->rawilum['config']->get('site.theme'); ?>/assets/css/theme.css" rel="stylesheet">
<?php $this->rawilum['events']->dispatch('theme_header'); ?>
</head>
<body>
<?php Theme::getTemplate('partials/navigation'); ?>
<?php $this->rawilum['themes']->getTemplate('partials/navigation'); ?>
<main role="main" class="container content">

View File

@@ -1 +1,15 @@
navigation here
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="#"><?php echo $this->rawilum['config']->get('site.title'); ?></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link <?php if (Url::getUriSegment(0) == 'home' || Url::getUriSegment(0) == '') echo 'active'; ?>" href="<?php echo Url::getBase(); ?>">Home</a>
</li>
</ul>
</div>
</div>
</nav>

View File

@@ -1,3 +1,3 @@
<script src="<?php echo Url::getBase(); ?>/site-katerinasitnikova/themes/<?php echo Config::get('site.theme'); ?>/node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="<?php echo Url::getBase(); ?>/site-katerinasitnikova/themes/<?php echo Config::get('site.theme'); ?>/node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<?php Action::run('theme_footer'); ?>
<script src="<?php echo Url::getBase(); ?>/site/themes/<?php echo $this->rawilum['config']->get('site.theme'); ?>/node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="<?php echo Url::getBase(); ?>/site/themes/<?php echo $this->rawilum['config']->get('site.theme'); ?>/node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<?php $this->rawilum['events']->dispatch('theme_footer'); ?>