You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<% if folder == "all" %>
|
|
<% doAllFolder = true %>
|
|
<% title = "Archive" %>
|
|
<% else %>
|
|
<% doAllFolder = false %>
|
|
<% title = "Archive - " + folder.capitalize %>
|
|
<% end %>
|
|
<head>
|
|
<title><%= title %></title>
|
|
<meta name="description" content="broken-moon.net - <%= title %>" />
|
|
<meta name="keywords" content="<%= title.downcase %>" />
|
|
<meta property="og:url" content="http://broken-moon.net/<%= title.downcase %>" />
|
|
<meta property="og:title" content="<%= title %>" />
|
|
<%= erb :headerBoilerplate %>
|
|
</head>
|
|
<body>
|
|
<%= erb :asidemenu %>
|
|
<div class="content">
|
|
<%= erb :searchTopBar, locals: {folder: folder} %>
|
|
<%= erb :searchbar, locals: {folder: folder} %>
|
|
<% if folder == "all" %>
|
|
<%= erb :index, locals: {folders: ["all", "media", "technology", "news"], searchquery: searchquery, origin: "search/" + "all"} %>
|
|
<% else %>
|
|
<% if !Dir.exists?(folder) %>
|
|
<%= erb :throwError, locals: {errorcode: "404", error: "Folder not found", errordescriptor: "No folder called " + folder.capitalize, returntarget: "search"} %>
|
|
<% else %>
|
|
<% if Dir.children("./" + folder).empty? %>
|
|
<%= erb :throwError, locals: {errorcode: "404", error: "File not found", errordescriptor: "No files in " + folder.capitalize, returntarget: "search"} %>
|
|
<% else %>
|
|
<%= erb :index, locals: {folders: [folder], searchquery: searchquery, origin: "search/" + folder} %>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
<%# searchquery %>
|
|
</div>
|
|
<%= erb :bottom %>
|
|
</body> |