Skip to content

Commit c8ab035

Browse files
committed
add artwork
Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
1 parent 21d44da commit c8ab035

8 files changed

Lines changed: 578 additions & 2 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# [NoRouter](https://norouter.io/) (IP-over-Stdio): Unprivileged instant multi-cloud networking
1+
![NoRouter banner](./docs.source/static/images/norouter_h.svg)
22

3-
[NoRouter](https://norouter.io/) is the easiest multi-host & multi-cloud networking ever:
3+
[NoRouter](https://norouter.io/) (IP-over-Stdio) is the easiest multi-host & multi-cloud networking ever:
44
- Works with any container, any VM, and any baremetal machine, on anywhere, as long as the shell access is available (e.g. `docker exec`, `kubectl exec`, `ssh`)
55
- Omnidirectional port forwarding: Local-to-Remote, Remote-to-Local, and Remote-to-Remote
66
- No routing configuration is required
@@ -239,6 +239,7 @@ $ curl http://some-gcp-host.asia-northeast1-b.c.example-123456.internal
239239
- [How it works](https://norouter.io/docs/how-it-works/)
240240
- [Roadmap](https://norouter.io/docs/roadmap/)
241241
- [Similar projects](https://norouter.io/docs/similar-projects/)
242+
- [Artwork](https://norouter.io/docs/artwork/)
242243

243244
## Installing NoRouter from source
244245

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: "Artwork"
3+
linkTitle: "Artwork"
4+
weight: 99
5+
description: >
6+
NoRouter artwork images.
7+
---
8+
Images are provided as SVG.
9+
Right-click an image to save.
10+
11+
## Vertical
12+
![NoRouter (vertical)](../../images/norouter_v.svg)
13+
14+
## Horizontal
15+
![NoRouter (horizontal)](../../images/norouter_h.svg)

docs.source/content/en/docs/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ menu:
88
weight: 20
99
---
1010

11+
![NoRouter](../images/norouter_h.svg)
12+
1113
NoRouter is the easiest multi-host & multi-cloud networking ever:
1214

1315
- Works with any container, any VM, and any baremetal machine, on anywhere, as long as the shell access is available (e.g. `docker exec`, `kubectl exec`, `ssh`)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<link rel="shortcut icon" href="{{ "favicons/favicon.svg" | relURL }}" >
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<!--
2+
Copied from https://github.com/google/docsy/blob/68cdeab37e37901103a27e3797bf8e620f1646bc/layouts/partials/navbar.html
3+
Only modified .navbar-brand .
4+
-->
5+
{{ $cover := .HasShortcode "blocks/cover" }}
6+
<nav class="js-navbar-scroll navbar navbar-expand navbar-dark {{ if $cover}} td-navbar-cover {{ end }}flex-column flex-md-row td-navbar">
7+
<a class="navbar-brand" href="{{ .Site.Home.RelPermalink }}">
8+
<!-- FIXME: do not specify explicit height here -->
9+
<img src="/images/norouter_h.svg" alt="norouter" style="background: #fff; height: 50px;"></img>
10+
</a>
11+
<div class="td-navbar-nav-scroll ml-md-auto" id="main_navbar">
12+
<ul class="navbar-nav mt-2 mt-lg-0">
13+
{{ $p := . }}
14+
{{ range .Site.Menus.main }}
15+
<li class="nav-item mr-4 mb-2 mb-lg-0">
16+
{{ $active := or ($p.IsMenuCurrent "main" .) ($p.HasMenuCurrent "main" .) }}
17+
{{ with .Page }}
18+
{{ $active = or $active ( $.IsDescendant .) }}
19+
{{ end }}
20+
{{ $url := urls.Parse .URL }}
21+
{{ $baseurl := urls.Parse $.Site.Params.Baseurl }}
22+
<a {{ if .Identifier }}id="{{ .Identifier }}"{{ end }} class="nav-link{{if $active }} active{{end}}" href="{{ with .Page }}{{ .RelPermalink }}{{ else }}{{ .URL | relLangURL }}{{ end }}" {{ if ne $url.Host $baseurl.Host }}target="_blank" {{ end }}><span{{if $active }} class="active"{{end}}>{{ .Name }}</span></a>
23+
</li>
24+
{{ end }}
25+
{{ if .Site.Params.versions }}
26+
<li class="nav-item dropdown d-none d-lg-block">
27+
{{ partial "navbar-version-selector.html" . }}
28+
</li>
29+
{{ end }}
30+
{{ if (gt (len .Site.Home.Translations) 0) }}
31+
<li class="nav-item dropdown d-none d-lg-block">
32+
{{ partial "navbar-lang-selector.html" . }}
33+
</li>
34+
{{ end }}
35+
</ul>
36+
</div>
37+
<div class="navbar-nav d-none d-lg-block">{{ partial "search-input.html" . }}</div>
38+
</nav>
Lines changed: 163 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)