@ -1,46 +0,0 @@
|
||||
#
|
||||
# SIMPLE - apache directory listing theme
|
||||
#
|
||||
# (c) 2017 Miroslav Pokorný
|
||||
# https://miroslavpokorny.com/simple-apache-directory-listing-theme
|
||||
#
|
||||
|
||||
Alias /simple/ /var/www/simple/
|
||||
|
||||
<Directory /var/www/>
|
||||
<IfModule mod_autoindex.c>
|
||||
Options Indexes FollowSymLinks
|
||||
IndexOptions +FancyIndexing +VersionSort +HTMLTable +FoldersFirst +IconsAreLinks +IgnoreCase +SuppressDescription +SuppressHTMLPreamble +XHTML +IconWidth=16 +IconHeight=16 +NameWidth=*
|
||||
IndexOrderDefault Ascending Name
|
||||
HeaderName /simple/header.html
|
||||
ReadmeName /simple/footer.html
|
||||
DefaultIcon /simple/icons/document.png
|
||||
AddIcon /simple/icons/arrow-curve-180.png ..
|
||||
AddIcon /simple/icons/folder.png ^^DIRECTORY^^
|
||||
AddIcon /simple/icons/document-text.png README INSTALL
|
||||
AddIcon /simple/icons/application.png .exe .app
|
||||
AddIcon /simple/icons/box.png .tar .tgz .tbz .tbz2 .bundle .rar .z .gz .zip .7z
|
||||
AddIcon /simple/icons/database.png .db .sqlite .dat
|
||||
AddIcon /simple/icons/disc.png .iso .image
|
||||
AddIcon /simple/icons/document-access.png .ade .adp .adn .accdb .accdr .accdt .mdb .mda .mdn .mdt .mdw .mdf .mde .accde .mam .maq .mar .mat .maf
|
||||
AddIcon /simple/icons/document-binary.png .bin .hqx .uu
|
||||
AddIcon /simple/icons/document-code.png .html .htm .htx .htmls .dhtml .phtml .shtml .inc .ssi .c .cc .css .h .rb .js .rb .pl .py .sh .shar .csh .ksh .tcl .as
|
||||
AddIcon /simple/icons/document-excel.png .xls .xla .xlb .xlc .xld .xlk .xll .xlm .xlt .xlv .xlw .xlsx .xlsm .xlsb .xltm .xlam
|
||||
AddIcon /simple/icons/document-excel-csv.png .csv
|
||||
AddIcon /simple/icons/document-flash.png .fla .flv .swf .swt .swc
|
||||
AddIcon /simple/icons/document-illustrator.png .ai .eps .epsf .epsi
|
||||
AddIcon /simple/icons/document-number.png .conf
|
||||
AddIcon /simple/icons/document-pdf.png .pdf
|
||||
AddIcon /simple/icons/document-pdf-text.png .ps
|
||||
AddIcon /simple/icons/document-photoshop.png .psd
|
||||
AddIcon /simple/icons/document-php.png .php .phps .php5 .php3 .php4 .phtm
|
||||
AddIcon /simple/icons/document-powerpoint.png .ppt .pptx .ppz .pot .pwz .ppa .pps .pow
|
||||
AddIcon /simple/icons/document-tex.png .tex .dvi
|
||||
AddIcon /simple/icons/document-text.png .txt
|
||||
AddIcon /simple/icons/document-word.png .docx .docm .doc .dotx .dotm .dot .rtf
|
||||
AddIconByType (IMG,/simple/icons/image.png) image/*
|
||||
AddIconByType (SND,/simple/icons/music.png) audio/*
|
||||
AddIconByType (TXT,/simple/icons/document-text.png) text/*
|
||||
AddIconByType (VID,/simple/icons/film.png) video/*
|
||||
</ifModule>
|
||||
</Directory>
|
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 10 KiB |
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/icons/mstile-150x150.png"/>
|
||||
<TileColor>#ffffff</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 2.3 KiB |
@ -1,12 +0,0 @@
|
||||
{
|
||||
"name": "Apache",
|
||||
"icons": [
|
||||
{
|
||||
"src": "\/icons\/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image\/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 1.8 KiB |
@ -1,41 +0,0 @@
|
||||
</div>
|
||||
<div class="footer">
|
||||
<a href="https://miroslavpokorny.com/simple-apache-directory-listing-theme"></a>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
var ignoreDirectories = 0; // set how many directories should be ignored
|
||||
var ignoreAsNoLink = false; // set whether to ignore as 'do not display' or ignore as 'no links in breadcrub, but visible'
|
||||
|
||||
var path = document.location.pathname;
|
||||
var segments = path.split("/");
|
||||
var breadcrumbs = '/ ';
|
||||
var currentPath = "/";
|
||||
var homeLink = "/";
|
||||
for (var i = 0; i<segments.length; i++) {
|
||||
if (segments[i] != '') {
|
||||
currentPath += segments[i] + '/';
|
||||
if (ignoreDirectories >= i) {
|
||||
if (ignoreAsNoLink) {
|
||||
breadcrumbs += segments[i] + ' / ';
|
||||
}
|
||||
homeLink = currentPath;
|
||||
} else {
|
||||
breadcrumbs += '<a href="' + currentPath + '">' + segments[i] + '</a> / ';
|
||||
}
|
||||
}
|
||||
}
|
||||
if (ignoreDirectories !== 0) {
|
||||
document.getElementById('homelink').setAttribute('href', homeLink);
|
||||
if (path === homeLink) {
|
||||
document.querySelector('tr:nth-child(3)').remove();
|
||||
}
|
||||
}
|
||||
var elements = document.getElementsByClassName('header__breadcrumbs');
|
||||
var n = elements.length;
|
||||
for (i = 0; i < n; i++) {
|
||||
var e = elements[i];
|
||||
e.innerHTML = breadcrumbs;
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -1,26 +0,0 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/simple/favicons/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" href="/simple/favicons/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/simple/favicons/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="/simple/favicons/manifest.json">
|
||||
<link rel="mask-icon" href="/simple/favicons/safari-pinned-tab.svg" color="#b33333">
|
||||
<link rel="shortcut icon" href="/simple/favicons/favicon.ico">
|
||||
<meta name="msapplication-config" content="/simple/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<link rel="stylesheet" href="/simple/style.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
<div class="gradient top"></div>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<div class="header__wrapper">
|
||||
<div class="header__home"><a id="homelink" href="/"></a></div>
|
||||
<div class="header__breadcrumbs">/ </div>
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
<div class="files">
|
Before Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 618 B |
Before Width: | Height: | Size: 829 B |
Before Width: | Height: | Size: 632 B |
Before Width: | Height: | Size: 508 B |
Before Width: | Height: | Size: 483 B |
Before Width: | Height: | Size: 575 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 569 B |
Before Width: | Height: | Size: 827 B |
Before Width: | Height: | Size: 672 B |
Before Width: | Height: | Size: 652 B |
Before Width: | Height: | Size: 630 B |
Before Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 672 B |
Before Width: | Height: | Size: 651 B |
Before Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 692 B |
Before Width: | Height: | Size: 650 B |
Before Width: | Height: | Size: 650 B |
Before Width: | Height: | Size: 719 B |
Before Width: | Height: | Size: 665 B |
Before Width: | Height: | Size: 717 B |
Before Width: | Height: | Size: 703 B |
Before Width: | Height: | Size: 692 B |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 592 B |
Before Width: | Height: | Size: 677 B |
Before Width: | Height: | Size: 485 B |
Before Width: | Height: | Size: 654 B |
Before Width: | Height: | Size: 476 B |
Before Width: | Height: | Size: 752 B |
Before Width: | Height: | Size: 562 B |
Before Width: | Height: | Size: 703 B |
Before Width: | Height: | Size: 522 B |
Before Width: | Height: | Size: 725 B |
Before Width: | Height: | Size: 805 B |
Before Width: | Height: | Size: 669 B |
Before Width: | Height: | Size: 376 B |
@ -1,134 +0,0 @@
|
||||
@font-face {
|
||||
font-family: 'source_sans_proregular';
|
||||
src: url("fonts/sourcesanspro-regular.woff2") format("woff2"), url("fonts/sourcesanspro-regular.woff") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal; }
|
||||
|
||||
body {
|
||||
font-family: 'source_sans_proregular', sans-serif;
|
||||
margin: 0; }
|
||||
|
||||
hr {
|
||||
display: none; }
|
||||
|
||||
a {
|
||||
color: #2a2a2a;
|
||||
text-decoration: none; }
|
||||
|
||||
.gradient {
|
||||
background: #ec9232;
|
||||
background: -moz-linear-gradient(left, #ec9232 0%, #d14d3a 25%, #c3233f 50%, #a5235a 75%, #2f2762 100%);
|
||||
background: -webkit-linear-gradient(left, #ec9232 0%, #d14d3a 25%, #c3233f 50%, #a5235a 75%, #2f2762 100%);
|
||||
background: linear-gradient(to right, #ec9232 0%, #d14d3a 25%, #c3233f 50%, #a5235a 75%, #2f2762 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec9232', endColorstr='#2f2762',GradientType=1 );
|
||||
height: 1px;
|
||||
margin: 0 auto; }
|
||||
.gradient.top {
|
||||
left: 0;
|
||||
max-width: 100%;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 100%; }
|
||||
|
||||
.header {
|
||||
background: #f9f9f9;
|
||||
margin: 0 auto;
|
||||
clear: both; }
|
||||
.header br {
|
||||
clear: both;
|
||||
visibility: hidden; }
|
||||
.header__wrapper {
|
||||
clear: both;
|
||||
margin: 0 auto;
|
||||
max-width: 900px;
|
||||
position: relative;
|
||||
width: 85%; }
|
||||
@media screen and (max-width: 600px) {
|
||||
.header__wrapper {
|
||||
width: 100%; } }
|
||||
.header__home {
|
||||
display: inline-block;
|
||||
left: 0;
|
||||
padding: 13px 15px 9px;
|
||||
position: absolute;
|
||||
top: 2px; }
|
||||
.header__breadcrumbs {
|
||||
clear: both;
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
height: 18px;
|
||||
margin-bottom: 14px;
|
||||
margin-left: 46px;
|
||||
padding-top: 14px;
|
||||
overflow: hidden; }
|
||||
.header__breadcrumbs a:hover {
|
||||
text-decoration: underline; }
|
||||
.header #homelink {
|
||||
background: url("icons/home.png") no-repeat;
|
||||
display: block;
|
||||
height: 16px;
|
||||
width: 16px; }
|
||||
|
||||
.files {
|
||||
margin-top: 1.3rem; }
|
||||
.files table {
|
||||
border-collapse: collapse;
|
||||
margin: 0 auto;
|
||||
max-width: 900px;
|
||||
width: 85%; }
|
||||
@media screen and (max-width: 600px) {
|
||||
.files table {
|
||||
width: 100%; } }
|
||||
.files table tr {
|
||||
background: transparent;
|
||||
border-bottom: 1px solid #e9e9e9;
|
||||
border-top: 1px solid #e9e9e9; }
|
||||
.files table tr:nth-child(2), .files table tr:nth-child(1), .files table tr:last-child {
|
||||
display: none; }
|
||||
.files table tr:nth-child(2) {
|
||||
border-bottom: 1px white solid; }
|
||||
.files table tr:nth-child(3) {
|
||||
border-top: 1px white solid; }
|
||||
.files table tr:hover td {
|
||||
background: #f9fdff;
|
||||
border-top: #d2f4ff 1px solid;
|
||||
border-bottom: #d2f4ff 1px solid;
|
||||
z-index: 999; }
|
||||
.files table tr td {
|
||||
font-size: 14px;
|
||||
padding: 0; }
|
||||
.files table tr td:nth-child(1) a,
|
||||
.files table tr td:nth-child(2) a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%; }
|
||||
.files table tr td:nth-child(1) {
|
||||
width: 10px; }
|
||||
.files table tr td:nth-child(1) a {
|
||||
width: 16px;
|
||||
padding: 7px 15px 3px 15px; }
|
||||
.files table tr td:nth-child(2) {
|
||||
line-height: 1rem; }
|
||||
.files table tr td:nth-child(2) a {
|
||||
padding: 6px 0; }
|
||||
.files table tr th:nth-child(3),
|
||||
.files table tr td:nth-child(3) {
|
||||
background: lightsteelblue;
|
||||
display: none; }
|
||||
.files table tr td:nth-child(4) {
|
||||
width: 10px;
|
||||
padding: 0.4rem 15px 0.2rem 20px; }
|
||||
@media screen and (max-width: 600px) {
|
||||
.files table tr td:nth-child(4) {
|
||||
display: none; } }
|
||||
|
||||
.footer {
|
||||
padding-top: 1.2rem;
|
||||
padding-bottom: 1.0rem;
|
||||
text-align: center; }
|
||||
.footer a {
|
||||
cursor: default;
|
||||
background: url("favicons/logo28x28.png") no-repeat;
|
||||
display: inline-block;
|
||||
height: 28px;
|
||||
width: 28px; }
|
@ -1,162 +0,0 @@
|
||||
@font-face {
|
||||
font-family: 'source_sans_proregular';
|
||||
src: url('fonts/sourcesanspro-regular.woff2') format('woff2'),
|
||||
url('fonts/sourcesanspro-regular.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
body {
|
||||
font-family: 'source_sans_proregular', sans-serif;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
hr {
|
||||
display: none;
|
||||
}
|
||||
a {
|
||||
color: #2a2a2a;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.gradient {
|
||||
background: #ec9232;
|
||||
background: -moz-linear-gradient(left, #ec9232 0%, #d14d3a 25%, #c3233f 50%, #a5235a 75%, #2f2762 100%);
|
||||
background: -webkit-linear-gradient(left, #ec9232 0%,#d14d3a 25%,#c3233f 50%,#a5235a 75%,#2f2762 100%);
|
||||
background: linear-gradient(to right, #ec9232 0%,#d14d3a 25%,#c3233f 50%,#a5235a 75%,#2f2762 100%);
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec9232', endColorstr='#2f2762',GradientType=1 );
|
||||
height: 1px;
|
||||
margin: 0 auto;
|
||||
&.top {
|
||||
left: 0;
|
||||
max-width: 100%;
|
||||
position: fixed;
|
||||
top:0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.header {
|
||||
background: #f9f9f9;
|
||||
margin: 0 auto;
|
||||
clear: both;
|
||||
br {
|
||||
clear: both;
|
||||
visibility: hidden;
|
||||
}
|
||||
&__wrapper {
|
||||
clear: both;
|
||||
margin: 0 auto;
|
||||
max-width: 900px;
|
||||
position: relative;
|
||||
width: 85%;
|
||||
@media screen and (max-width: 600px) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
&__home {
|
||||
display: inline-block;
|
||||
left: 0;
|
||||
padding: 13px 15px 9px;
|
||||
position: absolute;
|
||||
top: 2px;
|
||||
}
|
||||
&__breadcrumbs {
|
||||
clear: both;
|
||||
float: left;
|
||||
font-size: 14px;
|
||||
height: 18px;
|
||||
margin-bottom: 14px;
|
||||
margin-left: 46px;
|
||||
padding-top: 14px;
|
||||
overflow: hidden;
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
#homelink {
|
||||
background: url('icons/home.png') no-repeat;
|
||||
display: block;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
}
|
||||
}
|
||||
.files {
|
||||
margin-top: 1.3rem;
|
||||
table {
|
||||
border-collapse:collapse;
|
||||
margin: 0 auto;
|
||||
max-width: 900px;
|
||||
width: 85%;
|
||||
@media screen and (max-width: 600px) {
|
||||
width: 100%;
|
||||
}
|
||||
tr {
|
||||
background: transparent;
|
||||
border-bottom: 1px solid #e9e9e9;
|
||||
border-top: 1px solid #e9e9e9;
|
||||
&:nth-child(2), &:nth-child(1), &:last-child {
|
||||
display: none;
|
||||
}
|
||||
&:nth-child(2) {
|
||||
border-bottom: 1px white solid;
|
||||
}
|
||||
&:nth-child(3) {
|
||||
border-top: 1px white solid;
|
||||
}
|
||||
&:hover td {
|
||||
background: #f9fdff;
|
||||
border-top: #d2f4ff 1px solid;
|
||||
border-bottom: #d2f4ff 1px solid;
|
||||
z-index: 999;
|
||||
}
|
||||
td {
|
||||
font-size: 14px;
|
||||
padding: 0;
|
||||
}
|
||||
td:nth-child(1),
|
||||
td:nth-child(2) {
|
||||
a {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
td:nth-child(1) {
|
||||
width: 10px;
|
||||
a {
|
||||
width: 16px;
|
||||
padding: 7px 15px 3px 15px;
|
||||
}
|
||||
}
|
||||
td:nth-child(2) {
|
||||
line-height: 1rem;
|
||||
a {
|
||||
padding: 6px 0;
|
||||
}
|
||||
}
|
||||
th:nth-child(3),
|
||||
td:nth-child(3) {
|
||||
background: lightsteelblue;
|
||||
display: none;
|
||||
}
|
||||
td:nth-child(4) {
|
||||
width: 10px;
|
||||
padding: 0.4rem 15px 0.2rem 20px;
|
||||
@media screen and (max-width: 600px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.footer {
|
||||
padding-top: 1.2rem;
|
||||
padding-bottom: 1.0rem;
|
||||
text-align: center;
|
||||
a {
|
||||
cursor: default;
|
||||
background: url('favicons/logo28x28.png') no-repeat;
|
||||
display: inline-block;
|
||||
height: 28px;
|
||||
width: 28px;
|
||||
}
|
||||
}
|
@ -1,43 +0,0 @@
|
||||
#
|
||||
# SIMPLE - apache directory listing theme
|
||||
#
|
||||
# (c) 2017 Miroslav Pokorný
|
||||
# https://miroslavpokorny.com/simple-apache-directory-listing-theme
|
||||
#
|
||||
|
||||
Options +Indexes
|
||||
IndexOptions +FancyIndexing +VersionSort +HTMLTable +FoldersFirst +IconsAreLinks +IgnoreCase +SuppressDescription +XHTML +IconWidth=16 +IconHeight=16 +NameWidth=*
|
||||
HeaderName /{SIMPLE_DIRECTORY}/simple/header.html
|
||||
ReadmeName /{SIMPLE_DIRECTORY}/simple/footer.html
|
||||
IndexStyleSheet /{SIMPLE_DIRECTORY}/simple/style.css
|
||||
IndexIgnore .htaccess /simple
|
||||
IndexHeadInsert '<meta name="viewport" content="width=device-width, initial-scale=1" /><meta charset="utf-8" /><link rel="apple-touch-icon" sizes="180x180" href="/{SIMPLE_DIRECTORY}/simple/favicons/apple-touch-icon.png" /><link rel="icon" type="image/png" href="/{SIMPLE_DIRECTORY}/simple/favicons/favicon-32x32.png" sizes="32x32" /><link rel="icon" type="image/png" href="/{SIMPLE_DIRECTORY}/simple/favicons/favicon-16x16.png" sizes="16x16" /><link rel="manifest" href="/{SIMPLE_DIRECTORY}/simple/favicons/manifest.json" /><link rel="mask-icon" href="/{SIMPLE_DIRECTORY}/simple/favicons/safari-pinned-tab.svg" color="#b33333" /><link rel="shortcut icon" href="/{SIMPLE_DIRECTORY}/simple/favicons/favicon.ico" /><meta name="msapplication-config" content="/{SIMPLE_DIRECTORY}/simple/favicons/browserconfig.xml" /><meta name="theme-color" content="#ffffff" /><link rel="stylesheet" href="/{SIMPLE_DIRECTORY}/simple/style.css" />'
|
||||
IndexOrderDefault Ascending Name
|
||||
DefaultIcon /{SIMPLE_DIRECTORY}/simple/icons/document.png
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/arrow-curve-180.png ..
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/folder.png ^^DIRECTORY^^
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-text.png README INSTALL
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/application.png .exe .app
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/box.png .tar .tgz .tbz .tbz2 .bundle .rar .z .gz .zip .7z
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/database.png .db .sqlite .dat
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/disc.png .iso .image
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-access.png .ade .adp .adn .accdb .accdr .accdt .mdb .mda .mdn .mdt .mdw .mdf .mde .accde .mam .maq .mar .mat .maf
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-binary.png .bin .hqx .uu
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-code.png .html .htm .htx .htmls .dhtml .phtml .shtml .inc .ssi .c .cc .css .h .rb .js .rb .pl .py .sh .shar .csh .ksh .tcl .as
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-excel.png .xls .xla .xlb .xlc .xld .xlk .xll .xlm .xlt .xlv .xlw .xlsx .xlsm .xlsb .xltm .xlam
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-excel-csv.png .csv
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-flash.png .fla .flv .swf .swt .swc
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-illustrator.png .ai .eps .epsf .epsi
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-number.png .conf
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-pdf.png .pdf
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-pdf-text.png .ps
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-photoshop.png .psd
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-php.png .php .phps .php5 .php3 .php4 .phtm
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-powerpoint.png .ppt .pptx .ppz .pot .pwz .ppa .pps .pow
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-tex.png .tex .dvi
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-text.png .txt
|
||||
AddIcon /{SIMPLE_DIRECTORY}/simple/icons/document-word.png .docx .docm .doc .dotx .dotm .dot .rtf
|
||||
AddIconByType (IMG,/{SIMPLE_DIRECTORY}/simple/icons/image.png) image/*
|
||||
AddIconByType (SND,/{SIMPLE_DIRECTORY}/simple/icons/music.png) audio/*
|
||||
AddIconByType (TXT,/{SIMPLE_DIRECTORY}/simple/icons/document-text.png) text/*
|
||||
AddIconByType (VID,/{SIMPLE_DIRECTORY}/simple/icons/film.png) video/*
|
@ -1,43 +0,0 @@
|
||||
#
|
||||
# SIMPLE - apache directory listing theme
|
||||
#
|
||||
# (c) 2017 Miroslav Pokorný
|
||||
# https://miroslavpokorny.com/simple-apache-directory-listing-theme
|
||||
#
|
||||
|
||||
Options +Indexes
|
||||
IndexOptions +FancyIndexing +VersionSort +HTMLTable +FoldersFirst +IconsAreLinks +IgnoreCase +SuppressDescription +XHTML +IconWidth=16 +IconHeight=16 +NameWidth=*
|
||||
HeaderName /simple/header.html
|
||||
ReadmeName /simple/footer.html
|
||||
IndexStyleSheet /simple/style.css
|
||||
IndexIgnore .htaccess /simple
|
||||
IndexHeadInsert '<meta name="viewport" content="width=device-width, initial-scale=1" /><meta charset="utf-8" /><link rel="apple-touch-icon" sizes="180x180" href="/simple/favicons/apple-touch-icon.png" /><link rel="icon" type="image/png" href="/simple/favicons/favicon-32x32.png" sizes="32x32" /><link rel="icon" type="image/png" href="/simple/favicons/favicon-16x16.png" sizes="16x16" /><link rel="manifest" href="/simple/favicons/manifest.json" /><link rel="mask-icon" href="/simple/favicons/safari-pinned-tab.svg" color="#b33333" /><link rel="shortcut icon" href="/simple/favicons/favicon.ico" /><meta name="msapplication-config" content="/simple/favicons/browserconfig.xml" /><meta name="theme-color" content="#ffffff" /><link rel="stylesheet" href="/simple/style.css" />'
|
||||
IndexOrderDefault Ascending Name
|
||||
DefaultIcon /simple/icons/document.png
|
||||
AddIcon /simple/icons/arrow-curve-180.png ..
|
||||
AddIcon /simple/icons/folder.png ^^DIRECTORY^^
|
||||
AddIcon /simple/icons/document-text.png README INSTALL
|
||||
AddIcon /simple/icons/application.png .exe .app
|
||||
AddIcon /simple/icons/box.png .tar .tgz .tbz .tbz2 .bundle .rar .z .gz .zip .7z
|
||||
AddIcon /simple/icons/database.png .db .sqlite .dat
|
||||
AddIcon /simple/icons/disc.png .iso .image
|
||||
AddIcon /simple/icons/document-access.png .ade .adp .adn .accdb .accdr .accdt .mdb .mda .mdn .mdt .mdw .mdf .mde .accde .mam .maq .mar .mat .maf
|
||||
AddIcon /simple/icons/document-binary.png .bin .hqx .uu
|
||||
AddIcon /simple/icons/document-code.png .html .htm .htx .htmls .dhtml .phtml .shtml .inc .ssi .c .cc .css .h .rb .js .rb .pl .py .sh .shar .csh .ksh .tcl .as
|
||||
AddIcon /simple/icons/document-excel.png .xls .xla .xlb .xlc .xld .xlk .xll .xlm .xlt .xlv .xlw .xlsx .xlsm .xlsb .xltm .xlam
|
||||
AddIcon /simple/icons/document-excel-csv.png .csv
|
||||
AddIcon /simple/icons/document-flash.png .fla .flv .swf .swt .swc
|
||||
AddIcon /simple/icons/document-illustrator.png .ai .eps .epsf .epsi
|
||||
AddIcon /simple/icons/document-number.png .conf
|
||||
AddIcon /simple/icons/document-pdf.png .pdf
|
||||
AddIcon /simple/icons/document-pdf-text.png .ps
|
||||
AddIcon /simple/icons/document-photoshop.png .psd
|
||||
AddIcon /simple/icons/document-php.png .php .phps .php5 .php3 .php4 .phtm
|
||||
AddIcon /simple/icons/document-powerpoint.png .ppt .pptx .ppz .pot .pwz .ppa .pps .pow
|
||||
AddIcon /simple/icons/document-tex.png .tex .dvi
|
||||
AddIcon /simple/icons/document-text.png .txt
|
||||
AddIcon /simple/icons/document-word.png .docx .docm .doc .dotx .dotm .dot .rtf
|
||||
AddIconByType (IMG,/simple/icons/image.png) image/*
|
||||
AddIconByType (SND,/simple/icons/music.png) audio/*
|
||||
AddIconByType (TXT,/simple/icons/document-text.png) text/*
|
||||
AddIconByType (VID,/simple/icons/film.png) video/*
|
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 10 KiB |
@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/icons/mstile-150x150.png"/>
|
||||
<TileColor>#ffffff</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 2.3 KiB |
@ -1,12 +0,0 @@
|
||||
{
|
||||
"name": "Apache",
|
||||
"icons": [
|
||||
{
|
||||
"src": "\/icons\/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image\/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 1.8 KiB |
@ -1,39 +0,0 @@
|
||||
</div>
|
||||
<div class="footer">
|
||||
<a href="https://miroslavpokorny.com/simple-apache-directory-listing-theme"></a>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
var ignoreDirectories = 0; // set how many directories should be ignored
|
||||
var ignoreAsNoLink = false; // set whether to ignore as 'do not display' or ignore as 'no links in breadcrub, but visible'
|
||||
|
||||
var path = document.location.pathname;
|
||||
var segments = path.split("/");
|
||||
var breadcrumbs = '/ ';
|
||||
var currentPath = "/";
|
||||
var homeLink = "/";
|
||||
for (var i = 0; i<segments.length; i++) {
|
||||
if (segments[i] != '') {
|
||||
currentPath += segments[i] + '/';
|
||||
if (ignoreDirectories >= i) {
|
||||
if (ignoreAsNoLink) {
|
||||
breadcrumbs += segments[i] + ' / ';
|
||||
}
|
||||
homeLink = currentPath;
|
||||
} else {
|
||||
breadcrumbs += '<a href="' + currentPath + '">' + segments[i] + '</a> / ';
|
||||
}
|
||||
}
|
||||
}
|
||||
if (ignoreDirectories !== 0) {
|
||||
document.getElementById('homelink').setAttribute('href', homeLink);
|
||||
if (path === homeLink) {
|
||||
document.querySelector('tr:nth-child(3)').remove();
|
||||
}
|
||||
}
|
||||
var elements = document.getElementsByClassName('header__breadcrumbs');
|
||||
var n = elements.length;
|
||||
for (i = 0; i < n; i++) {
|
||||
var e = elements[i];
|
||||
e.innerHTML = breadcrumbs;
|
||||
}
|
||||
</script>
|
@ -1,10 +0,0 @@
|
||||
<div class="gradient top"></div>
|
||||
<div class="container">
|
||||
<div class="header">
|
||||
<div class="header__wrapper">
|
||||
<div class="header__home"><a id="homelink" href="/"></a></div>
|
||||
<div class="header__breadcrumbs">/ </div>
|
||||
<br />
|
||||
</div>
|
||||
</div>
|
||||
<div class="files">
|
Before Width: | Height: | Size: 341 B |
Before Width: | Height: | Size: 618 B |
Before Width: | Height: | Size: 829 B |
Before Width: | Height: | Size: 632 B |
Before Width: | Height: | Size: 508 B |
Before Width: | Height: | Size: 483 B |
Before Width: | Height: | Size: 575 B |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 569 B |
Before Width: | Height: | Size: 827 B |
Before Width: | Height: | Size: 672 B |
Before Width: | Height: | Size: 652 B |
Before Width: | Height: | Size: 630 B |
Before Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 672 B |
Before Width: | Height: | Size: 651 B |
Before Width: | Height: | Size: 702 B |
Before Width: | Height: | Size: 692 B |
Before Width: | Height: | Size: 650 B |
Before Width: | Height: | Size: 650 B |
Before Width: | Height: | Size: 719 B |
Before Width: | Height: | Size: 665 B |
Before Width: | Height: | Size: 717 B |
Before Width: | Height: | Size: 703 B |
Before Width: | Height: | Size: 692 B |
Before Width: | Height: | Size: 1.6 KiB |