401
22 |Unauthorized
23 |Access to this resource is denied.
24 | 25 | 26 | Return to Dashboard 27 | 28 |├── !TEMPLATE ├── startbootstrap-clean-blog-gh-pages (1) │ └── startbootstrap-clean-blog-gh-pages │ │ ├── about.html │ │ ├── assets │ │ ├── favicon.ico │ │ └── img │ │ │ ├── about-bg.jpg │ │ │ ├── contact-bg.jpg │ │ │ ├── home-bg.jpg │ │ │ ├── post-bg.jpg │ │ │ └── post-sample-image.jpg │ │ ├── contact.html │ │ ├── css │ │ └── styles.css │ │ ├── index.html │ │ ├── js │ │ └── scripts.js │ │ └── post.html └── startbootstrap-sb-admin-gh-pages (1) │ └── startbootstrap-sb-admin-gh-pages │ ├── 401.html │ ├── 404.html │ ├── 500.html │ ├── assets │ ├── demo │ │ ├── chart-area-demo.js │ │ ├── chart-bar-demo.js │ │ ├── chart-pie-demo.js │ │ └── datatables-demo.js │ └── img │ │ └── error-404-monochrome.svg │ ├── charts.html │ ├── css │ └── styles.css │ ├── index.html │ ├── js │ ├── datatables-simple-demo.js │ └── scripts.js │ ├── layout-sidenav-light.html │ ├── layout-static.html │ ├── login.html │ ├── password.html │ ├── register.html │ └── tables.html ├── LICENSE ├── README.md ├── app ├── .htaccess ├── Common.php ├── Config │ ├── App.php │ ├── Autoload.php │ ├── Boot │ │ ├── development.php │ │ ├── production.php │ │ └── testing.php │ ├── CURLRequest.php │ ├── Cache.php │ ├── Constants.php │ ├── ContentSecurityPolicy.php │ ├── Cookie.php │ ├── Database.php │ ├── DocTypes.php │ ├── Email.php │ ├── Encryption.php │ ├── Events.php │ ├── Exceptions.php │ ├── Feature.php │ ├── Filters.php │ ├── ForeignCharacters.php │ ├── Format.php │ ├── Generators.php │ ├── Honeypot.php │ ├── Images.php │ ├── Kint.php │ ├── Logger.php │ ├── Migrations.php │ ├── Mimes.php │ ├── Modules.php │ ├── Pager.php │ ├── Paths.php │ ├── Publisher.php │ ├── Routes.php │ ├── Security.php │ ├── Services.php │ ├── Toolbar.php │ ├── UserAgents.php │ ├── Validation.php │ └── View.php ├── Controllers │ ├── Admin │ │ ├── Admin.php │ │ ├── Akun.php │ │ ├── Article.php │ │ ├── Page.php │ │ └── Socials.php │ ├── Article.php │ ├── BaseController.php │ ├── Contact.php │ ├── Home.php │ └── Page.php ├── Database │ ├── Migrations │ │ ├── .gitkeep │ │ ├── 2022-03-06-025343_Admin.php │ │ ├── 2022-03-09-084945_ModifyColumnTokenAdmin.php │ │ ├── 2022-03-10-020932_Posts.php │ │ └── 2022-03-14-230650_Konfigurasi.php │ └── Seeds │ │ ├── .gitkeep │ │ └── Admin.php ├── Filters │ ├── .gitkeep │ ├── AuthFilter.php │ └── NoAuthFilter.php ├── Helpers │ ├── .gitkeep │ └── global_fungsi_helper.php ├── Language │ ├── .gitkeep │ └── en │ │ └── Validation.php ├── Libraries │ └── .gitkeep ├── Models │ ├── .gitkeep │ ├── AdminModel.php │ ├── KonfigurasiModel.php │ └── PostsModel.php ├── ThirdParty │ └── .gitkeep ├── Validations │ └── CustomRules.php ├── Views │ ├── admin │ │ ├── v_akun.php │ │ ├── v_article.php │ │ ├── v_article_tambah.php │ │ ├── v_login.php │ │ ├── v_lupapassword.php │ │ ├── v_page.php │ │ ├── v_page_tambah.php │ │ ├── v_resetpassword.php │ │ ├── v_socials.php │ │ ├── v_template_footer.php │ │ └── v_template_header.php │ ├── depan │ │ ├── v_article.php │ │ ├── v_contact.php │ │ ├── v_home.php │ │ ├── v_page.php │ │ ├── v_template_footer.php │ │ └── v_template_header.php │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ │ └── html │ │ │ ├── debug.css │ │ │ ├── debug.js │ │ │ ├── error_404.php │ │ │ ├── error_exception.php │ │ │ └── production.php │ ├── pager │ │ ├── datatable.php │ │ └── depan.php │ └── welcome_message.php └── index.html ├── builds ├── ci-blog.sql ├── composer.json ├── composer.lock ├── env ├── phpunit.xml.dist ├── public ├── .htaccess ├── admin │ ├── assets │ │ ├── demo │ │ │ ├── chart-area-demo.js │ │ │ ├── chart-bar-demo.js │ │ │ ├── chart-pie-demo.js │ │ │ └── datatables-demo.js │ │ └── img │ │ │ └── error-404-monochrome.svg │ ├── css │ │ └── styles.css │ └── js │ │ ├── datatables-simple-demo.js │ │ └── scripts.js ├── depan │ ├── assets │ │ ├── favicon.ico │ │ └── img │ │ │ ├── about-bg.jpg │ │ │ ├── contact-bg.jpg │ │ │ ├── home-bg.jpg │ │ │ ├── post-bg.jpg │ │ │ └── post-sample-image.jpg │ ├── css │ │ └── styles.css │ └── js │ │ └── scripts.js ├── favicon.ico ├── index.php ├── robots.txt └── upload │ ├── 1645139063_3ced943093949cec417c.png │ ├── 1645174261_e82e3b061f86d54a74f3.png │ ├── 1645958853_bdbddfd75a9cd63dc43a.jpg │ ├── 1645958895_9d5a7e8dff39e728071a.jpg │ ├── 1645960470_6cedb616dbe5cf9f09a7.jpg │ ├── 1645970298_297715df389c82d33746.jpg │ ├── 1645970333_df7d334eaf60dff975e2.jpg │ ├── 1646010775_2797fecdd1527a6b204d.jpg │ ├── 1646142591_4a84bd8228241b838fa2.jpg │ ├── 1646142788_f559648ef88dcf0c5fad.jpg │ ├── 1646142889_2651d273d09e661d4a80.jpg │ ├── 1646142999_edfc4fa32b42bc626b0b.jpg │ ├── 1647017244_ca38badf5756983a1263.jpg │ ├── 1647305894_bd15275602a65ba531d6.jpg │ ├── 1647306450_4ee7eda4650836ae4795.jpg │ ├── 1647447310_22cac2fa1ce6122eec28.jpg │ └── index.html ├── spark ├── tests ├── README.md ├── _support │ ├── Database │ │ ├── Migrations │ │ │ └── 2020-02-22-222222_example_migration.php │ │ └── Seeds │ │ │ └── ExampleSeeder.php │ ├── Libraries │ │ └── ConfigReader.php │ └── Models │ │ └── ExampleModel.php ├── database │ └── ExampleDatabaseTest.php ├── session │ └── ExampleSessionTest.php └── unit │ └── HealthTest.php └── writable ├── .htaccess ├── cache └── index.html ├── logs └── index.html ├── session └── index.html └── uploads └── index.html /!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirumahrafif/ci4-blog/76b4593232d39e7fec95936bb37a2fbece05bf32/!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/favicon.ico -------------------------------------------------------------------------------- /!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/about-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirumahrafif/ci4-blog/76b4593232d39e7fec95936bb37a2fbece05bf32/!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/about-bg.jpg -------------------------------------------------------------------------------- /!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/contact-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirumahrafif/ci4-blog/76b4593232d39e7fec95936bb37a2fbece05bf32/!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/contact-bg.jpg -------------------------------------------------------------------------------- /!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/home-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirumahrafif/ci4-blog/76b4593232d39e7fec95936bb37a2fbece05bf32/!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/home-bg.jpg -------------------------------------------------------------------------------- /!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/post-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirumahrafif/ci4-blog/76b4593232d39e7fec95936bb37a2fbece05bf32/!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/post-bg.jpg -------------------------------------------------------------------------------- /!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/post-sample-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirumahrafif/ci4-blog/76b4593232d39e7fec95936bb37a2fbece05bf32/!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/assets/img/post-sample-image.jpg -------------------------------------------------------------------------------- /!TEMPLATE/startbootstrap-clean-blog-gh-pages (1)/startbootstrap-clean-blog-gh-pages/js/scripts.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - Clean Blog v6.0.7 (https://startbootstrap.com/theme/clean-blog) 3 | * Copyright 2013-2021 Start Bootstrap 4 | * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-clean-blog/blob/master/LICENSE) 5 | */ 6 | window.addEventListener('DOMContentLoaded', () => { 7 | let scrollPos = 0; 8 | const mainNav = document.getElementById('mainNav'); 9 | const headerHeight = mainNav.clientHeight; 10 | window.addEventListener('scroll', function() { 11 | const currentTop = document.body.getBoundingClientRect().top * -1; 12 | if ( currentTop < scrollPos) { 13 | // Scrolling Up 14 | if (currentTop > 0 && mainNav.classList.contains('is-fixed')) { 15 | mainNav.classList.add('is-visible'); 16 | } else { 17 | console.log(123); 18 | mainNav.classList.remove('is-visible', 'is-fixed'); 19 | } 20 | } else { 21 | // Scrolling Down 22 | mainNav.classList.remove(['is-visible']); 23 | if (currentTop > headerHeight && !mainNav.classList.contains('is-fixed')) { 24 | mainNav.classList.add('is-fixed'); 25 | } 26 | } 27 | scrollPos = currentTop; 28 | }); 29 | }) 30 | -------------------------------------------------------------------------------- /!TEMPLATE/startbootstrap-sb-admin-gh-pages (1)/startbootstrap-sb-admin-gh-pages/401.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 |Unauthorized
23 |Access to this resource is denied.
24 | 25 | 26 | Return to Dashboard 27 | 28 |This requested URL was not found on this server.
23 | 24 | 25 | Return to Dashboard 26 | 27 |