0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00
verdaccio/lib/GUI/index.handlebars

21 lines
358 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>
<h1>{{ name }}</h1>
2014-05-06 17:40:21 -05:00
<input type='search' />
<button>Search</button>
{{#each locals}}
<article>
<h2>{{ name }} <small>v{{ version }}</small></h2>
<div>By: {{ _npmUser.name }}</div>
</article>
{{/each}}
2014-05-06 17:04:03 -05:00
</body>
</html>