Original Theme
This commit is contained in:
63
home/page-home.html
Normal file
63
home/page-home.html
Normal file
@@ -0,0 +1,63 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
{{>common/inc-header.html}}
|
||||
<link rel="stylesheet" type="text/css" href="{{rootPath}}/theme/home/homepage.css"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="banner"></div>
|
||||
|
||||
{{#userName}}
|
||||
<div id="userinfo">
|
||||
Connected as {{userName}} - <a href="{{rootPath}}/?logout=true" id="logoutlink">Log out</a>
|
||||
</div>
|
||||
{{/userName}}
|
||||
|
||||
<div id="group">
|
||||
|
||||
{{#categories}}
|
||||
<div class="cell">
|
||||
<div class="category-title">
|
||||
{{categoryName}}
|
||||
<div class="tooltip">
|
||||
{{categoryItemCount}} entries
|
||||
</div>
|
||||
<i></i>
|
||||
</div>
|
||||
<a href="{{categoryUrl}}" id="{{categoryId}}" class="category"></a>
|
||||
<div class="category-latest-gap">
|
||||
<a href="{{categoryLatestUrl}}" id="{{categoryLatestId}}" class="category-latest"></a>
|
||||
</div>
|
||||
</div>
|
||||
{{/categories}}
|
||||
|
||||
{{#displayRawFiles}}
|
||||
<div class="cell">
|
||||
<div class="category-title">
|
||||
Raw files
|
||||
</div>
|
||||
<a href="{{rawFilesUrl}}" id="files" class="category"></a>
|
||||
</div>
|
||||
{{/displayRawFiles}}
|
||||
|
||||
{{#displayNoFileMessage}}
|
||||
<div id="message">
|
||||
No file to display.
|
||||
<br><br>
|
||||
If you just installed Ubooquity, you need to configure it by choosing the folders you want to include in your
|
||||
collection.
|
||||
<br>
|
||||
If user access management is activated, check that you configured authorizations for each folder included in
|
||||
your collection.
|
||||
</div>
|
||||
{{/displayNoFileMessage}}
|
||||
|
||||
</div>
|
||||
<br/>
|
||||
<br/>
|
||||
<a href="http://vaemendis.net/ubooquity" id="poweredby">Powered by Ubooquity</a>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user