Source code of filesite.io.
https://filesite.io
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
3.9 KiB
91 lines
3.9 KiB
<!DocType html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8"> |
|
<title><?php echo $pageTitle;?></title> |
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> |
|
<link href="/css/main.css?v.1.1" rel="stylesheet"> |
|
<!--for theme googleimage--> |
|
<link href="/css/blueimp-gallery.min.css" rel="stylesheet"> |
|
<link href="/css/github-markdown-dark.css" rel="stylesheet"> |
|
<link href="/css/googleimage.css?v<?=time()?>" rel="stylesheet"> |
|
<style> |
|
<?php if (!empty(FSC::$app['config']['googleimage']['imageHeight'])) { ?> |
|
.img-item img{height: <?php echo FSC::$app['config']['googleimage']['imageHeight']; ?>px;} |
|
<?php } ?> |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<div class="header"> |
|
<a href="/" class="logo"> |
|
<img src="/content/machete_icon.png" alt="Logo of FileSite.io" height="34"> |
|
FileSite.io |
|
</a> |
|
<a href="#modal_about" role="button" class="about btn-open"> |
|
<svg width="24" height="24" viewBox="0 0 24 24" focusable="false"><path d="M13.85 22.25h-3.7c-.74 0-1.36-.54-1.45-1.27l-.27-1.89c-.27-.14-.53-.29-.79-.46l-1.8.72c-.7.26-1.47-.03-1.81-.65L2.2 15.53c-.35-.66-.2-1.44.36-1.88l1.53-1.19c-.01-.15-.02-.3-.02-.46 0-.15.01-.31.02-.46l-1.52-1.19c-.59-.45-.74-1.26-.37-1.88l1.85-3.19c.34-.62 1.11-.9 1.79-.63l1.81.73c.26-.17.52-.32.78-.46l.27-1.91c.09-.7.71-1.25 1.44-1.25h3.7c.74 0 1.36.54 1.45 1.27l.27 1.89c.27.14.53.29.79.46l1.8-.72c.71-.26 1.48.03 1.82.65l1.84 3.18c.36.66.2 1.44-.36 1.88l-1.52 1.19c.01.15.02.3.02.46s-.01.31-.02.46l1.52 1.19c.56.45.72 1.23.37 1.86l-1.86 3.22c-.34.62-1.11.9-1.8.63l-1.8-.72c-.26.17-.52.32-.78.46l-.27 1.91c-.1.68-.72 1.22-1.46 1.22zm-3.23-2h2.76l.37-2.55.53-.22c.44-.18.88-.44 1.34-.78l.45-.34 2.38.96 1.38-2.4-2.03-1.58.07-.56c.03-.26.06-.51.06-.78s-.03-.53-.06-.78l-.07-.56 2.03-1.58-1.39-2.4-2.39.96-.45-.35c-.42-.32-.87-.58-1.33-.77l-.52-.22-.37-2.55h-2.76l-.37 2.55-.53.21c-.44.19-.88.44-1.34.79l-.45.33-2.38-.95-1.39 2.39 2.03 1.58-.07.56a7 7 0 0 0-.06.79c0 .26.02.53.06.78l.07.56-2.03 1.58 1.38 2.4 2.39-.96.45.35c.43.33.86.58 1.33.77l.53.22.38 2.55z"></path><circle cx="12" cy="12" r="3.5"></circle></svg> |
|
</a> |
|
</div> |
|
|
|
<?php |
|
//### Render view file |
|
$viewFile = __DIR__ . '/../' . FSC::$app['controller'] . '/' . $viewName . '.php'; |
|
include_once $viewFile; |
|
?> |
|
|
|
<div class="footer"> |
|
<?php if (!empty(FSC::$app['config']['theme'])) { ?> |
|
Theme name <strong><?php echo FSC::$app['config']['theme']; ?></strong> |
|
<br> |
|
<?php } ?> |
|
©FSC 2022 - execute time: {page_time_cost} ms |
|
</div> |
|
|
|
<!-- The Gallery as lightbox dialog, should be a document body child element --> |
|
<div |
|
id="blueimp-gallery" |
|
class="blueimp-gallery blueimp-gallery-controls" |
|
aria-label="image gallery" |
|
aria-modal="true" |
|
role="dialog" |
|
> |
|
<div class="slides" aria-live="polite"></div> |
|
<h3 class="title"></h3> |
|
<a |
|
class="prev" |
|
aria-controls="blueimp-gallery" |
|
aria-label="previous slide" |
|
aria-keyshortcuts="ArrowLeft" |
|
></a> |
|
<a |
|
class="next" |
|
aria-controls="blueimp-gallery" |
|
aria-label="next slide" |
|
aria-keyshortcuts="ArrowRight" |
|
></a> |
|
<a |
|
class="close" |
|
aria-controls="blueimp-gallery" |
|
aria-label="close" |
|
aria-keyshortcuts="Escape" |
|
></a> |
|
<a |
|
class="play-pause" |
|
aria-controls="blueimp-gallery" |
|
aria-label="play slideshow" |
|
aria-keyshortcuts="Space" |
|
aria-pressed="false" |
|
role="button" |
|
></a> |
|
<ol class="indicator"></ol> |
|
</div> |
|
|
|
<script src="/js/jquery-3.6.0.min.js"></script> |
|
<script src="/js/js.cookie.min.js"></script> |
|
<script src="/js/main.js?v.1.0"></script> |
|
<!--for theme googleimage--> |
|
<script src="/js/blueimp-gallery.min.js"></script> |
|
<script src="/js/googleimage.js?v<?=time()?>"></script> |
|
</body> |
|
</html>
|
|
|