mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
21 lines
358 B
Handlebars
21 lines
358 B
Handlebars
<!doctype html>
|
|
<html lang="en-us">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ name }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{ name }}</h1>
|
|
|
|
<input type='search' />
|
|
<button>Search</button>
|
|
|
|
{{#each locals}}
|
|
<article>
|
|
<h2>{{ name }} <small>v{{ version }}</small></h2>
|
|
<div>By: {{ _npmUser.name }}</div>
|
|
</article>
|
|
{{/each}}
|
|
</body>
|
|
</html>
|