unzip theme
This commit is contained in:
75
app/admin_themes/custom/layout/main.php
Normal file
75
app/admin_themes/custom/layout/main.php
Normal file
@ -0,0 +1,75 @@
|
||||
<?php
|
||||
/**
|
||||
* @var $content
|
||||
* @var string $resources
|
||||
*/
|
||||
?>
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Custom</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900" rel="stylesheet">
|
||||
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="<?=$resources?>/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="wrapper d-flex align-items-stretch">
|
||||
<nav id="sidebar">
|
||||
<div class="p-4 pt-5">
|
||||
<a href="#" class="img logo rounded-circle mb-5" style="background-image: url(/resources/admin_theme/images/logo.jpg);"></a>
|
||||
<?php \kernel\widgets\MenuWidget::create()->run(); ?>
|
||||
<div class="footer">
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<!-- Page Content -->
|
||||
<div id="content" class="p-4 p-md-5">
|
||||
|
||||
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||||
<div class="container-fluid">
|
||||
|
||||
<button type="button" id="sidebarCollapse" class="btn btn-primary">
|
||||
<i class="fa fa-bars"></i>
|
||||
<span class="sr-only">Toggle Menu</span>
|
||||
</button>
|
||||
<button class="btn btn-dark d-inline-block d-lg-none ml-auto" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<i class="fa fa-bars"></i>
|
||||
</button>
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="nav navbar-nav ml-auto">
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="#">Главня</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">О нас</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Портфолио</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Контакты</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<?= $content ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="<?=$resources?>/js/jquery.min.js"></script>
|
||||
<script src="<?=$resources?>/js/popper.js"></script>
|
||||
<script src="<?=$resources?>/js/bootstrap.min.js"></script>
|
||||
<script src="<?=$resources?>/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
12
app/admin_themes/custom/manifest.json
Normal file
12
app/admin_themes/custom/manifest.json
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"name": "Custom",
|
||||
"version": "0.1",
|
||||
"slug": "custom",
|
||||
"description": "Custom admin theme",
|
||||
"preview": "nrnv2024_640x360.jpg",
|
||||
"resource": "/resources/custom",
|
||||
"resource_path": "{RESOURCES}/custom",
|
||||
"layout": "main.php",
|
||||
"theme_path": "{APP}/admin_themes/{slug}",
|
||||
"layout_path": "{APP}/admin_themes/{slug}/layout"
|
||||
}
|
Reference in New Issue
Block a user