-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a7e57c
commit 2721af6
Showing
8 changed files
with
144 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
Catatan Rilis v2410.0.0 : | ||
Catatan Rilis v2411.0.0 : | ||
|
||
### FITUR : | ||
1. Penambahan halaman stunting. (premium) | ||
2. Penambahan filter bantuan berdasarkan tahun. (premium) | ||
1. Penambahan fungsi cetak dan unduh pada halaman statistik dan bantuan. | ||
2. Penambahan fungsi cetak dan unduh pada halaman statistik kesehatan > stunting. | ||
3. Penambahan fungsi menu tipe embed. | ||
|
||
#### BUG : | ||
1. Perbaikan tampilan halaman artikel. | ||
1. Perbaikan tampilan halaman peta. | ||
|
||
### TEKNIS : | ||
1. Penyesuaian sebutan kepala dusun. (premium) | ||
### BUG : | ||
1. Perbaikan pengurutan data pada informasi publik. | ||
2. Perbaikan menu agar selalu posisi atas. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
<?php $nama_desa = ucwords(setting('sebutan_desa') . ' ' . $desa['nama_desa']); ?> | ||
|
||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title><?= $menu->nama ?> - <?= $nama_desa ?></title> | ||
<meta name="keywords" content="<?= $this->setting->website_title . ' '. $desa_title; ?>"/> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
<style> | ||
body, html { | ||
margin: 0; | ||
padding: 0; | ||
height: 100%; | ||
width: 100%; | ||
overflow: hidden; | ||
} | ||
iframe { | ||
border: none; | ||
width: 100%; | ||
height: calc(100% - 56px); | ||
display: none; | ||
} | ||
.navbar-brand { | ||
display: flex; | ||
align-items: center; | ||
} | ||
.navbar-brand img { | ||
height: 40px; | ||
margin-right: 10px; | ||
} | ||
.spinner { | ||
position: fixed; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
z-index: 1000; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<div class="spinner"> | ||
<div class="spinner-border" role="status"> | ||
<span class="visually-hidden">Memuat...</span> | ||
</div> | ||
</div> | ||
|
||
<nav class="navbar navbar-light bg-light"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" href="#"> | ||
<img src="<?= gambar_desa($desa['logo']); ?>" alt="<?= $nama_desa ?>"> | ||
<span><?= $nama_desa ?></span> | ||
</a> | ||
<button class="btn btn-primary" onclick="window.location.href='<?= site_url() ?>'"> | ||
<i class="bi bi-arrow-left"></i> Kembali | ||
</button> | ||
</div> | ||
</nav> | ||
|
||
<iframe id="contentFrame" src="<?= $menu->link ?>" scrolling="yes"></iframe> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
<script> | ||
const iframe = document.getElementById('contentFrame'); | ||
iframe.onload = function() { | ||
document.querySelector('.spinner').style.display = 'none'; | ||
iframe.style.display = 'block'; | ||
}; | ||
</script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,43 @@ | ||
<?php defined('BASEPATH') || exit('No direct script access allowed'); ?> | ||
|
||
|
||
<style> | ||
.dropdown>.dropdown-menu>.dropdown>.dropdown-menu { | ||
position: absolute; | ||
left: 100%; | ||
top: 10%; | ||
|
||
} | ||
|
||
.dropdown>.dropdown-menu>.dropdown>.dropdown-menu { | ||
display: none; | ||
background-color: #E64946; | ||
color: #FFF | ||
} | ||
</style> | ||
|
||
<nav class="navbar navbar-default" role="navigation"> | ||
<div class="container-fluid"> | ||
<div class="navbar-header"> | ||
<div class="row visible-xs"> | ||
<div class="col-xs-6 visible-xs"> | ||
<img src="<?= gambar_desa($desa['logo']); ?>" class="cardz hidden-lg hidden-md" width="30" align="left" alt="<?= $desa['nama_desa']; ?>"/> | ||
</div> | ||
<div class="col-xs-6 visible-xs"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
</div> | ||
<div class="col-xs-6 visible-xs"> | ||
<img src="<?= gambar_desa($desa['logo']); ?>" class="cardz hidden-lg hidden-md" width="30" align="left" alt="<?= $desa['nama_desa']; ?>" /> | ||
</div> | ||
<div class="col-xs-6 visible-xs"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="navbar" class="navbar-collapse collapse"> | ||
<ul class="nav navbar-nav custom_nav"> | ||
<li class="dropdown"><a href="<?= site_url(); ?>">Beranda</a></li> | ||
<?php createDropdownMenu(menu_tema()) ?> | ||
<?php createDropdownMenu(menu_tema()) ?> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
<style> | ||
.dropdown>.dropdown-menu>.dropdown>.dropdown-menu{ | ||
position: absolute; | ||
left: 100%; | ||
top: 10%; | ||
|
||
} | ||
.dropdown>.dropdown-menu>.dropdown:hover>.dropdown-menu{ | ||
background-color: #E64946; | ||
color: #FFF | ||
} | ||
</style> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters