-
Notifications
You must be signed in to change notification settings - Fork 7
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
0649fb5
commit 9118ab6
Showing
6 changed files
with
493 additions
and
405 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,11 +1,9 @@ | ||
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 menu versi mobile. | ||
|
||
### TEKNIS : | ||
1. Penyesuaian sebutan kepala dusun. (premium) | ||
### BUG : | ||
1. Perbaikan pengurutan data pada informasi publik. |
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/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/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/bootstrap@5.3.0-alpha1/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
Oops, something went wrong.