0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/lib/GUI/index.handlebars

39 lines
913 B
Handlebars
Raw Normal View History

2014-05-06 17:04:03 -05:00
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>{{ name }}</title>
2014-05-07 11:27:51 -05:00
<link rel="stylesheet" type="text/css" href="/-/static/main.css">
2014-05-06 17:04:03 -05:00
</head>
<body>
2014-05-07 13:08:29 -05:00
<div id='content'>
<h1><a href='/'>{{ name }}</a></h1>
2014-05-06 17:40:21 -05:00
2014-05-07 13:08:29 -05:00
<form id='search-form'>
2014-05-07 13:26:44 -05:00
<input type='text' placeholder='search' name='q' />
<button class='clear'>x</button>
2014-05-07 13:08:29 -05:00
</form>
2014-05-06 17:48:15 -05:00
2014-05-07 13:08:29 -05:00
<div id='search-results'></div>
2014-05-06 17:40:21 -05:00
2014-05-07 13:08:29 -05:00
<div id='standard-content'>
2014-05-07 13:26:44 -05: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 11:27:51 -05:00
2014-05-07 13:08:29 -05:00
<h2>Available Packages:</h2>
{{#each packages}}
{{> entry}}
{{/each}}
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type='text/javascript' src='/-/static/main.js'></script>
</div>
</div>
2014-05-06 17:04:03 -05:00
</body>
</html>