1
0
mirror of https://github.com/oupala/apaxy.git synced 2025-08-21 07:52:36 +02:00
Files
apaxy/index.html
2016-11-15 08:51:40 +00:00

65 lines
3.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Apaxy: A simple, customisable Apache directory theme</title>
<meta name="description" content="Apaxy: A simple, customisable Apache directory theme.">
<link rel="shortcut icon" href="img/icon.png">
<!-- Stylesheets -->
<link rel="stylesheet" href="style.css" />
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400' rel='stylesheet' type='text/css'>
<!-- Google -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-18418896-7', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="fadeDown">
<div class="island header">
<img class="fadeDown" src="img/apaxy.png" alt="Apaxy logo" width="40"/>
<h1>This is Apaxy.</h1>
</div><!--/.header-->
<div class="example">
<img src="img/example.png" alt="Apaxy example" />
</div><!--/.example-->
<div class="island content">
<p>Apaxy is a customisable theme built to enhance the experience of browsing web directories. It uses the <code>mod_autoindex</code> Apache module&mdash;and some CSS&mdash;to override the default style of a directory listing.</p>
<p>View the <a href="https://github.com/AdamWhitcroft/apaxy">GitHub repo</a>.</p>
<h2>Features</h2>
<p>Apaxy may be basic, but it gives you a great deal of creative freedom when styling your directory.</p>
<ul>
<li>Style your directory listing with CSS.</li>
<li>Make it pop with Javascript or jQuery.</li>
<li>Add welcome messages, download instructions or copyright notices.</li>
<li>Add custom mime type icons (requires editing the <code>.htaccess</code> file).</li>
</ul>
<p><small><span>!</span>Sadly, visual style is all you can work with. It's not possible to alter the generated table structure of the listing directory with Apaxy.</small></p>
<h2>Installation</h2>
<p>Apaxy is super easy to install, simply follow the instructions in the in the <a href="https://github.com/AdamWhitcroft/apaxy">GitHub repo</a> or in <code>README.md</code> found in the download package.</p>
</div><!--/.content-->
<div class="tweetThis">
<a data-tip="Tweet this?" class="bttn tweet" href="http://twitter.com/share?url=http://adamwhitcroft.com/apaxy/&text=Apaxy: A simple, customisable Apache directory theme by @adamwhitcroft:" id="tweet-button"><img src="img/birdy.png" width="50" height="50" /></a>
</div>
<div class="footer">
<p>Apaxy by <a href="https://twitter.com/adamwhitcroft">Adam Whitcroft</a>.</p>
</div><!--/.footer-->
<script type="text/javascript">
var tweetButton = document.getElementById('tweet-button');
tweetButton.onclick = function(){
ga('send', 'event', 'Tweet button', 'Tweet about Apaxy');
};
</script>
</body>
</html>