1
0
Files
Ubooquity-Simple-Dark-Theme/home/page-home.html
2025-09-15 21:30:17 +02:00

63 lines
1.6 KiB
HTML

<!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>