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

31 lines
574 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>
</head>
<body>
2014-05-06 17:48:15 -05:00
<h1><a href='/'>{{ name }}</a></h1>
2014-05-06 17:40:21 -05:00
2014-05-06 17:48:15 -05:00
<form>
<input type='search' name='q' />
<button>Search</button>
</form>
<h2>Setup:</h2>
<code>
npm set registry {{ baseUrl }}<br>
npm adduser --registry {{ baseUrl }}
</code>
2014-05-06 17:40:21 -05:00
2014-05-07 10:29:47 -05:00
<h2>Packages:</h2>
2014-05-07 10:10:59 -05:00
{{#each packages}}
2014-05-06 17:40:21 -05:00
<article>
2014-05-07 10:10:59 -05:00
<h3>{{ name }} <small>v{{ version }}</small></h3>
<div>User: {{ _npmUser.name }}</div>
<p>{{ description }}</p>
2014-05-06 17:40:21 -05:00
</article>
{{/each}}
2014-05-06 17:04:03 -05:00
</body>
</html>