verdaccio/lib/GUI/index.handlebars

40 lines
905 B
Handlebars
Raw Normal View History

2014-05-07 00:04:03 +02:00
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>{{ name }}</title>
2014-05-07 18:27:51 +02:00
<link rel="stylesheet" type="text/css" href="/-/static/main.css">
2014-05-07 00:04:03 +02:00
</head>
<body>
2014-05-07 20:08:29 +02:00
<div id='content'>
<h1><a href='/'>{{ name }}</a></h1>
2014-05-07 00:40:21 +02:00
2014-05-07 20:36:48 +02:00
<div class='center'>
<article id='setup'>
<code>npm set registry {{ baseUrl }}</code><br>
<code>npm adduser --registry {{ baseUrl }}</code>
</article>
</div>
2014-05-07 00:48:15 +02:00
2014-05-07 20:36:48 +02:00
<h2>
Available Packages:
<form id='search-form'>
2014-05-07 21:56:48 +02:00
<input type='text' placeholder='Search' name='q' /><button class='clear'>X</button>
2014-05-07 20:36:48 +02:00
</form>
</h2>
2014-05-07 00:40:21 +02:00
2014-05-07 20:36:48 +02:00
<div id='search-results'></div>
2014-05-07 18:27:51 +02:00
2014-05-07 20:36:48 +02:00
<div id='all-packages'>
2014-05-07 20:08:29 +02:00
{{#each packages}}
{{> entry}}
{{/each}}
</div>
</div>
2014-05-07 20:36:48 +02:00
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type='text/javascript' src='/-/static/main.js'></script>
2014-05-07 00:04:03 +02:00
</body>
</html>