-
Notifications
You must be signed in to change notification settings - Fork 6
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
Showing
86 changed files
with
2,424 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# | ||
|
||
# ENABLE INDEXING | ||
Options +Indexes | ||
|
||
# INDEX OPTIONS | ||
IndexOptions +Charset=UTF-8 +FancyIndexing +IgnoreCase +FoldersFirst +XHTML +HTMLTable +SuppressRules +SuppressDescription +NameWidth=* +SuppressHTMLPreamble | ||
|
||
# HIDE /theme DIRECTORY | ||
IndexIgnore .htaccess /theme | ||
|
||
# | ||
# GENERAL ICONS (BLANK, DIRECTORY, PARENT DIRECTORY) | ||
# | ||
|
||
# | ||
# Replace {FOLDERNAME} with your directory URL eg: | ||
# If your directory is http://mywebsite.com/share/ | ||
# you would change to: | ||
# | ||
# AddIcon /share/theme/icons/blank.png ^^BLANKICON^^ | ||
# | ||
|
||
AddIcon /theme/icons/blank.png ^^BLANKICON^^ | ||
AddIcon /theme/icons/folder.png ^^DIRECTORY^^ | ||
AddIcon /theme/icons/folder-home.png .. | ||
|
||
# | ||
# EXTENSION SPECIFIC ICONS | ||
# | ||
|
||
AddIcon /theme/icons/audio.png .aif .iff .m3u .m4a .mid .mp3 .mpa .ra .wav .wma .f4a .f4b .oga .ogg | ||
AddIcon /theme/icons/bin.png .bin | ||
AddIcon /theme/icons/c.png .c | ||
AddIcon /theme/icons/calc.png .xlsx .xlsm .xltx .xltm .xlam .xlr .xls .csv | ||
AddIcon /theme/icons/css.png .css | ||
AddIcon /theme/icons/deb.png .deb | ||
AddIcon /theme/icons/doc.png .doc .docx .docm .dot .dotx .dotm .log .msg .odt .pages .rtf .tex .wpd .wps | ||
AddIcon /theme/icons/draw.png .svg | ||
AddIcon /theme/icons/eps.png .ai .eps | ||
AddIcon /theme/icons/gif.png .gif | ||
AddIcon /theme/icons/html.png .html .xhtml .shtml .htm | ||
AddIcon /theme/icons/ico.png .ico | ||
AddIcon /theme/icons/java.png .jar | ||
AddIcon /theme/icons/jpg.png .jpg .jpeg | ||
AddIcon /theme/icons/js.png .js .json | ||
AddIcon /theme/icons/markdown.png .md | ||
AddIcon /theme/icons/package.png .pkg .dmg | ||
AddIcon /theme/icons/pdf.png .pdf | ||
AddIcon /theme/icons/php.png .php .phtml | ||
AddIcon /theme/icons/png.png .png | ||
AddIcon /theme/icons/ps.png .ps | ||
AddIcon /theme/icons/psd.png .psd | ||
AddIcon /theme/icons/rar.png .rar | ||
AddIcon /theme/icons/rb.png .rb | ||
AddIcon /theme/icons/rpm.png .rpm | ||
AddIcon /theme/icons/rss.png .rss | ||
AddIcon /theme/icons/sql.png .sql | ||
AddIcon /theme/icons/tiff.png .tiff | ||
AddIcon /theme/icons/text.png .txt .nfo | ||
AddIcon /theme/icons/video.png .asf .asx .avi .flv .mkv .mov .mp4 .mpg .rm .srt .swf .vob .wmv .m4v .f4v .f4p .ogv | ||
AddIcon /theme/icons/xml.png .xml | ||
AddIcon /theme/icons/zip.png .zip | ||
DefaultIcon /theme/icons/default.png | ||
|
||
# | ||
# THEME FILES | ||
# | ||
|
||
HeaderName /theme/header.html | ||
ReadmeName /theme/footer.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Options -Indexes |
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,68 @@ | ||
.typeahead, | ||
.tt-query, | ||
.tt-hint { | ||
width: 400px; | ||
height: 30px; | ||
padding: 0 12px; | ||
border: 2px solid #ccc; | ||
font-size: 0.9em; | ||
outline: none; | ||
-webkit-border-radius: 8px; | ||
-moz-border-radius: 8px; | ||
border-radius: 8px; | ||
} | ||
|
||
.tt-query { | ||
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | ||
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | ||
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); | ||
} | ||
|
||
.tt-hint { | ||
color: #999 | ||
} | ||
|
||
.loading .tt-hint { | ||
background-image: url(../icons/loader.gif) !important; | ||
background-position: 95% center !important; | ||
background-repeat: no-repeat !important; | ||
} | ||
|
||
.tt-dropdown-menu { | ||
width: 450px; | ||
margin-top: 12px; | ||
padding: 8px 0; | ||
background-color: #fff; | ||
border: 1px solid #ccc; | ||
border: 1px solid rgba(0, 0, 0, 0.2); | ||
-webkit-border-radius: 8px; | ||
-moz-border-radius: 8px; | ||
border-radius: 8px; | ||
-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2); | ||
-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2); | ||
box-shadow: 0 5px 10px rgba(0,0,0,.2); | ||
} | ||
|
||
.tt-suggestion { | ||
padding: 3px 20px; | ||
font-size: 1.05em; | ||
line-height: 24px; | ||
cursor: pointer; | ||
} | ||
|
||
.tt-suggestion + .tt-suggestion { | ||
border-top: 1px solid #ccc; | ||
} | ||
|
||
.tt-suggestion.tt-cursor { | ||
background-color: #e0e0e0; | ||
} | ||
|
||
.tt-suggestion strong { | ||
color: #f00; | ||
font-weight: normal; | ||
} | ||
|
||
.tt-suggestion p { | ||
margin: 0; | ||
} |
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,29 @@ | ||
</div><!-- /.wrapper --> | ||
|
||
<div class="modal"> | ||
<h2>Theme Settings</h2> | ||
<ul class="colors settings" data-option="color"> | ||
<li><a href="#" data-value="light">Light</a></li> | ||
<li><a href="#" data-value="dark">Dark</a></li> | ||
</ul><!-- /#colors.colors --> | ||
|
||
<h2>Font Size</h2> | ||
<ul class="fonts settings" data-option="font"> | ||
<li><a href="#" data-value="small">Small</a></li> | ||
<li><a href="#" data-value="medium">Medium</a></li> | ||
<li><a href="#" data-value="large">Large</a></li> | ||
</ul><!-- /#fonts.fonts --> | ||
|
||
<h2>Search Depth</h2> | ||
<ul class="depth settings" data-option="depth"> | ||
<li><a href="#" data-value="0">0</a></li> | ||
<li><a href="#" data-value="1">1</a></li> | ||
<li><a href="#" data-value="2">2</a></li> | ||
<li><a href="#" data-value="3">3</a></li> | ||
</ul><!-- /#colors.colors --> | ||
|
||
<a href="#" class="link-close">Close</a> | ||
</div><!-- /#modal.modal --> | ||
|
||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<html> | ||
<head> | ||
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1"> | ||
|
||
<link rel="stylesheet" href="/theme/css/typeahead.css" type="text/css" media="all" /> | ||
<link rel="stylesheet" href="/theme/style.css" type="text/css" media="all" /> | ||
|
||
<script src="/theme/js/jquery-1.11.0.min.js" type="text/javascript"></script> | ||
<script src="/theme/js/typeahead.bundle.js" type="text/javascript"></script> | ||
<script src="/theme/js/functions.js" type="text/javascript"></script> | ||
</head> | ||
<body> | ||
|
||
<div class="wrapper"> | ||
<a href="/" id="logo">2c Theme</a> | ||
|
||
<div class="search"> | ||
<form action="" method="get"> | ||
<input type="text" name="s" value="" id="main-typeahead" class="typeahead" placeholder="Search" tabindex="1" /> | ||
</form> | ||
</div> | ||
|
||
<a href="#" class="link-settings" title="Settings"> </a> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.