mirror of
https://github.com/filegator/filegator.git
synced 2025-08-16 17:23:58 +02:00
Website generation with Couscous
This commit is contained in:
76
index.html
76
index.html
@@ -4,40 +4,94 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title></title>
|
||||
<title>FileGator</title>
|
||||
|
||||
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="/css/highlight.dark.css">
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
<link rel="stylesheet" href="http://docs.filegator.io/filegator/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://docs.filegator.io/filegator/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="http://docs.filegator.io/filegator/css/highlight.dark.css">
|
||||
<link rel="stylesheet" href="http://docs.filegator.io/filegator/css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="navbar navbar-default navbar-fixed-top">
|
||||
|
||||
<a class="navbar-brand" href="/">
|
||||
The title
|
||||
<a class="navbar-brand" href="http://docs.filegator.io/filegator/">
|
||||
FileGator
|
||||
<small class="hidden-xs hidden-sm">
|
||||
This is the default subtitle!
|
||||
Documentation
|
||||
</small>
|
||||
</a>
|
||||
|
||||
<a href="https://github.com/filegator/filegator">
|
||||
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
|
||||
</a>
|
||||
|
||||
</header>
|
||||
|
||||
<main class="container">
|
||||
<main class="container-fluid">
|
||||
<div class="row">
|
||||
|
||||
|
||||
<section id="content" class="col-sm-12">
|
||||
<nav id="sidebar" class="col-sm-3 col-lg-2" role="navigation">
|
||||
|
||||
<ul class="nav nav-pills nav-stacked">
|
||||
<li class="">
|
||||
<a href="http://docs.filegator.io/filegator/index.html">
|
||||
What is FileGator
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="http://docs.filegator.io/filegator/install.html">
|
||||
Installation
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="http://docs.filegator.io/filegator/configuration.html">
|
||||
Configuration
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="demo.html">
|
||||
Demo
|
||||
</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a href="license.html">
|
||||
License
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
<section id="content" class="col-sm-offset-3 col-lg-offset-2 col-sm-9 col-lg-10">
|
||||
<h2 id="filegator">FileGator</h2>
|
||||
<p>FileGator is PHP script for managing online files and folders.</p>
|
||||
<p>You can manage files inside your local repository folder (on your server's hard drive) or connect to other storage adaptes (see below).</p>
|
||||
<p>FileGator has multi-user support so you can have admins and other users managing files with different access permissions, roles and home folders.</p>
|
||||
<p>All basic file operations are supported: copy, move, rename, create, delete, zip, unzip, download, upload.</p>
|
||||
<p>If allowed, users can download multiple files or folders at once.</p>
|
||||
<p>File upload supports drag&drop, progress bar, pause and resume. Upload is chunked so you should be able to upload large files regardless of your server configuration.</p>
|
||||
<h2 id="features-amp-goals">Features & Goals</h2>
|
||||
<ul>
|
||||
<li>Multiple storage adapters (Local, FTP, S3, Dropbox and many others via <a href="https://github.com/thephpleague/flysystem">Flysystem</a>)</li>
|
||||
<li>Multiple auth adapters with roles and permissions (Store users in json file or database)</li>
|
||||
<li>Multiple session adapters (Native File, Pdo, MongoDB, Memcached and others via <a href="https://github.com/symfony/symfony/tree/master/src/Symfony/Component/HttpFoundation/Session/Storage/Handler">Symfony</a>)</li>
|
||||
<li>Single page front-end (built with <a href="https://github.com/vuejs/vue">Vuejs</a>, <a href="https://github.com/jgthms/bulma">Bulma</a> and <a href="https://github.com/buefy/buefy">Buefy</a>)</li>
|
||||
<li>Chunked uploads (built with <a href="https://github.com/23/resumable.js">Resumable.js</a>)</li>
|
||||
<li>Zip and bulk download support</li>
|
||||
<li>Highly extensible, decoupled and tested code</li>
|
||||
<li>No database required</li>
|
||||
<li>Framework free <a href="https://www.youtube.com/watch?v=L5jI9I03q8E">™</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<div class="container-fluid">
|
||||
<p class="text-muted">
|
||||
website generated with <a href="http://couscous.io" title="Markdown website generator">Couscous</a>
|
||||
</p>
|
||||
|
Reference in New Issue
Block a user