mirror of
https://github.com/gomods/athens
synced 2026-02-03 11:00:32 +00:00
proxy: remove dangling registry templates (#252)
Signed-off-by: Tobias Kohlbau <tobias@kohlbau.de>
This commit is contained in:
committed by
Michal Pristas
parent
75c7e1931f
commit
200ffe2a07
@@ -1,15 +0,0 @@
|
||||
<%= if (len(flash) > 0) { %>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<%= for (k, messages) in flash { %>
|
||||
<%= for (msg) in messages { %>
|
||||
<div class="alert alert-<%= k %>" role="alert">
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||||
<%= msg %>
|
||||
</div>
|
||||
<% } %>
|
||||
<% } %>
|
||||
</div>
|
||||
</div>
|
||||
<% } %>
|
||||
|
||||
@@ -1,45 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>GopherPacks.io</title>
|
||||
<%= stylesheetTag("application.css") %>
|
||||
<meta name="csrf-param" content="authenticity_token" />
|
||||
<meta name="csrf-token" content="<%= authenticity_token %>" />
|
||||
<link rel="icon" href="<%= assetPath("images/favicon.ico") %>">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<!-- NavBar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-light bg-light mb-2">
|
||||
<a class="navbar-brand" href="<%= rootPath() %>">
|
||||
<img src="<%= assetPath("images/logo.svg") %>" style="width:50px;">
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Categories</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Topics</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- End NavBar -->
|
||||
<%= partial("flash.html") %>
|
||||
<%= yield %>
|
||||
</div>
|
||||
<footer class="footer text-center fixed-bottom">
|
||||
<div>
|
||||
<ul class="list-inline">
|
||||
<li class="text-muted">GopherPacks © 2018</li>
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
<%= javascriptTag("application.js") %>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,6 +0,0 @@
|
||||
<div class="row mt-5">
|
||||
<div class="col text-center">
|
||||
<h1>Welcome to GopherPacks.io</h1>
|
||||
<p> Some Text Here would be Nice </p>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user