summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2020-05-01 15:04:39 +0700
committerShulhan <ms@kilabit.info>2020-05-07 13:56:46 +0700
commitbe40291e5dac2a56de940bfb5dfc842b856ca233 (patch)
tree2e1481b01939743d1492d6271069ccd7b9aefaf4
parent8713b9674b608dd2c7e95215d4b7e8a298898611 (diff)
downloadciigo-be40291e5dac2a56de940bfb5dfc842b856ca233.tar.xz
all: rename the "content" directory to "_example"
While at it, also move the templates into _example and all assets into the same directory.
l---------README.adoc2
l---------_example/LICENSE (renamed from content/LICENSE)0
-rw-r--r--_example/custom.css (renamed from content/assets/custom.css)0
-rw-r--r--_example/favicon.ico (renamed from content/favicon.ico)bin5686 -> 5686 bytes
-rw-r--r--_example/html.tmpl (renamed from templates/html.tmpl)11
-rw-r--r--_example/index.adoc (renamed from content/index.adoc)165
-rw-r--r--_example/index.css (renamed from content/assets/style.css)0
-rw-r--r--_example/sub/index.adoc (renamed from content/sub/index.adoc)2
-rw-r--r--cmd/ciigo-example/main.go2
-rw-r--r--cmd/ciigo-example/static.go786
-rw-r--r--internal/cmd/generate/main.go3
11 files changed, 475 insertions, 496 deletions
diff --git a/README.adoc b/README.adoc
index 344c25a..831e887 120000
--- a/README.adoc
+++ b/README.adoc
@@ -1 +1 @@
-content/index.adoc \ No newline at end of file
+_example/index.adoc \ No newline at end of file
diff --git a/content/LICENSE b/_example/LICENSE
index ea5b606..ea5b606 120000
--- a/content/LICENSE
+++ b/_example/LICENSE
diff --git a/content/assets/custom.css b/_example/custom.css
index 6690ee7..6690ee7 100644
--- a/content/assets/custom.css
+++ b/_example/custom.css
diff --git a/content/favicon.ico b/_example/favicon.ico
index 8d22584..8d22584 100644
--- a/content/favicon.ico
+++ b/_example/favicon.ico
Binary files differ
diff --git a/templates/html.tmpl b/_example/html.tmpl
index dd8b1ed..d5612c9 100644
--- a/templates/html.tmpl
+++ b/_example/html.tmpl
@@ -6,7 +6,7 @@
<meta name="theme-color" content="#375EAB" />
<title>{{.Title}}</title>
- <link rel="stylesheet" href="/assets/style.css" />
+ <link rel="stylesheet" href="/index.css" />
{{- range .Styles}}
<link rel="stylesheet" href="{{.}}" />
{{- end}}
@@ -43,10 +43,11 @@
<!-- .page -->
<div class="footer">
- Copyright 2019, Shulhan &lt;ms@kilabit.info&gt;. All rights reserved.
- <br />
- Use of this source code is governed by a BSD-style license that can be
- found in the <a href="/LICENSE">LICENSE</a> file.
+ Powered by <a
+ href="https://github.com/shuLhan/ciigo"
+ >
+ ciigo
+ </a>
</div>
</body>
</html>
diff --git a/content/index.adoc b/_example/index.adoc
index 1dcb021..81c3c9c 100644
--- a/content/index.adoc
+++ b/_example/index.adoc
@@ -1,6 +1,11 @@
= Welcome to ciigo
:author: Shulhan
:date: 25 September 2019
+:url-gocard: https://goreportcard.com/report/github.com/shuLhan/ciigo
+:url-godoc: https://pkg.go.dev/github.com/shuLhan/ciigo
+
+image:https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square[GoDoc, link={url-godoc}]
+image:https://goreportcard.com/badge/github.com/shuLhan/ciigo[Go Report Card, link={url-gocard}]
`ciigo` is a library and a program to write static web server with embedded
files using generated markup format.
@@ -14,49 +19,86 @@ as markup format.
== ciigo as library
+For an up to date documentation of how to use the library see the
+{url-godoc}[Go documentation page].
+
+
+== ciigo as CLI
+
+ciigo as CLI can convert, generate, and/or serve a directory that contains
+markup files, as HTML files.
+
+=== Usage
+
+----
+$ ciigo [-template <file>] convert <dir>
+----
+
+Scan the "dir" recursively to find markup files (.adoc or .md) and
+convert them into HTML files.
+The template "file" is optional, default to embedded HTML template.
+
+----
+$ ciigo [-template <file>] [-out <file>] generate <dir>
+----
+
+Convert all markup files inside directory "dir" recursively and then
+embed them into ".go" source file.
+The output file is optional, default to "ciigo_static.go" in current
+directory.
+
+----
+$ ciigo [-template <file>] [-address <ip:port>] serve <dir>
+----
+
+Serve all files inside directory "dir" using HTTP server, watch
+changes on markup files and convert them to HTML files automatically.
+If the address is not set, its default to ":8080".
+
+
+== Example
+
This section describe step by step instructions on how to build and create
pages to be viewed for local development using `ciigo`.
-. Clone the `ciigo` repository.
-For example, lets say we have cloned the `ciigo` repository into
+First, clone the `ciigo` repository.
+Let says that we have cloned the `ciigo` repository into
`$HOME/go/src/github.com/shuLhan/ciigo`.
-. Create new Go repository for building a website.
+Create new Go repository for building a website.
For example, in directory `$HOME/go/src/remote.tld/user/mysite`.
Replace "remote.tld/user/mysite" with your private or public repository.
-+
+
----
$ mkdir -p $HOME/go/src/remote.tld/user/mysite
$ cd $HOME/go/src/remote.tld/user/mysite
----
-. If you use Go module, create the Go module; if you use GOPATH ignore this
- step.
-+
+Initialize the Go module,
+
----
$ go mod init remote.tld/user/mysite
----
-. Create directories for storing our content and a package binary.
-ciigo use strict directory structure as we have mention above.
-+
+Create directories for storing our content and a package binary.
+
----
$ mkdir -p cmd/mysite
-$ mkdir -p content/assets
-$ mkdir -p templates
+$ mkdir -p _contents
----
-. Copy the example of stylesheet and HTML template from `ciigo` repository,
-+
+Copy the example of stylesheet and HTML template from `ciigo` repository,
+
----
-$ cp $HOME/go/src/github.com/shuLhan/ciigo/content/assets/style.css ./content/assets/
-$ cp $HOME/go/src/github.com/shuLhan/ciigo/templates/html.tmpl ./templates/
+$ cp $HOME/go/src/github.com/shuLhan/ciigo/_example/index.css ./_contents/
+$ cp $HOME/go/src/github.com/shuLhan/ciigo/_example/html.tmpl ./_contents/
----
-. Create a Go source code in the root repository to generate all markup files
- inside "content" directory into HTML.
- Lets named it `generate.go` with the following content,
-+
+Create a Go source code in the root repository to generate all markup files
+inside the "_contents" directory into HTML and dump all of their contents into
+"static.go" file.
+Lets named it `generate.go` with the following content,
+
----
//go:generate go run generate.go
@@ -67,12 +109,12 @@ import (
)
func main() {
- ciigo.Generate("./content", "cmd/mysite/static.go", "templates/html.tmpl")
+ ciigo.Generate("./_contents", "cmd/mysite/static.go", "_contents/html.tmpl")
}
----
-. Create the main Go code inside `cmd/mysite`,
-+
+Create the main Go code inside `cmd/mysite`,
+
----
package main
@@ -81,62 +123,57 @@ import (
)
func main() {
- srv := ciigo.NewServer("./content", ":8080")
-
- srv.Start()
+ ciigo.Serve("./_contents", ":8080", "_contents/html.tmpl")
}
----
-. Create a new markup file `index.adoc` inside "content" directory.
- Each directory, or sub directory, should have `index.adoc` to be able to
- accessed by browser,
-+
+Create a new markup file `index.adoc` inside the "_contents" directory.
+Each directory, or sub directory, should have `index.adoc` to be able to
+accessed by browser,
+
----
= Test
-:stylesheet: /assets/style.css
+:stylesheet: /_contents/index.css
Hello, world!
----
-. Run `go generate` to convert all files with extension `.adoc` (or `.md`)
- into HTML and embed it into `./cmd/mysite/static.go`
-+
+Run `go generate` to convert all files with extension `.adoc` (or `.md`)
+into HTML and embed it into `./cmd/mysite/static.go`
+
----
$ go generate
----
-. Now run the `./cmd/mysite` with `DEBUG` environment variable is set,
-+
+Now run the `./cmd/mysite` with `DEBUG` environment variable is set,
+
----
-$ export DEBUG=1
-$ go run ./cmd/mysite
+$ DEBUG=1 go run ./cmd/mysite
----
-+
+
Any non zero value on `DEBUG` environment signal the running program to watch
-changes in ".adoc" files inside "content" directory and serve the generated
+changes in ".adoc" files inside "_contents" directory and serve the generated
HTML directly.
-. Open the web browser at `localhost:8080` to view the generated HTML.
+Open the web browser at `localhost:8080` to view the generated HTML.
You should see "Hello, world!" as the main page.
Thats it!
-Create or update any ".adoc" or ",md" files inside "content" directory, the
+Create or update any ".adoc" or ",md" files inside "_contents" directory, the
program will automatically generated the HTML file, but you still need to
refresh the web browser to load the new generated file.
=== Deployment
-First, we need to convert all markup files inside "content" into HTML and
-dump the content of all static files inside "content",
+First, we need to make sure that all markup files inside "_contents" are
+converted to HTML and regenerate the static Go code,
----
$ go generate
----
-The above command will generate Go source code in `cmd/mystite/static.go`.
-
Second, build the web server that serve static contents in `static.go`,
----
@@ -156,38 +193,6 @@ Finally, deploy the program to your server.
If you need to use another port, you can change it at `cmd/mysite/main.go`.
-== ciigo as CLI
-
-ciigo as CLI can convert, generate, and/or serve a directory that contains
-markup files, as HTML files.
-
-=== Usage
-
-----
-$ ciigo [-template <file>] convert <dir>
-----
-
-Scan the "dir" recursively to find markup files (.adoc or .md) and
-convert them into HTML files.
-The template "file" is optional, default to embedded HTML template.
-
-----
-$ ciigo [-template <file>] [-out <file>] generate <dir>
-----
-
-Convert all markup files inside directory "dir" recursively and then
-embed them into ".go" source file.
-The output file is optional, default to "ciigo_static.go" in current
-directory.
-
-----
-$ ciigo [-template <file>] [-address <ip:port>] serve <dir>
-----
-
-Serve all files inside directory "dir" using HTTP server, watch
-changes on markup files and convert them to HTML files automatically.
-If the address is not set, its default to ":8080".
-
== Limitations and Known Bugs
@@ -206,8 +211,8 @@ under custom link:/LICENSE[BSD license].
== Credits
-This software is developed with helps from third party libraries.
-The following section list only direct third party library.
+This software is developed with helps from the following third party
+libraries,
* https://github.com/bytesparadise/libasciidoc[libasciidoc].
https://raw.githubusercontent.com/bytesparadise/libasciidoc/master/LICENSE[License].
diff --git a/content/assets/style.css b/_example/index.css
index 2168b46..2168b46 100644
--- a/content/assets/style.css
+++ b/_example/index.css
diff --git a/content/sub/index.adoc b/_example/sub/index.adoc
index d32692a..e605902 100644
--- a/content/sub/index.adoc
+++ b/_example/sub/index.adoc
@@ -1,4 +1,4 @@
= Sub directory
-:stylesheet: /assets/custom.css
+:stylesheet: /custom.css
This is an example of content in sub directory using custom stylesheet.
diff --git a/cmd/ciigo-example/main.go b/cmd/ciigo-example/main.go
index 30f4e82..32a907c 100644
--- a/cmd/ciigo-example/main.go
+++ b/cmd/ciigo-example/main.go
@@ -13,5 +13,5 @@ import (
)
func main() {
- ciigo.Serve("./content", ":8080", "./templates/html.tmpl")
+ ciigo.Serve("_example", ":8080", "_example/html.tmpl")
}
diff --git a/cmd/ciigo-example/static.go b/cmd/ciigo-example/static.go
index 1f3037f..cfd8873 100644
--- a/cmd/ciigo-example/static.go
+++ b/cmd/ciigo-example/static.go
@@ -8,20 +8,20 @@ import (
func generate_() *memfs.Node {
node := &memfs.Node{
- SysPath: "./content",
+ SysPath: "./_example",
Path: "/",
ContentType: "",
ContentEncoding: "",
}
node.SetMode(2147484141)
node.SetName("/")
- node.SetSize(256)
+ node.SetSize(320)
return node
}
func generate_LICENSE() *memfs.Node {
node := &memfs.Node{
- SysPath: "content/LICENSE",
+ SysPath: "_example/LICENSE",
Path: "/LICENSE",
ContentType: "text/plain; charset=utf-8",
ContentEncoding: "gzip",
@@ -94,23 +94,10 @@ func generate_LICENSE() *memfs.Node {
return node
}
-func generate_assets() *memfs.Node {
+func generate_custom_css() *memfs.Node {
node := &memfs.Node{
- SysPath: "content/assets",
- Path: "/assets",
- ContentType: "",
- ContentEncoding: "",
- }
- node.SetMode(2147484141)
- node.SetName("assets")
- node.SetSize(0)
- return node
-}
-
-func generate_assets_custom_css() *memfs.Node {
- node := &memfs.Node{
- SysPath: "content/assets/custom.css",
- Path: "/assets/custom.css",
+ SysPath: "_example/custom.css",
+ Path: "/custom.css",
ContentType: "text/css; charset=utf-8",
ContentEncoding: "gzip",
V: []byte{
@@ -125,71 +112,9 @@ func generate_assets_custom_css() *memfs.Node {
return node
}
-func generate_assets_style_css() *memfs.Node {
- node := &memfs.Node{
- SysPath: "content/assets/style.css",
- Path: "/assets/style.css",
- ContentType: "text/css; charset=utf-8",
- ContentEncoding: "gzip",
- V: []byte{
- 31, 139, 8, 0, 0, 0, 0, 0, 0, 255, 148, 85, 93, 143, 171, 54,
- 20, 124, 142, 127, 197, 145, 86, 125, 137, 128, 5, 178, 36, 45, 72, 43,
- 85, 125, 238, 143, 48, 248, 16, 172, 53, 54, 50, 166, 201, 246, 42, 255,
- 253, 202, 96, 190, 2, 185, 210, 21, 15, 137, 236, 177, 207, 120, 230, 120,
- 156, 43, 246, 13, 63, 200, 161, 166, 250, 202, 101, 10, 97, 70, 14, 165,
- 146, 198, 47, 105, 205, 197, 119, 10, 127, 107, 78, 133, 7, 45, 149, 173,
- 223, 162, 230, 101, 70, 14, 57, 45, 190, 174, 90, 117, 146, 249, 133, 18,
- 74, 167, 240, 86, 150, 118, 66, 112, 137, 126, 133, 252, 90, 153, 20, 162,
- 224, 148, 145, 131, 193, 187, 241, 169, 224, 87, 153, 66, 129, 210, 160, 206,
- 200, 97, 92, 21, 199, 113, 70, 30, 164, 209, 104, 57, 172, 234, 254, 139,
- 82, 40, 15, 106, 37, 85, 219, 208, 2, 71, 94, 45, 255, 31, 83, 8,
- 131, 63, 47, 137, 198, 122, 91, 243, 35, 35, 7, 245, 31, 234, 82, 168,
- 155, 127, 79, 129, 118, 70, 173, 40, 167, 240, 134, 165, 253, 50, 114, 104,
- 40, 99, 92, 94, 237, 126, 231, 216, 237, 151, 43, 205, 80, 251, 154, 50,
- 222, 181, 118, 230, 20, 185, 169, 7, 161, 150, 230, 72, 254, 116, 73, 144,
- 230, 227, 17, 25, 22, 74, 83, 195, 149, 76, 65, 42, 137, 61, 60, 173,
- 44, 21, 187, 104, 131, 233, 36, 67, 109, 185, 91, 32, 105, 60, 34, 248,
- 224, 195, 221, 191, 113, 102, 170, 20, 146, 112, 32, 116, 83, 154, 249, 55,
- 77, 155, 20, 114, 141, 244, 203, 183, 3, 189, 108, 158, 85, 206, 35, 157,
- 240, 136, 18, 75, 23, 163, 96, 162, 76, 170, 200, 35, 85, 236, 145, 234,
- 228, 145, 234, 99, 7, 5, 225, 140, 95, 40, 146, 237, 156, 180, 119, 224,
- 230, 180, 206, 149, 232, 105, 84, 209, 100, 222, 96, 78, 20, 236, 123, 227,
- 192, 65, 175, 69, 221, 25, 100, 75, 57, 47, 151, 75, 15, 136, 251, 65,
- 129, 84, 167, 160, 237, 202, 236, 105, 243, 201, 168, 149, 165, 33, 230, 101,
- 178, 182, 116, 191, 65, 226, 228, 249, 32, 82, 233, 154, 138, 69, 223, 76,
- 93, 51, 53, 210, 158, 252, 85, 12, 116, 58, 249, 70, 148, 211, 70, 148,
- 248, 23, 124, 126, 179, 242, 107, 43, 151, 221, 58, 64, 150, 28, 166, 158,
- 136, 225, 19, 218, 134, 74, 219, 22, 238, 111, 143, 21, 138, 154, 89, 246,
- 41, 20, 32, 78, 154, 59, 132, 115, 58, 108, 164, 27, 93, 76, 226, 203,
- 95, 69, 111, 36, 97, 175, 90, 146, 177, 85, 226, 244, 223, 114, 90, 120,
- 14, 178, 123, 225, 31, 132, 188, 31, 143, 4, 142, 240, 79, 215, 26, 85,
- 67, 33, 104, 219, 98, 11, 165, 210, 208, 208, 43, 182, 4, 142, 239, 132,
- 4, 70, 53, 57, 237, 47, 223, 126, 167, 140, 22, 124, 12, 182, 204, 22,
- 84, 156, 49, 148, 125, 165, 113, 19, 251, 235, 87, 72, 109, 107, 121, 243,
- 104, 141, 178, 179, 5, 166, 166, 139, 130, 83, 116, 234, 141, 120, 213, 181,
- 187, 242, 189, 168, 180, 176, 68, 96, 105, 44, 110, 23, 182, 138, 165, 62,
- 83, 95, 103, 210, 150, 252, 218, 244, 199, 19, 128, 174, 188, 114, 49, 9,
- 97, 16, 109, 19, 99, 206, 80, 199, 229, 86, 113, 131, 207, 55, 117, 10,
- 147, 33, 104, 237, 186, 208, 237, 218, 42, 193, 217, 6, 49, 69, 113, 210,
- 220, 183, 252, 74, 165, 235, 153, 162, 111, 117, 90, 82, 121, 144, 192, 246,
- 132, 69, 184, 88, 141, 194, 240, 143, 65, 136, 126, 226, 19, 130, 66, 73,
- 67, 185, 68, 61, 59, 187, 28, 157, 226, 219, 189, 98, 131, 21, 235, 130,
- 238, 214, 186, 49, 61, 184, 235, 6, 103, 129, 86, 185, 188, 40, 16, 212,
- 104, 230, 40, 105, 205, 183, 192, 20, 184, 161, 130, 23, 217, 126, 168, 7,
- 165, 82, 102, 75, 109, 243, 192, 158, 207, 231, 151, 15, 231, 184, 111, 28,
- 36, 174, 99, 31, 228, 103, 0, 0, 0, 255, 255, 47, 23, 127, 49, 15,
- 8, 0, 0,
- },
- }
- node.SetMode(420)
- node.SetName("style.css")
- node.SetSize(739)
- return node
-}
-
func generate_favicon_ico() *memfs.Node {
node := &memfs.Node{
- SysPath: "content/favicon.ico",
+ SysPath: "_example/favicon.ico",
Path: "/favicon.ico",
ContentType: "image/x-icon",
ContentEncoding: "gzip",
@@ -285,255 +210,313 @@ func generate_favicon_ico() *memfs.Node {
return node
}
+func generate_html_tmpl() *memfs.Node {
+ node := &memfs.Node{
+ SysPath: "_example/html.tmpl",
+ Path: "/html.tmpl",
+ ContentType: "text/html; charset=utf-8",
+ ContentEncoding: "gzip",
+ V: []byte{
+ 31, 139, 8, 0, 0, 0, 0, 0, 0, 255, 140, 84, 79, 111, 220, 46,
+ 16, 61, 111, 62, 5, 225, 119, 253, 97, 20, 85, 85, 171, 22, 175, 148,
+ 127, 183, 74, 141, 148, 92, 122, 170, 48, 158, 93, 80, 49, 56, 48, 222,
+ 100, 133, 252, 221, 43, 140, 189, 117, 210, 72, 205, 201, 192, 155, 247, 120,
+ 111, 60, 182, 56, 191, 249, 126, 253, 240, 227, 238, 150, 104, 236, 236, 246,
+ 76, 148, 199, 70, 104, 144, 237, 246, 108, 179, 17, 29, 160, 36, 26, 177,
+ 103, 240, 56, 152, 67, 77, 175, 189, 67, 112, 200, 30, 142, 61, 80, 162,
+ 202, 174, 166, 8, 207, 200, 51, 251, 43, 81, 90, 134, 8, 88, 15, 184,
+ 99, 159, 41, 225, 127, 116, 156, 236, 160, 166, 7, 3, 79, 189, 15, 184,
+ 98, 63, 153, 22, 117, 221, 194, 193, 40, 96, 211, 230, 127, 98, 156, 65,
+ 35, 45, 139, 74, 90, 168, 47, 222, 16, 66, 13, 29, 48, 229, 173, 15,
+ 43, 173, 255, 62, 124, 250, 120, 123, 121, 53, 213, 103, 2, 26, 180, 176,
+ 77, 169, 122, 200, 139, 113, 20, 188, 156, 100, 204, 26, 247, 139, 4, 176,
+ 53, 141, 120, 180, 16, 53, 0, 82, 162, 3, 236, 106, 202, 141, 107, 225,
+ 185, 82, 49, 206, 87, 167, 196, 72, 144, 110, 15, 164, 186, 159, 170, 199,
+ 241, 95, 26, 41, 85, 227, 184, 162, 131, 107, 51, 73, 240, 185, 191, 162,
+ 241, 237, 113, 114, 210, 154, 3, 81, 86, 198, 88, 83, 244, 125, 35, 3,
+ 205, 199, 47, 206, 115, 66, 105, 28, 204, 208, 107, 14, 203, 154, 198, 237,
+ 103, 116, 35, 228, 18, 132, 110, 149, 49, 123, 47, 184, 156, 137, 188, 53,
+ 135, 191, 53, 58, 112, 195, 137, 188, 243, 161, 91, 0, 131, 208, 81, 34,
+ 21, 26, 239, 106, 202, 127, 26, 135, 16, 156, 180, 60, 130, 12, 74, 47,
+ 156, 141, 48, 174, 31, 144, 224, 177, 135, 50, 16, 116, 126, 81, 143, 148,
+ 244, 86, 42, 208, 222, 182, 16, 106, 122, 95, 120, 165, 47, 147, 161, 124,
+ 221, 251, 205, 157, 146, 197, 161, 161, 219, 251, 161, 121, 35, 218, 105, 53,
+ 47, 94, 53, 185, 151, 123, 120, 71, 139, 245, 197, 139, 201, 209, 23, 111,
+ 57, 67, 185, 56, 75, 169, 186, 28, 80, 251, 48, 141, 70, 46, 108, 194,
+ 41, 101, 74, 213, 141, 68, 152, 161, 85, 206, 148, 170, 43, 223, 30, 11,
+ 176, 74, 112, 206, 24, 169, 78, 150, 8, 99, 171, 56, 11, 156, 115, 76,
+ 200, 171, 124, 59, 239, 113, 137, 113, 231, 159, 32, 64, 75, 154, 35, 17,
+ 114, 186, 177, 180, 47, 127, 214, 241, 11, 231, 123, 131, 122, 104, 42, 229,
+ 59, 30, 245, 240, 77, 75, 199, 167, 129, 161, 185, 182, 88, 156, 246, 197,
+ 158, 92, 187, 16, 188, 76, 176, 224, 229, 207, 241, 59, 0, 0, 255, 255,
+ 129, 163, 30, 181, 81, 4, 0, 0,
+ },
+ }
+ node.SetMode(420)
+ node.SetName("html.tmpl")
+ node.SetSize(520)
+ return node
+}
+
+func generate_index_css() *memfs.Node {
+ node := &memfs.Node{
+ SysPath: "_example/index.css",
+ Path: "/index.css",
+ ContentType: "text/css; charset=utf-8",
+ ContentEncoding: "gzip",
+ V: []byte{
+ 31, 139, 8, 0, 0, 0, 0, 0, 0, 255, 148, 85, 93, 143, 171, 54,
+ 20, 124, 142, 127, 197, 145, 86, 125, 137, 128, 5, 178, 36, 45, 72, 43,
+ 85, 125, 238, 143, 48, 248, 16, 172, 53, 54, 50, 166, 201, 246, 42, 255,
+ 253, 202, 96, 190, 2, 185, 210, 21, 15, 137, 236, 177, 207, 120, 230, 120,
+ 156, 43, 246, 13, 63, 200, 161, 166, 250, 202, 101, 10, 97, 70, 14, 165,
+ 146, 198, 47, 105, 205, 197, 119, 10, 127, 107, 78, 133, 7, 45, 149, 173,
+ 223, 162, 230, 101, 70, 14, 57, 45, 190, 174, 90, 117, 146, 249, 133, 18,
+ 74, 167, 240, 86, 150, 118, 66, 112, 137, 126, 133, 252, 90, 153, 20, 162,
+ 224, 148, 145, 131, 193, 187, 241, 169, 224, 87, 153, 66, 129, 210, 160, 206,
+ 200, 97, 92, 21, 199, 113, 70, 30, 164, 209, 104, 57, 172, 234, 254, 139,
+ 82, 40, 15, 106, 37, 85, 219, 208, 2, 71, 94, 45, 255, 31, 83, 8,
+ 131, 63, 47, 137, 198, 122, 91, 243, 35, 35, 7, 245, 31, 234, 82, 168,
+ 155, 127, 79, 129, 118, 70, 173, 40, 167, 240, 134, 165, 253, 50, 114, 104,
+ 40, 99, 92, 94, 237, 126, 231, 216, 237, 151, 43, 205, 80, 251, 154, 50,
+ 222, 181, 118, 230, 20, 185, 169, 7, 161, 150, 230, 72, 254, 116, 73, 144,
+ 230, 227, 17, 25, 22, 74, 83, 195, 149, 76, 65, 42, 137, 61, 60, 173,
+ 44, 21, 187, 104, 131, 233, 36, 67, 109, 185, 91, 32, 105, 60, 34, 248,
+ 224, 195, 221, 191, 113, 102, 170, 20, 146, 112, 32, 116, 83, 154, 249, 55,
+ 77, 155, 20, 114, 141, 244, 203, 183, 3, 189, 108, 158, 85, 206, 35, 157,
+ 240, 136, 18, 75, 23, 163, 96, 162, 76, 170, 200, 35, 85, 236, 145, 234,
+ 228, 145, 234, 99, 7, 5, 225, 140, 95, 40, 146, 237, 156, 180, 119, 224,
+ 230, 180, 206, 149, 232, 105, 84, 209, 100, 222, 96, 78, 20, 236, 123, 227,
+ 192, 65, 175, 69, 221, 25, 100, 75, 57, 47, 151, 75, 15, 136, 251, 65,
+ 129, 84, 167, 160, 237, 202, 236, 105, 243, 201, 168, 149, 165, 33, 230, 101,
+ 178, 182, 116, 191, 65, 226, 228, 249, 32, 82, 233, 154, 138, 69, 223, 76,
+ 93, 51, 53, 210, 158, 252, 85, 12, 116, 58, 249, 70, 148, 211, 70, 148,
+ 248, 23, 124, 126, 179, 242, 107, 43, 151, 221, 58, 64, 150, 28, 166, 158,
+ 136, 225, 19, 218, 134, 74, 219, 22, 238, 111, 143, 21, 138, 154, 89, 246,
+ 41, 20, 32, 78, 154, 59, 132, 115, 58, 108, 164, 27, 93, 76, 226, 203,
+ 95, 69, 111, 36, 97, 175, 90, 146, 177, 85, 226, 244, 223, 114, 90, 120,
+ 14, 178, 123, 225, 31, 132, 188, 31, 143, 4, 142, 240, 79, 215, 26, 85,
+ 67, 33, 104, 219, 98, 11, 165, 210, 208, 208, 43, 182, 4, 142, 239, 132,
+ 4, 70, 53, 57, 237, 47, 223, 126, 167, 140, 22, 124, 12, 182, 204, 22,
+ 84, 156, 49, 148, 125, 165, 113, 19, 251, 235, 87, 72, 109, 107, 121, 243,
+ 104, 141, 178, 179, 5, 166, 166, 139, 130, 83, 116, 234, 141, 120, 213, 181,
+ 187, 242, 189, 168, 180, 176, 68, 96, 105, 44, 110, 23, 182, 138, 165, 62,
+ 83, 95, 103, 210, 150, 252, 218, 244, 199, 19, 128, 174, 188, 114, 49, 9,
+ 97, 16, 109, 19, 99, 206, 80, 199, 229, 86, 113, 131, 207, 55, 117, 10,
+ 147, 33, 104, 237, 186, 208, 237, 218, 42, 193, 217, 6, 49, 69, 113, 210,
+ 220, 183, 252, 74, 165, 235, 153, 162, 111, 117, 90, 82, 121, 144, 192, 246,
+ 132, 69, 184, 88, 141, 194, 240, 143, 65, 136, 126, 226, 19, 130, 66, 73,
+ 67, 185, 68, 61, 59, 187, 28, 157, 226, 219, 189, 98, 131, 21, 235, 130,
+ 238, 214, 186, 49, 61, 184, 235, 6, 103, 129, 86, 185, 188, 40, 16, 212,
+ 104, 230, 40, 105, 205, 183, 192, 20, 184, 161, 130, 23, 217, 126, 168, 7,
+ 165, 82, 102, 75, 109, 243, 192, 158, 207, 231, 151, 15, 231, 184, 111, 28,
+ 36, 174, 99, 31, 228, 103, 0, 0, 0, 255, 255, 47, 23, 127, 49, 15,
+ 8, 0, 0,
+ },
+ }
+ node.SetMode(420)
+ node.SetName("index.css")
+ node.SetSize(739)
+ return node
+}
+
func generate_index_html() *memfs.Node {
node := &memfs.Node{
- SysPath: "content/index.html",
+ SysPath: "_example/index.html",
Path: "/index.html",
ContentType: "text/html; charset=utf-8",
ContentEncoding: "gzip",
V: []byte{
- 31, 139, 8, 0, 0, 0, 0, 0, 0, 255, 188, 90, 123, 111, 27, 183,
- 178, 255, 219, 251, 41, 166, 74, 110, 145, 20, 210, 174, 45, 199, 77, 34,
- 203, 194, 201, 171, 77, 113, 211, 166, 168, 93, 92, 28, 28, 92, 4, 212,
- 114, 164, 37, 194, 37, 247, 144, 92, 203, 106, 145, 239, 126, 49, 36, 247,
- 161, 151, 227, 196, 185, 199, 254, 67, 187, 124, 12, 231, 249, 155, 33, 185,
- 211, 239, 94, 191, 127, 117, 245, 207, 223, 223, 64, 225, 74, 57, 75, 166,
- 225, 231, 104, 90, 32, 227, 179, 228, 232, 104, 90, 162, 99, 80, 56, 87,
- 141, 240, 223, 181, 184, 190, 24, 188, 210, 202, 161, 114, 163, 171, 117, 133,
- 3, 200, 195, 219, 197, 192, 225, 141, 203, 104, 246, 57, 228, 5, 51, 22,
- 221, 69, 237, 22, 163, 103, 3, 200, 58, 58, 138, 149, 120, 49, 184, 22,
- 184, 170, 180, 113, 189, 217, 43, 193, 93, 113, 193, 241, 90, 228, 56, 242,
- 47, 67, 16, 74, 56, 193, 228, 200, 230, 76, 226, 197, 201, 30, 66, 174,
- 192, 18, 71, 185, 150, 218, 244, 104, 61, 56, 125, 122, 246, 230, 197, 75,
- 63, 158, 38, 56, 225, 36, 206, 254, 7, 101, 174, 75, 4, 167, 33, 23,
- 98, 169, 167, 89, 104, 247, 67, 172, 91, 211, 227, 209, 81, 50, 215, 124,
- 13, 127, 39, 71, 37, 51, 75, 161, 38, 112, 124, 158, 28, 45, 180, 114,
- 163, 5, 43, 133, 92, 79, 224, 133, 17, 76, 14, 193, 50, 101, 71, 22,
- 141, 88, 156, 39, 71, 115, 150, 127, 92, 26, 93, 43, 30, 152, 153, 192,
- 131, 197, 130, 58, 164, 80, 56, 42, 80, 44, 11, 55, 129, 147, 244, 244,
- 60, 57, 34, 61, 141, 152, 20, 75, 53, 129, 28, 149, 67, 115, 158, 28,
- 53, 179, 198, 227, 241, 121, 242, 41, 169, 12, 14, 147, 92, 115, 36, 78,
- 54, 86, 255, 21, 149, 212, 67, 40, 181, 210, 182, 98, 57, 54, 220, 89,
- 241, 23, 78, 224, 56, 125, 246, 244, 204, 96, 25, 105, 208, 236, 45, 14,
- 158, 156, 39, 71, 250, 26, 205, 66, 234, 213, 232, 102, 2, 172, 118, 122,
- 67, 128, 9, 60, 192, 5, 253, 159, 39, 71, 21, 227, 92, 168, 37, 209,
- 253, 113, 28, 232, 30, 205, 181, 225, 104, 70, 134, 113, 81, 91, 234, 57,
- 61, 25, 55, 75, 50, 90, 176, 17, 229, 248, 248, 41, 127, 158, 55, 2,
- 115, 204, 181, 97, 78, 104, 53, 1, 165, 21, 250, 225, 147, 130, 88, 161,
- 73, 59, 99, 106, 197, 209, 16, 239, 52, 48, 169, 134, 137, 20, 193, 42,
- 55, 193, 59, 38, 112, 118, 28, 24, 90, 105, 195, 71, 43, 195, 170, 9,
- 204, 13, 178, 143, 35, 106, 160, 89, 82, 64, 213, 183, 228, 184, 186, 241,
- 122, 25, 6, 245, 214, 114, 152, 104, 217, 31, 112, 146, 182, 146, 36, 197,
- 201, 48, 41, 198, 195, 164, 56, 29, 38, 197, 147, 61, 163, 224, 184, 27,
- 223, 83, 212, 249, 30, 5, 120, 3, 173, 162, 9, 230, 90, 122, 238, 138,
- 147, 214, 182, 193, 118, 39, 105, 52, 221, 150, 201, 226, 224, 212, 171, 168,
- 172, 29, 242, 190, 150, 159, 62, 125, 234, 7, 140, 125, 163, 68, 102, 38,
- 96, 104, 230, 249, 22, 241, 214, 126, 27, 150, 62, 198, 249, 226, 108, 211,
- 210, 123, 153, 72, 199, 103, 219, 130, 40, 109, 74, 38, 123, 238, 212, 58,
- 83, 235, 95, 251, 172, 82, 140, 129, 181, 146, 239, 40, 229, 116, 71, 41,
- 227, 91, 248, 249, 194, 149, 15, 155, 178, 239, 196, 97, 72, 159, 135, 214,
- 39, 198, 48, 3, 91, 49, 69, 110, 17, 31, 253, 88, 169, 153, 235, 212,
- 222, 34, 7, 140, 207, 170, 27, 56, 238, 32, 100, 71, 117, 141, 21, 207,
- 198, 79, 159, 231, 222, 144, 9, 63, 228, 146, 156, 111, 192, 146, 255, 239,
- 119, 203, 97, 28, 114, 0, 15, 146, 236, 135, 31, 18, 248, 1, 94, 213,
- 214, 233, 18, 114, 201, 172, 69, 11, 11, 109, 160, 98, 75, 180, 9, 252,
- 144, 37, 73, 234, 116, 53, 103, 62, 38, 247, 123, 74, 99, 130, 39, 193,
- 44, 157, 9, 10, 193, 57, 42, 191, 82, 67, 132, 126, 71, 148, 72, 132,
- 90, 14, 187, 214, 18, 85, 77, 11, 180, 78, 119, 146, 158, 158, 156, 122,
- 67, 28, 242, 218, 189, 234, 251, 180, 119, 161, 158, 69, 36, 46, 220, 193,
- 97, 27, 96, 229, 113, 247, 48, 82, 37, 27, 51, 83, 122, 64, 51, 146,
- 122, 169, 137, 72, 163, 146, 113, 4, 164, 136, 79, 105, 231, 83, 187, 178,
- 111, 250, 204, 167, 173, 1, 108, 195, 212, 17, 124, 225, 184, 165, 184, 23,
- 153, 163, 44, 171, 66, 56, 220, 14, 244, 22, 139, 2, 124, 211, 188, 227,
- 72, 213, 106, 41, 248, 206, 136, 22, 224, 207, 2, 106, 110, 242, 183, 208,
- 166, 36, 22, 185, 176, 149, 100, 235, 9, 8, 229, 227, 115, 46, 117, 254,
- 49, 8, 76, 62, 69, 67, 162, 54, 78, 142, 143, 255, 171, 215, 49, 131,
- 148, 210, 53, 19, 10, 77, 231, 25, 91, 173, 11, 173, 29, 110, 182, 118,
- 122, 25, 145, 113, 219, 192, 143, 109, 38, 24, 34, 54, 118, 74, 234, 121,
- 82, 63, 131, 60, 79, 79, 159, 181, 22, 218, 225, 171, 205, 75, 49, 89,
- 55, 222, 148, 244, 134, 164, 190, 24, 105, 131, 142, 170, 136, 9, 8, 199,
- 164, 200, 207, 247, 39, 150, 70, 170, 191, 63, 83, 9, 252, 248, 227, 143,
- 135, 114, 123, 151, 209, 210, 179, 24, 53, 33, 188, 247, 197, 54, 179, 185,
- 16, 92, 231, 20, 221, 15, 156, 206, 125, 209, 179, 97, 187, 198, 201, 169,
- 23, 66, 154, 149, 194, 182, 210, 108, 116, 215, 18, 82, 139, 185, 147, 120,
- 141, 242, 100, 35, 136, 143, 201, 81, 90, 214, 158, 4, 183, 217, 157, 52,
- 238, 187, 118, 28, 149, 252, 163, 68, 46, 24, 216, 220, 32, 42, 96, 138,
- 195, 163, 158, 157, 158, 63, 31, 87, 55, 143, 105, 158, 39, 247, 119, 114,
- 116, 196, 164, 164, 26, 193, 34, 1, 238, 39, 34, 113, 116, 52, 205, 154,
- 42, 110, 154, 197, 234, 117, 74, 213, 156, 47, 26, 185, 184, 14, 106, 185,
- 24, 4, 103, 27, 80, 243, 70, 123, 107, 213, 208, 181, 61, 167, 9, 255,
- 216, 123, 52, 101, 80, 24, 92, 92, 12, 178, 193, 44, 22, 148, 44, 78,
- 204, 184, 184, 222, 165, 65, 145, 211, 78, 246, 17, 20, 59, 132, 195, 114,
- 0, 44, 39, 204, 185, 24, 100, 31, 4, 185, 130, 98, 50, 179, 200, 76,
- 94, 52, 115, 142, 166, 66, 85, 181, 3, 183, 174, 48, 148, 219, 131, 88,
- 6, 255, 123, 0, 149, 100, 57, 22, 90, 114, 52, 23, 131, 203, 48, 47,
- 212, 203, 158, 33, 90, 110, 155, 185, 246, 41, 62, 108, 169, 137, 226, 225,
- 14, 74, 42, 78, 246, 84, 214, 197, 201, 62, 241, 29, 107, 68, 185, 44,
- 106, 89, 48, 21, 185, 155, 155, 150, 211, 241, 25, 92, 98, 229, 176, 156,
- 163, 129, 241, 241, 201, 243, 189, 10, 21, 252, 98, 80, 25, 100, 229, 92,
- 18, 139, 253, 85, 200, 207, 132, 86, 100, 247, 173, 158, 138, 25, 182, 52,
- 172, 34, 125, 78, 171, 217, 148, 202, 235, 198, 112, 254, 25, 132, 5, 6,
- 82, 204, 13, 51, 107, 239, 132, 12, 42, 163, 151, 134, 149, 36, 218, 202,
- 8, 135, 96, 29, 115, 34, 135, 21, 206, 193, 162, 161, 234, 117, 37, 92,
- 1, 196, 48, 231, 200, 147, 133, 144, 104, 161, 182, 148, 39, 150, 168, 208,
- 48, 42, 216, 74, 102, 62, 214, 149, 135, 77, 230, 210, 105, 86, 205, 146,
- 40, 211, 45, 28, 190, 170, 141, 65, 229, 228, 122, 24, 212, 10, 182, 174,
- 104, 215, 148, 180, 158, 71, 187, 50, 59, 201, 178, 38, 198, 157, 54, 169,
- 54, 203, 140, 235, 220, 102, 171, 130, 185, 145, 176, 163, 166, 51, 27, 204,
- 154, 71, 239, 169, 76, 241, 93, 74, 185, 46, 75, 173, 136, 93, 79, 104,
- 48, 163, 71, 174, 87, 42, 76, 177, 183, 73, 178, 249, 179, 101, 147, 19,
- 146, 169, 24, 123, 211, 125, 240, 226, 124, 96, 246, 67, 84, 118, 12, 32,
- 96, 182, 81, 255, 52, 43, 198, 95, 105, 216, 171, 66, 88, 136, 163, 129,
- 163, 205, 141, 152, 147, 221, 176, 130, 249, 58, 252, 10, 101, 157, 169, 253,
- 8, 11, 90, 65, 161, 87, 100, 225, 121, 45, 36, 247, 134, 207, 13, 50,
- 135, 137, 175, 139, 124, 15, 2, 237, 89, 145, 123, 72, 149, 58, 103, 18,
- 56, 161, 153, 174, 74, 84, 46, 218, 123, 215, 165, 14, 154, 90, 19, 194,
- 2, 51, 108, 46, 114, 98, 91, 203, 166, 167, 107, 147, 34, 184, 129, 212,
- 10, 193, 21, 184, 135, 62, 24, 172, 180, 21, 78, 155, 117, 154, 252, 164,
- 13, 224, 13, 43, 43, 137, 67, 144, 232, 44, 88, 182, 134, 21, 66, 193,
- 174, 17, 114, 34, 195, 63, 79, 7, 132, 114, 58, 9, 67, 30, 190, 125,
- 255, 235, 155, 108, 169, 51, 107, 242, 108, 41, 92, 81, 207, 211, 92, 151,
- 153, 45, 234, 119, 5, 83, 217, 62, 81, 61, 215, 13, 235, 94, 141, 160,
- 112, 5, 63, 235, 254, 26, 164, 69, 175, 237, 80, 136, 173, 112, 110, 133,
- 195, 45, 17, 132, 2, 46, 12, 230, 126, 198, 30, 134, 12, 150, 218, 97,
- 234, 36, 207, 106, 139, 38, 43, 215, 68, 164, 97, 39, 249, 3, 61, 38,
- 194, 247, 15, 78, 159, 156, 239, 31, 235, 187, 66, 0, 175, 117, 109, 160,
- 50, 226, 154, 24, 166, 146, 184, 158, 75, 145, 247, 245, 27, 228, 235, 217,
- 144, 76, 40, 212, 210, 215, 60, 91, 46, 25, 143, 34, 188, 67, 26, 156,
- 61, 132, 242, 35, 23, 6, 70, 21, 220, 65, 130, 228, 33, 228, 252, 46,
- 3, 167, 25, 17, 223, 137, 191, 190, 5, 126, 89, 144, 100, 80, 91, 36,
- 11, 148, 154, 215, 164, 217, 224, 222, 222, 23, 218, 214, 115, 16, 189, 177,
- 239, 127, 127, 113, 245, 22, 196, 82, 105, 67, 227, 132, 77, 0, 124, 236,
- 220, 79, 13, 75, 191, 154, 63, 216, 129, 175, 150, 41, 122, 85, 227, 27,
- 34, 22, 58, 150, 158, 213, 18, 200, 144, 113, 225, 6, 196, 89, 254, 145,
- 138, 187, 185, 80, 140, 2, 37, 128, 13, 201, 105, 157, 17, 185, 235, 185,
- 89, 192, 133, 218, 32, 97, 81, 19, 58, 20, 226, 4, 38, 108, 174, 175,
- 241, 27, 249, 65, 94, 242, 206, 220, 93, 107, 24, 159, 81, 249, 230, 108,
- 191, 199, 97, 89, 73, 230, 208, 222, 69, 65, 186, 90, 123, 227, 198, 80,
- 2, 189, 0, 95, 26, 217, 2, 49, 40, 229, 237, 213, 175, 239, 90, 154,
- 176, 48, 186, 188, 29, 21, 134, 247, 146, 58, 223, 242, 251, 67, 80, 146,
- 109, 202, 31, 234, 185, 52, 183, 22, 210, 237, 174, 228, 11, 168, 182, 186,
- 243, 199, 147, 169, 43, 43, 9, 105, 175, 245, 238, 62, 199, 40, 94, 172,
- 174, 77, 142, 224, 143, 231, 132, 242, 138, 54, 90, 187, 62, 190, 57, 221,
- 38, 127, 96, 82, 182, 89, 147, 138, 3, 138, 36, 161, 172, 224, 17, 154,
- 162, 96, 1, 139, 58, 79, 36, 24, 246, 102, 74, 105, 194, 59, 130, 115,
- 42, 246, 56, 8, 23, 77, 213, 172, 144, 118, 6, 243, 80, 70, 12, 45,
- 180, 148, 122, 69, 225, 16, 201, 223, 199, 128, 89, 182, 212, 147, 86, 158,
- 165, 6, 83, 43, 232, 173, 158, 36, 77, 132, 149, 76, 168, 36, 17, 37,
- 149, 41, 240, 136, 24, 247, 127, 94, 182, 67, 230, 241, 157, 201, 227, 36,
- 89, 212, 42, 247, 20, 30, 81, 173, 223, 204, 245, 99, 210, 159, 227, 106,
- 143, 252, 232, 214, 27, 252, 219, 48, 234, 177, 141, 168, 44, 20, 105, 105,
- 164, 29, 251, 247, 120, 129, 111, 127, 156, 124, 186, 187, 3, 144, 110, 137,
- 69, 242, 131, 232, 0, 222, 146, 49, 120, 90, 22, 162, 65, 238, 163, 245,
- 255, 71, 157, 90, 115, 13, 147, 139, 168, 218, 223, 112, 117, 233, 43, 217,
- 91, 116, 59, 121, 118, 252, 236, 56, 106, 171, 79, 37, 189, 116, 204, 184,
- 71, 95, 164, 66, 230, 235, 129, 94, 68, 68, 229, 9, 197, 241, 38, 101,
- 190, 60, 141, 245, 248, 103, 163, 196, 199, 198, 27, 150, 23, 93, 211, 144,
- 178, 183, 173, 231, 253, 22, 91, 232, 90, 242, 0, 230, 135, 22, 11, 85,
- 30, 155, 75, 218, 199, 16, 89, 150, 231, 104, 45, 114, 170, 26, 231, 70,
- 175, 44, 154, 251, 152, 243, 2, 224, 10, 173, 75, 38, 29, 18, 79, 96,
- 7, 232, 146, 228, 45, 74, 169, 135, 176, 210, 70, 242, 239, 238, 160, 213,
- 63, 106, 213, 224, 65, 7, 58, 61, 161, 114, 173, 174, 209, 56, 15, 67,
- 97, 115, 18, 54, 44, 55, 14, 149, 165, 172, 22, 38, 111, 232, 226, 145,
- 54, 77, 115, 201, 99, 227, 227, 128, 91, 17, 148, 124, 18, 241, 155, 30,
- 194, 35, 223, 28, 39, 100, 251, 226, 48, 210, 184, 111, 237, 208, 137, 247,
- 89, 181, 252, 166, 87, 30, 166, 186, 122, 183, 207, 217, 6, 94, 134, 238,
- 215, 111, 94, 254, 249, 115, 211, 142, 234, 90, 24, 173, 124, 109, 127, 205,
- 140, 240, 110, 225, 183, 21, 247, 2, 210, 135, 128, 55, 62, 140, 253, 98,
- 23, 39, 201, 195, 6, 77, 55, 153, 219, 39, 221, 225, 13, 207, 11, 181,
- 6, 165, 21, 252, 133, 70, 195, 53, 147, 53, 66, 107, 214, 131, 82, 89,
- 177, 84, 76, 134, 228, 85, 43, 69, 153, 162, 191, 215, 101, 46, 47, 146,
- 188, 96, 138, 54, 64, 66, 133, 24, 244, 62, 18, 34, 48, 120, 210, 29,
- 210, 24, 249, 137, 223, 40, 251, 165, 218, 29, 113, 226, 157, 40, 12, 147,
- 235, 173, 125, 100, 223, 142, 239, 43, 12, 70, 164, 29, 119, 12, 67, 96,
- 77, 10, 244, 59, 177, 66, 91, 231, 1, 170, 231, 245, 180, 91, 219, 92,
- 49, 230, 210, 127, 234, 186, 129, 3, 139, 145, 245, 141, 144, 11, 2, 48,
- 219, 65, 61, 237, 2, 55, 118, 55, 153, 150, 119, 177, 203, 85, 193, 156,
- 5, 225, 190, 187, 235, 126, 63, 224, 163, 54, 80, 87, 220, 35, 165, 90,
- 239, 40, 94, 155, 208, 52, 44, 249, 151, 89, 98, 72, 2, 37, 141, 141,
- 87, 66, 74, 127, 76, 90, 82, 132, 50, 41, 215, 61, 77, 145, 228, 222,
- 62, 68, 123, 8, 243, 218, 249, 141, 129, 117, 52, 73, 33, 141, 208, 137,
- 193, 133, 65, 91, 236, 216, 198, 105, 144, 154, 5, 34, 4, 244, 29, 89,
- 162, 118, 112, 67, 76, 27, 246, 177, 63, 35, 56, 13, 103, 4, 28, 43,
- 169, 215, 165, 143, 158, 215, 237, 243, 52, 43, 78, 111, 85, 226, 79, 194,
- 88, 55, 164, 210, 61, 50, 186, 1, 128, 253, 58, 236, 176, 206, 54, 80,
- 46, 225, 117, 89, 121, 105, 154, 77, 133, 94, 120, 90, 241, 36, 232, 118,
- 90, 195, 67, 242, 126, 83, 228, 187, 205, 7, 49, 108, 91, 32, 215, 101,
- 73, 193, 232, 45, 223, 22, 115, 187, 229, 236, 70, 37, 227, 246, 161, 248,
- 93, 207, 175, 46, 49, 215, 138, 15, 227, 177, 74, 227, 39, 241, 212, 204,
- 21, 204, 69, 96, 136, 138, 140, 98, 219, 142, 137, 237, 133, 191, 149, 50,
- 3, 67, 95, 15, 184, 87, 133, 48, 124, 8, 14, 173, 219, 22, 107, 190,
- 110, 225, 148, 122, 154, 112, 35, 197, 235, 10, 85, 119, 74, 180, 23, 185,
- 18, 173, 250, 177, 244, 77, 228, 77, 191, 82, 200, 159, 132, 34, 88, 24,
- 66, 8, 196, 13, 113, 156, 14, 231, 37, 65, 232, 187, 250, 195, 212, 58,
- 163, 213, 114, 246, 219, 251, 171, 55, 147, 105, 22, 223, 224, 229, 26, 56,
- 46, 88, 45, 221, 176, 59, 82, 149, 18, 72, 72, 84, 148, 202, 24, 231,
- 6, 173, 141, 154, 59, 78, 253, 127, 3, 246, 204, 129, 79, 169, 161, 179,
- 167, 204, 52, 137, 135, 31, 13, 16, 208, 134, 159, 41, 237, 10, 52, 126,
- 202, 208, 247, 230, 76, 65, 72, 116, 84, 201, 180, 153, 165, 87, 197, 80,
- 18, 56, 228, 253, 95, 127, 244, 153, 75, 209, 59, 246, 124, 245, 238, 151,
- 123, 28, 121, 246, 201, 4, 129, 2, 230, 13, 219, 64, 31, 146, 11, 102,
- 58, 154, 12, 88, 47, 67, 251, 72, 140, 199, 250, 54, 233, 35, 228, 144,
- 72, 182, 137, 192, 222, 29, 187, 107, 235, 239, 14, 254, 164, 159, 93, 196,
- 254, 162, 147, 3, 47, 217, 191, 70, 237, 81, 197, 247, 210, 157, 19, 55,
- 223, 47, 221, 249, 255, 182, 216, 78, 173, 92, 24, 106, 252, 82, 63, 191,
- 36, 125, 145, 115, 123, 188, 38, 34, 62, 7, 24, 204, 107, 99, 197, 53,
- 74, 191, 155, 95, 8, 197, 55, 179, 199, 35, 159, 148, 41, 31, 167, 37,
- 127, 236, 51, 69, 195, 141, 43, 176, 236, 37, 145, 160, 188, 132, 160, 184,
- 19, 131, 22, 241, 114, 132, 140, 99, 65, 87, 100, 107, 38, 135, 77, 52,
- 208, 178, 205, 181, 194, 230, 121, 205, 65, 67, 124, 67, 205, 254, 107, 164,
- 107, 183, 213, 214, 102, 141, 123, 168, 251, 213, 103, 178, 113, 231, 151, 135,
- 237, 65, 104, 234, 10, 84, 73, 216, 128, 116, 234, 14, 197, 82, 220, 254,
- 54, 137, 205, 151, 29, 94, 251, 186, 118, 85, 237, 194, 158, 243, 144, 198,
- 67, 6, 247, 65, 186, 121, 138, 64, 105, 41, 15, 55, 50, 73, 183, 255,
- 252, 143, 88, 162, 193, 63, 106, 23, 213, 132, 176, 43, 116, 133, 96, 190,
- 143, 243, 7, 52, 104, 183, 134, 159, 49, 66, 184, 230, 120, 123, 117, 245,
- 123, 68, 234, 225, 214, 78, 65, 171, 77, 163, 250, 187, 148, 126, 84, 108,
- 196, 196, 102, 1, 234, 241, 154, 2, 177, 17, 87, 88, 80, 218, 249, 61,
- 23, 8, 103, 119, 172, 212, 29, 74, 220, 19, 147, 165, 40, 133, 243, 95,
- 124, 216, 15, 76, 241, 15, 31, 149, 94, 169, 15, 243, 122, 105, 7, 179,
- 119, 93, 159, 151, 230, 191, 169, 15, 94, 214, 75, 123, 15, 188, 222, 115,
- 212, 234, 83, 30, 137, 91, 48, 197, 37, 118, 170, 129, 28, 141, 19, 11,
- 145, 147, 103, 60, 194, 116, 153, 70, 51, 188, 67, 103, 223, 168, 220, 172,
- 43, 247, 216, 43, 40, 169, 43, 210, 13, 227, 165, 80, 194, 58, 195, 156,
- 54, 225, 106, 139, 138, 215, 30, 21, 102, 16, 150, 140, 242, 32, 114, 2,
- 176, 182, 68, 191, 107, 38, 255, 211, 51, 96, 215, 165, 20, 234, 35, 25,
- 125, 223, 246, 112, 235, 104, 44, 120, 125, 35, 110, 239, 156, 51, 90, 57,
- 220, 109, 34, 135, 53, 126, 245, 189, 162, 193, 16, 243, 118, 48, 251, 163,
- 121, 188, 215, 77, 34, 110, 84, 199, 11, 109, 252, 93, 8, 88, 189, 112,
- 43, 210, 34, 229, 142, 238, 110, 144, 237, 185, 154, 61, 116, 66, 55, 104,
- 214, 156, 51, 131, 131, 217, 231, 134, 251, 235, 87, 255, 77, 36, 228, 225,
- 27, 143, 238, 243, 131, 119, 191, 188, 122, 243, 219, 229, 155, 193, 236, 229,
- 229, 107, 144, 34, 71, 101, 145, 198, 127, 245, 237, 172, 65, 46, 156, 29,
- 208, 134, 148, 30, 238, 125, 23, 219, 104, 75, 216, 230, 210, 20, 121, 56,
- 122, 41, 80, 86, 54, 92, 63, 56, 42, 170, 161, 98, 198, 173, 227, 37,
- 176, 104, 178, 102, 119, 152, 221, 92, 235, 250, 219, 83, 173, 228, 58, 58,
- 210, 158, 217, 135, 177, 185, 166, 217, 196, 95, 45, 187, 115, 134, 219, 12,
- 55, 95, 59, 180, 36, 25, 23, 22, 51, 41, 230, 205, 61, 250, 96, 214,
- 123, 241, 42, 79, 0, 96, 135, 148, 97, 171, 52, 144, 171, 45, 154, 24,
- 9, 183, 83, 206, 74, 102, 29, 154, 206, 182, 239, 118, 237, 218, 63, 38,
- 185, 141, 253, 117, 45, 84, 182, 212, 146, 19, 52, 15, 102, 205, 211, 215,
- 240, 187, 65, 234, 206, 60, 102, 181, 60, 224, 135, 27, 223, 118, 36, 189,
- 151, 237, 143, 81, 194, 71, 83, 225, 243, 145, 87, 186, 90, 251, 15, 189,
- 96, 124, 60, 62, 30, 66, 252, 152, 196, 231, 193, 210, 254, 227, 163, 144,
- 108, 46, 92, 42, 212, 66, 83, 78, 76, 225, 133, 148, 225, 67, 59, 11,
- 6, 125, 226, 226, 105, 178, 241, 225, 201, 159, 214, 95, 146, 197, 224, 238,
- 237, 135, 45, 44, 245, 53, 26, 21, 142, 129, 25, 188, 188, 124, 29, 190,
- 139, 106, 2, 45, 150, 207, 30, 7, 136, 210, 66, 215, 138, 55, 215, 66,
- 123, 98, 52, 62, 144, 142, 98, 101, 210, 73, 61, 205, 194, 231, 74, 83,
- 127, 67, 49, 251, 191, 0, 0, 0, 255, 255, 49, 56, 50, 15, 155, 47,
- 0, 0,
+ 31, 139, 8, 0, 0, 0, 0, 0, 0, 255, 188, 90, 123, 143, 219, 182,
+ 178, 255, 59, 250, 20, 83, 53, 8, 18, 192, 182, 242, 184, 69, 219, 173,
+ 237, 139, 102, 179, 77, 130, 187, 109, 138, 236, 22, 23, 69, 113, 177, 160,
+ 200, 177, 68, 44, 69, 170, 36, 101, 199, 189, 56, 223, 253, 96, 72, 73,
+ 150, 189, 246, 214, 251, 232, 217, 253, 195, 18, 31, 195, 153, 223, 60, 56,
+ 28, 106, 250, 213, 187, 79, 167, 151, 191, 255, 122, 6, 165, 175, 212, 60,
+ 153, 198, 159, 39, 211, 18, 153, 152, 39, 79, 158, 76, 43, 244, 12, 74,
+ 239, 235, 49, 254, 217, 200, 229, 44, 61, 53, 218, 163, 246, 227, 203, 117,
+ 141, 41, 240, 248, 54, 75, 61, 126, 241, 25, 205, 254, 1, 120, 201, 172,
+ 67, 63, 107, 252, 98, 252, 93, 10, 217, 134, 142, 102, 21, 206, 210, 165,
+ 196, 85, 109, 172, 31, 204, 94, 73, 225, 203, 153, 192, 165, 228, 56, 14,
+ 47, 35, 144, 90, 122, 201, 212, 216, 113, 166, 112, 246, 106, 15, 33, 95,
+ 98, 133, 99, 110, 148, 177, 3, 90, 95, 191, 249, 246, 155, 179, 31, 223,
+ 134, 241, 52, 193, 75, 175, 112, 254, 191, 168, 184, 169, 16, 188, 1, 46,
+ 101, 97, 166, 89, 108, 167, 17, 74, 234, 107, 176, 168, 102, 169, 243, 107,
+ 133, 174, 68, 244, 41, 148, 22, 23, 179, 52, 147, 90, 224, 151, 9, 119,
+ 46, 50, 48, 205, 90, 104, 166, 185, 17, 235, 48, 93, 200, 37, 112, 197,
+ 156, 155, 165, 222, 212, 57, 179, 41, 53, 111, 181, 19, 115, 76, 106, 108,
+ 187, 118, 231, 140, 137, 166, 212, 69, 219, 251, 100, 202, 186, 213, 211, 121,
+ 203, 45, 107, 39, 102, 66, 46, 111, 210, 168, 80, 55, 253, 228, 133, 177,
+ 85, 215, 33, 61, 86, 41, 48, 238, 165, 209, 179, 52, 187, 146, 218, 163,
+ 213, 76, 101, 14, 153, 229, 101, 55, 231, 201, 84, 234, 186, 241, 224, 215,
+ 53, 70, 93, 166, 45, 198, 127, 166, 80, 43, 198, 177, 52, 74, 160, 157,
+ 165, 23, 113, 94, 84, 70, 96, 136, 150, 59, 158, 185, 94, 50, 215, 228,
+ 233, 252, 162, 201, 247, 136, 214, 63, 181, 15, 59, 32, 215, 172, 192, 35,
+ 32, 46, 95, 237, 81, 122, 249, 106, 31, 127, 158, 117, 252, 93, 148, 141,
+ 42, 153, 110, 153, 205, 109, 47, 231, 235, 111, 224, 2, 107, 143, 85, 142,
+ 22, 94, 191, 124, 245, 253, 94, 137, 165, 152, 165, 181, 69, 86, 229, 138,
+ 88, 28, 174, 226, 48, 40, 129, 172, 102, 167, 167, 102, 150, 21, 150, 213,
+ 164, 141, 105, 61, 159, 186, 154, 233, 94, 127, 85, 16, 118, 42, 171, 2,
+ 156, 229, 179, 148, 92, 209, 157, 100, 153, 172, 138, 137, 43, 37, 42, 225,
+ 38, 210, 100, 57, 19, 5, 102, 133, 153, 8, 92, 142, 45, 46, 208, 162,
+ 230, 56, 126, 249, 242, 91, 241, 61, 255, 111, 101, 10, 51, 43, 204, 51,
+ 250, 61, 37, 119, 153, 173, 74, 233, 241, 89, 48, 247, 217, 66, 49, 63,
+ 118, 127, 54, 204, 98, 10, 76, 249, 89, 250, 222, 188, 51, 60, 157, 79,
+ 51, 98, 101, 158, 28, 199, 81, 97, 44, 146, 91, 115, 102, 197, 132, 155,
+ 170, 227, 73, 250, 178, 201, 67, 131, 43, 155, 243, 146, 233, 44, 232, 162,
+ 95, 10, 62, 135, 105, 112, 202, 172, 232, 215, 156, 102, 245, 60, 105, 209,
+ 189, 13, 43, 110, 4, 118, 46, 18, 158, 65, 58, 96, 160, 100, 110, 153,
+ 93, 3, 211, 2, 24, 212, 214, 20, 150, 85, 100, 6, 43, 43, 61, 130,
+ 243, 204, 75, 14, 43, 204, 193, 161, 93, 162, 133, 149, 244, 37, 144, 114,
+ 133, 64, 145, 44, 164, 66, 7, 141, 147, 186, 128, 2, 53, 90, 230, 81,
+ 64, 197, 236, 117, 83, 3, 217, 59, 243, 147, 35, 57, 60, 109, 172, 69,
+ 237, 213, 122, 20, 77, 16, 92, 83, 147, 184, 73, 239, 9, 29, 126, 204,
+ 113, 41, 133, 225, 222, 216, 137, 177, 69, 38, 12, 119, 217, 170, 100, 126,
+ 44, 221, 184, 235, 204, 210, 121, 247, 24, 28, 135, 105, 113, 147, 18, 55,
+ 85, 101, 52, 177, 27, 8, 165, 115, 122, 20, 102, 165, 227, 20, 119, 155,
+ 36, 219, 63, 59, 246, 251, 138, 100, 42, 95, 7, 51, 191, 10, 226, 92,
+ 49, 119, 213, 130, 221, 134, 42, 96, 174, 131, 127, 154, 149, 175, 239, 233,
+ 4, 63, 25, 11, 76, 67, 83, 147, 210, 4, 243, 8, 194, 240, 166, 66,
+ 77, 154, 51, 26, 204, 2, 74, 179, 162, 206, 198, 33, 248, 18, 123, 149,
+ 59, 12, 239, 55, 81, 169, 175, 139, 73, 116, 144, 195, 54, 57, 127, 111,
+ 118, 22, 162, 96, 67, 176, 61, 24, 37, 174, 228, 0, 161, 211, 243, 143,
+ 15, 64, 103, 72, 6, 56, 249, 166, 209, 75, 180, 126, 212, 91, 235, 136,
+ 76, 63, 51, 54, 218, 55, 48, 16, 210, 34, 153, 214, 26, 124, 201, 60,
+ 180, 209, 210, 37, 157, 41, 144, 197, 143, 136, 228, 135, 203, 159, 207, 227,
+ 235, 65, 19, 39, 62, 95, 7, 33, 223, 68, 33, 27, 23, 98, 194, 111,
+ 46, 128, 85, 190, 217, 30, 174, 164, 243, 82, 23, 185, 50, 252, 122, 71,
+ 174, 118, 211, 14, 82, 89, 156, 63, 109, 125, 228, 143, 177, 199, 170, 86,
+ 164, 246, 103, 202, 255, 64, 220, 60, 43, 252, 15, 255, 215, 201, 25, 90,
+ 133, 180, 212, 56, 205, 104, 230, 45, 42, 217, 193, 238, 130, 240, 34, 131,
+ 121, 246, 245, 155, 255, 10, 68, 232, 23, 44, 242, 198, 58, 185, 68, 181,
+ 38, 171, 90, 72, 189, 113, 248, 16, 13, 158, 79, 152, 48, 28, 140, 133,
+ 73, 37, 94, 16, 188, 73, 199, 13, 229, 33, 32, 181, 55, 67, 240, 146,
+ 203, 18, 97, 35, 6, 45, 18, 228, 8, 171, 73, 7, 166, 38, 93, 51,
+ 53, 2, 129, 11, 214, 40, 79, 203, 118, 17, 40, 18, 234, 102, 31, 84,
+ 196, 35, 34, 251, 199, 216, 52, 126, 167, 173, 51, 166, 135, 192, 125, 218,
+ 98, 196, 148, 218, 198, 83, 106, 39, 5, 14, 236, 242, 176, 62, 40, 138,
+ 251, 18, 117, 18, 224, 25, 192, 29, 134, 78, 10, 19, 167, 56, 211, 88,
+ 142, 129, 124, 68, 223, 52, 158, 146, 26, 106, 56, 136, 120, 152, 26, 157,
+ 52, 238, 10, 61, 57, 169, 129, 199, 224, 157, 244, 76, 254, 103, 52, 193,
+ 132, 176, 232, 92, 104, 151, 245, 9, 109, 23, 177, 43, 58, 243, 67, 140,
+ 63, 70, 3, 165, 142, 83, 66, 220, 1, 63, 92, 94, 254, 218, 238, 147,
+ 35, 88, 49, 207, 203, 132, 151, 76, 23, 232, 192, 232, 109, 165, 146, 166,
+ 182, 188, 98, 203, 39, 128, 53, 222, 84, 4, 50, 83, 106, 61, 73, 62,
+ 46, 130, 35, 118, 226, 74, 7, 218, 120, 112, 232, 71, 32, 189, 187, 161,
+ 165, 147, 239, 94, 126, 247, 50, 170, 252, 150, 96, 124, 68, 76, 198, 47,
+ 172, 170, 41, 65, 59, 139, 15, 15, 136, 196, 151, 165, 116, 208, 142, 6,
+ 129, 142, 91, 153, 83, 126, 129, 53, 228, 235, 248, 43, 181, 243, 182, 9,
+ 35, 2, 96, 237, 190, 149, 55, 82, 137, 8, 152, 69, 230, 49, 161, 157,
+ 198, 133, 30, 4, 58, 34, 161, 160, 13, 26, 148, 225, 76, 129, 192, 37,
+ 42, 83, 211, 190, 212, 106, 229, 102, 234, 115, 108, 74, 242, 147, 180, 206,
+ 143, 128, 43, 163, 227, 214, 185, 39, 139, 162, 84, 206, 201, 96, 242, 201,
+ 57, 122, 112, 108, 237, 226, 206, 177, 66, 40, 217, 18, 227, 116, 241, 247,
+ 243, 131, 167, 38, 113, 200, 211, 15, 159, 126, 62, 203, 10, 147, 57, 203,
+ 15, 110, 194, 119, 148, 230, 52, 160, 7, 26, 87, 240, 222, 12, 215, 37,
+ 240, 2, 200, 132, 22, 163, 100, 207, 73, 143, 147, 132, 82, 139, 214, 2,
+ 232, 144, 57, 48, 254, 61, 76, 90, 172, 140, 199, 137, 87, 34, 107, 28,
+ 218, 172, 90, 19, 145, 142, 197, 228, 51, 134, 195, 81, 180, 207, 253, 99,
+ 163, 39, 133, 252, 114, 109, 26, 11, 181, 149, 75, 98, 216, 88, 168, 155,
+ 92, 73, 62, 196, 250, 49, 194, 75, 117, 45, 164, 133, 113, 13, 71, 8,
+ 146, 60, 5, 46, 142, 25, 120, 215, 64, 243, 49, 30, 222, 229, 95, 209,
+ 194, 222, 27, 168, 140, 104, 20, 142, 30, 67, 194, 34, 80, 11, 5, 2,
+ 120, 28, 118, 91, 35, 234, 76, 65, 162, 11, 230, 227, 232, 89, 23, 64,
+ 122, 107, 185, 232, 142, 20, 140, 95, 179, 2, 33, 151, 154, 61, 182, 222,
+ 120, 37, 54, 234, 233, 91, 175, 218, 9, 238, 238, 59, 112, 189, 14, 74,
+ 104, 141, 158, 114, 231, 77, 157, 35, 200, 179, 149, 109, 192, 194, 154, 234,
+ 118, 159, 126, 20, 45, 242, 29, 11, 61, 20, 15, 178, 46, 94, 111, 74,
+ 49, 48, 201, 122, 56, 178, 228, 62, 164, 74, 95, 169, 137, 175, 106, 181,
+ 69, 234, 158, 102, 195, 200, 190, 219, 236, 131, 160, 162, 168, 66, 128, 91,
+ 99, 252, 48, 34, 121, 179, 73, 169, 118, 243, 161, 164, 221, 138, 251, 204,
+ 180, 231, 42, 6, 144, 77, 148, 218, 36, 154, 164, 58, 209, 84, 117, 32,
+ 102, 194, 102, 42, 123, 67, 117, 49, 240, 134, 217, 59, 153, 77, 204, 144,
+ 206, 209, 187, 80, 228, 17, 32, 125, 171, 239, 142, 189, 201, 70, 235, 33,
+ 114, 17, 87, 11, 163, 148, 89, 145, 59, 180, 43, 60, 130, 21, 100, 89,
+ 97, 78, 122, 76, 10, 3, 182, 209, 48, 96, 34, 73, 58, 71, 171, 152,
+ 212, 73, 34, 171, 80, 42, 120, 158, 64, 251, 23, 4, 58, 164, 238, 208,
+ 153, 188, 72, 146, 69, 163, 121, 160, 240, 252, 5, 252, 127, 63, 55, 140,
+ 153, 188, 111, 87, 123, 30, 51, 139, 108, 27, 247, 81, 155, 32, 246, 46,
+ 153, 109, 99, 57, 218, 81, 214, 198, 176, 66, 251, 139, 228, 95, 247, 180,
+ 41, 66, 156, 56, 38, 211, 106, 109, 42, 216, 71, 235, 151, 61, 63, 173,
+ 154, 30, 65, 23, 255, 56, 210, 33, 249, 188, 21, 230, 77, 134, 247, 143,
+ 225, 202, 66, 166, 48, 240, 188, 22, 209, 24, 91, 88, 168, 171, 180, 133,
+ 164, 35, 29, 114, 146, 156, 49, 94, 110, 222, 71, 180, 181, 187, 38, 31,
+ 182, 184, 210, 52, 74, 196, 196, 233, 208, 122, 49, 243, 99, 185, 66, 240,
+ 38, 97, 156, 163, 115, 40, 40, 141, 204, 173, 89, 57, 180, 143, 160, 227,
+ 25, 192, 37, 58, 159, 156, 108, 54, 128, 19, 24, 4, 192, 62, 194, 38,
+ 201, 7, 84, 202, 140, 96, 101, 172, 18, 95, 221, 21, 236, 207, 141, 238,
+ 34, 202, 38, 230, 13, 4, 229, 131, 83, 97, 60, 26, 196, 2, 220, 23,
+ 143, 218, 81, 42, 29, 39, 111, 225, 243, 220, 216, 174, 185, 18, 109, 227,
+ 139, 100, 59, 26, 198, 3, 162, 244, 49, 72, 182, 163, 179, 125, 222, 219,
+ 18, 120, 164, 116, 100, 35, 226, 221, 112, 250, 197, 172, 66, 200, 219, 100,
+ 209, 67, 110, 183, 66, 112, 236, 126, 119, 246, 246, 183, 247, 93, 59, 234,
+ 165, 180, 70, 135, 67, 193, 146, 89, 25, 108, 39, 156, 71, 30, 35, 54,
+ 63, 133, 176, 216, 236, 85, 23, 151, 183, 89, 187, 155, 160, 63, 234, 53,
+ 104, 163, 225, 47, 180, 6, 150, 76, 53, 8, 189, 150, 15, 202, 228, 100,
+ 161, 153, 138, 91, 105, 163, 53, 109, 61, 195, 82, 238, 214, 73, 84, 234,
+ 182, 26, 64, 38, 179, 217, 230, 250, 35, 238, 237, 123, 42, 217, 78, 60,
+ 92, 211, 98, 125, 201, 55, 9, 134, 21, 135, 169, 195, 89, 222, 142, 172,
+ 159, 106, 140, 26, 93, 97, 222, 249, 46, 176, 110, 139, 13, 231, 185, 210,
+ 56, 31, 130, 221, 192, 39, 232, 204, 183, 189, 124, 176, 235, 73, 242, 187,
+ 105, 186, 0, 226, 176, 149, 100, 203, 59, 163, 52, 204, 109, 54, 13, 58,
+ 75, 30, 203, 238, 101, 201, 40, 89, 240, 95, 221, 237, 192, 101, 44, 52,
+ 117, 168, 204, 50, 189, 190, 129, 189, 177, 177, 105, 84, 137, 187, 42, 99,
+ 20, 202, 183, 157, 162, 87, 82, 169, 237, 186, 193, 0, 31, 146, 183, 47,
+ 47, 140, 32, 111, 60, 157, 177, 192, 121, 154, 164, 145, 70, 152, 196, 226,
+ 194, 162, 43, 111, 104, 196, 27, 80, 134, 69, 34, 180, 39, 108, 200, 134,
+ 252, 232, 232, 226, 167, 192, 90, 153, 117, 21, 60, 231, 93, 255, 124, 179,
+ 12, 186, 255, 20, 190, 194, 142, 81, 168, 216, 53, 130, 107, 44, 198, 131,
+ 246, 161, 138, 217, 62, 240, 152, 197, 174, 26, 25, 105, 245, 17, 209, 98,
+ 159, 94, 145, 160, 237, 205, 71, 155, 84, 60, 214, 105, 236, 190, 225, 239,
+ 2, 185, 209, 98, 212, 214, 66, 58, 5, 181, 87, 50, 1, 132, 232, 148,
+ 45, 215, 131, 204, 182, 117, 166, 221, 112, 254, 88, 2, 69, 134, 238, 31,
+ 238, 46, 75, 105, 197, 8, 60, 58, 191, 43, 86, 190, 238, 131, 25, 245,
+ 116, 118, 78, 186, 50, 53, 234, 77, 105, 103, 111, 160, 72, 140, 30, 26,
+ 241, 163, 200, 59, 185, 167, 144, 63, 73, 77, 254, 56, 130, 232, 1, 91,
+ 226, 120, 19, 171, 29, 81, 232, 99, 67, 209, 212, 121, 107, 116, 49, 255,
+ 229, 211, 229, 217, 201, 52, 107, 223, 224, 237, 186, 171, 5, 142, 54, 247,
+ 117, 74, 1, 9, 137, 154, 54, 146, 174, 132, 24, 145, 123, 57, 9, 255,
+ 93, 108, 101, 30, 66, 46, 27, 59, 7, 96, 134, 10, 36, 5, 140, 206,
+ 3, 27, 71, 209, 204, 248, 18, 109, 152, 50, 10, 189, 225, 130, 37, 108,
+ 51, 148, 89, 244, 129, 124, 144, 85, 80, 204, 157, 28, 168, 92, 221, 185,
+ 58, 169, 100, 37, 227, 229, 147, 187, 98, 90, 92, 93, 107, 179, 210, 87,
+ 121, 83, 184, 116, 126, 190, 233, 11, 22, 243, 63, 212, 7, 111, 155, 194,
+ 61, 160, 134, 185, 231, 168, 31, 224, 213, 198, 67, 201, 180, 80, 184, 9,
+ 192, 192, 209, 122, 185, 144, 156, 2, 202, 115, 156, 20, 147, 182, 28, 73,
+ 167, 201, 51, 205, 237, 186, 246, 47, 66, 249, 54, 137, 119, 119, 76, 84,
+ 82, 75, 231, 45, 243, 198, 198, 218, 103, 137, 91, 84, 152, 69, 40, 24,
+ 97, 142, 130, 246, 141, 62, 14, 31, 107, 53, 191, 5, 6, 220, 186, 10,
+ 223, 113, 152, 253, 137, 192, 206, 249, 41, 250, 64, 39, 238, 224, 112, 221,
+ 214, 160, 227, 37, 45, 10, 88, 227, 189, 47, 72, 45, 198, 154, 128, 75,
+ 231, 159, 187, 199, 7, 149, 154, 113, 171, 200, 176, 48, 20, 35, 41, 221,
+ 51, 11, 191, 34, 20, 201, 80, 55, 197, 99, 182, 231, 142, 249, 240, 101,
+ 124, 187, 102, 206, 44, 166, 243, 191, 27, 30, 238, 145, 27, 45, 208, 2,
+ 111, 156, 55, 21, 108, 190, 235, 56, 255, 120, 122, 246, 203, 197, 89, 58,
+ 127, 123, 241, 14, 148, 228, 168, 221, 195, 46, 80, 45, 10, 233, 93, 74,
+ 121, 7, 61, 60, 184, 88, 223, 161, 37, 93, 87, 85, 71, 17, 83, 236,
+ 18, 85, 237, 98, 249, 107, 187, 224, 225, 41, 156, 67, 205, 172, 95, 39,
+ 241, 158, 89, 162, 59, 24, 123, 27, 138, 75, 180, 98, 163, 230, 201, 84,
+ 201, 232, 100, 183, 168, 34, 95, 123, 116, 196, 171, 144, 14, 51, 37, 243,
+ 238, 138, 63, 157, 15, 94, 2, 136, 116, 164, 190, 65, 202, 178, 213, 36,
+ 146, 107, 28, 218, 214, 182, 111, 167, 156, 85, 204, 121, 180, 27, 109, 157,
+ 223, 212, 84, 224, 252, 8, 246, 215, 141, 212, 89, 97, 148, 160, 108, 37,
+ 157, 119, 79, 247, 225, 119, 139, 212, 209, 60, 102, 1, 232, 125, 150, 181,
+ 245, 137, 78, 50, 120, 217, 253, 166, 104, 97, 140, 239, 62, 29, 250, 213,
+ 172, 66, 44, 202, 215, 48, 101, 225, 219, 158, 35, 157, 136, 198, 198, 143,
+ 129, 194, 123, 92, 157, 13, 62, 100, 122, 50, 205, 226, 87, 99, 211, 44,
+ 126, 104, 247, 239, 0, 0, 0, 255, 255, 13, 177, 17, 160, 128, 39, 0,
+ 0,
},
}
node.SetMode(420)
node.SetName("index.html")
- node.SetSize(3682)
+ node.SetSize(2849)
return node
}
func generate_sub() *memfs.Node {
node := &memfs.Node{
- SysPath: "content/sub",
+ SysPath: "_example/sub",
Path: "/sub",
ContentType: "",
ContentEncoding: "",
@@ -546,121 +529,110 @@ func generate_sub() *memfs.Node {
func generate_sub_index_html() *memfs.Node {
node := &memfs.Node{
- SysPath: "content/sub/index.html",
+ SysPath: "_example/sub/index.html",
Path: "/sub/index.html",
ContentType: "text/html; charset=utf-8",
ContentEncoding: "gzip",
V: []byte{
- 31, 139, 8, 0, 0, 0, 0, 0, 0, 255, 140, 84, 79, 111, 219, 62,
- 12, 61, 59, 159, 130, 63, 253, 128, 158, 234, 184, 237, 48, 108, 64, 101,
- 99, 109, 154, 195, 128, 97, 27, 144, 238, 176, 211, 160, 200, 180, 69, 84,
- 150, 92, 137, 78, 235, 111, 63, 248, 79, 154, 52, 43, 134, 157, 68, 145,
- 126, 244, 123, 143, 180, 229, 127, 119, 223, 86, 247, 63, 191, 175, 193, 112,
- 99, 139, 133, 156, 142, 68, 26, 84, 101, 177, 72, 18, 217, 32, 43, 48,
- 204, 109, 138, 143, 29, 237, 114, 177, 242, 142, 209, 113, 122, 223, 183, 40,
- 64, 79, 183, 92, 48, 62, 115, 54, 160, 175, 65, 27, 21, 34, 114, 222,
- 113, 149, 126, 20, 144, 29, 250, 56, 213, 96, 46, 118, 132, 79, 173, 15,
- 124, 132, 126, 162, 146, 77, 94, 226, 142, 52, 166, 227, 229, 28, 200, 17,
- 147, 178, 105, 212, 202, 98, 126, 249, 70, 35, 54, 216, 96, 170, 189, 245,
- 225, 168, 215, 255, 239, 62, 188, 95, 223, 220, 142, 207, 15, 0, 38, 182,
- 88, 108, 186, 45, 148, 20, 80, 179, 15, 189, 204, 166, 228, 88, 143, 220,
- 15, 97, 146, 72, 71, 118, 60, 179, 67, 202, 146, 123, 128, 128, 54, 23,
- 99, 46, 26, 68, 22, 96, 2, 86, 185, 200, 84, 140, 200, 49, 211, 93,
- 100, 223, 44, 117, 140, 19, 71, 153, 205, 238, 201, 173, 47, 251, 177, 77,
- 73, 59, 208, 86, 197, 152, 11, 246, 237, 86, 5, 49, 164, 95, 229, 7,
- 254, 138, 28, 206, 165, 83, 76, 58, 244, 36, 87, 207, 213, 68, 170, 61,
- 11, 81, 104, 162, 218, 203, 76, 205, 192, 172, 164, 221, 159, 61, 26, 116,
- 221, 11, 184, 242, 161, 217, 23, 136, 177, 17, 160, 52, 147, 119, 185, 200,
- 126, 145, 99, 12, 78, 217, 44, 162, 10, 218, 236, 49, 137, 36, 215, 118,
- 12, 220, 183, 56, 141, 91, 204, 99, 120, 20, 208, 90, 165, 209, 120, 91,
- 98, 200, 197, 102, 194, 77, 243, 26, 9, 13, 175, 59, 37, 247, 18, 205,
- 193, 137, 77, 173, 170, 241, 31, 76, 50, 151, 167, 147, 53, 151, 111, 105,
- 103, 181, 215, 49, 115, 218, 134, 23, 126, 127, 115, 173, 85, 65, 213, 65,
- 181, 131, 13, 178, 45, 238, 13, 69, 160, 8, 202, 1, 62, 171, 166, 181,
- 8, 190, 218, 175, 30, 144, 131, 120, 76, 6, 186, 72, 174, 134, 105, 63,
- 224, 176, 64, 75, 153, 181, 197, 226, 13, 43, 146, 197, 209, 229, 212, 145,
- 202, 123, 222, 11, 95, 249, 182, 15, 84, 27, 134, 171, 139, 171, 139, 115,
- 216, 152, 206, 26, 229, 224, 204, 242, 117, 19, 63, 61, 144, 85, 91, 226,
- 37, 185, 202, 159, 213, 124, 189, 132, 27, 107, 97, 4, 68, 8, 24, 49,
- 236, 176, 92, 46, 94, 249, 240, 35, 142, 90, 120, 80, 24, 125, 23, 52,
- 130, 246, 37, 14, 106, 107, 191, 195, 224, 176, 132, 109, 15, 10, 110, 55,
- 119, 233, 168, 5, 44, 105, 116, 17, 129, 141, 98, 208, 202, 193, 22, 135,
- 78, 149, 239, 92, 57, 152, 193, 6, 225, 176, 167, 95, 62, 175, 214, 95,
- 55, 107, 81, 204, 193, 176, 176, 80, 145, 197, 229, 145, 106, 153, 77, 223,
- 140, 28, 255, 37, 197, 239, 0, 0, 0, 255, 255, 249, 137, 44, 121, 160,
+ 31, 139, 8, 0, 0, 0, 0, 0, 0, 255, 140, 84, 193, 110, 219, 48,
+ 12, 61, 59, 95, 161, 105, 215, 185, 66, 49, 12, 27, 54, 57, 192, 214,
+ 245, 54, 96, 5, 218, 203, 78, 3, 45, 51, 17, 49, 89, 82, 37, 58,
+ 109, 254, 126, 176, 101, 39, 89, 22, 20, 61, 69, 18, 249, 200, 247, 30,
+ 25, 235, 55, 223, 127, 222, 60, 252, 186, 187, 21, 150, 123, 183, 94, 233,
+ 242, 83, 105, 139, 208, 173, 87, 85, 165, 123, 100, 16, 150, 57, 214, 248,
+ 56, 208, 174, 145, 55, 193, 51, 122, 174, 31, 246, 17, 165, 48, 229, 214,
+ 72, 198, 103, 86, 35, 250, 139, 48, 22, 82, 70, 110, 6, 222, 212, 159,
+ 164, 80, 199, 58, 30, 122, 108, 228, 142, 240, 41, 134, 196, 39, 232, 39,
+ 234, 216, 54, 29, 238, 200, 96, 61, 93, 222, 9, 242, 196, 4, 174, 206,
+ 6, 28, 54, 215, 23, 10, 177, 197, 30, 107, 19, 92, 72, 39, 181, 222,
+ 190, 255, 248, 225, 246, 235, 183, 41, 127, 4, 48, 177, 195, 245, 253, 208,
+ 138, 142, 18, 26, 14, 105, 175, 85, 121, 28, 195, 142, 252, 31, 145, 208,
+ 53, 50, 243, 222, 97, 182, 136, 44, 133, 77, 184, 105, 164, 34, 223, 225,
+ 243, 149, 201, 121, 233, 254, 98, 182, 25, 50, 135, 254, 152, 174, 213, 108,
+ 163, 110, 67, 183, 159, 240, 29, 237, 132, 113, 144, 115, 35, 57, 196, 22,
+ 146, 28, 159, 255, 121, 31, 133, 0, 121, 156, 67, 231, 152, 122, 172, 73,
+ 126, 59, 71, 43, 13, 75, 123, 185, 54, 68, 219, 160, 21, 204, 64, 213,
+ 209, 238, 255, 26, 61, 250, 225, 0, 222, 132, 212, 47, 1, 98, 236, 165,
+ 0, 195, 20, 124, 35, 213, 111, 242, 140, 201, 131, 83, 25, 33, 25, 187,
+ 96, 42, 77, 62, 14, 44, 120, 31, 177, 204, 93, 206, 243, 120, 148, 34,
+ 58, 48, 104, 131, 235, 48, 53, 242, 190, 224, 138, 117, 19, 161, 177, 221,
+ 235, 201, 29, 148, 229, 161, 149, 227, 4, 47, 72, 59, 156, 230, 195, 153,
+ 201, 17, 182, 248, 10, 139, 237, 245, 249, 130, 216, 235, 75, 228, 24, 22,
+ 114, 51, 197, 54, 29, 212, 189, 36, 43, 66, 130, 109, 130, 56, 154, 168,
+ 227, 250, 193, 82, 22, 148, 5, 120, 129, 207, 208, 71, 135, 34, 108, 150,
+ 13, 22, 228, 69, 62, 37, 35, 134, 76, 126, 43, 202, 118, 137, 227, 222,
+ 93, 105, 21, 215, 171, 11, 86, 84, 171, 147, 203, 185, 35, 155, 16, 120,
+ 17, 126, 23, 158, 48, 97, 39, 218, 189, 208, 48, 145, 46, 134, 143, 255,
+ 247, 252, 89, 169, 45, 177, 29, 218, 43, 19, 122, 149, 237, 240, 195, 130,
+ 87, 211, 138, 201, 49, 183, 168, 156, 238, 165, 59, 156, 140, 161, 210, 170,
+ 236, 188, 86, 229, 147, 242, 55, 0, 0, 255, 255, 162, 220, 133, 49, 106,
4, 0, 0,
},
}
node.SetMode(420)
node.SetName("index.html")
- node.SetSize(595)
+ node.SetSize(515)
return node
}
-func generatetemplates() *memfs.Node {
+func generate_example() *memfs.Node {
node := &memfs.Node{
- SysPath: "templates",
- Path: "templates",
+ SysPath: "_example",
+ Path: "_example",
ContentType: "",
ContentEncoding: "",
}
node.SetMode(2147484141)
- node.SetName("templates")
+ node.SetName("_example")
node.SetSize(0)
return node
}
-func generatetemplates_html_tmpl() *memfs.Node {
+func generate_example_html_tmpl() *memfs.Node {
node := &memfs.Node{
- SysPath: "templates/html.tmpl",
- Path: "templates/html.tmpl",
+ SysPath: "_example/html.tmpl",
+ Path: "_example/html.tmpl",
ContentType: "text/html; charset=utf-8",
ContentEncoding: "gzip",
V: []byte{
- 31, 139, 8, 0, 0, 0, 0, 0, 0, 255, 140, 84, 77, 111, 219, 56,
- 16, 61, 59, 191, 98, 194, 5, 114, 138, 164, 245, 46, 22, 219, 34, 146,
- 209, 196, 241, 161, 64, 209, 22, 112, 122, 232, 169, 160, 168, 145, 57, 8,
- 69, 42, 228, 200, 169, 32, 248, 191, 23, 250, 176, 163, 164, 1, 154, 147,
- 135, 124, 124, 207, 239, 13, 135, 74, 207, 111, 191, 172, 239, 190, 127, 221,
- 128, 230, 202, 172, 206, 210, 241, 103, 145, 106, 148, 197, 234, 108, 177, 72,
- 43, 100, 9, 154, 185, 142, 240, 161, 161, 125, 38, 214, 206, 50, 90, 142,
- 238, 218, 26, 5, 168, 113, 149, 9, 198, 159, 156, 244, 236, 43, 80, 90,
- 250, 128, 156, 53, 92, 70, 239, 4, 36, 79, 58, 86, 86, 152, 137, 61,
- 225, 99, 237, 60, 207, 216, 143, 84, 176, 206, 10, 220, 147, 194, 104, 88,
- 92, 2, 89, 98, 146, 38, 10, 74, 26, 204, 150, 175, 8, 177, 198, 10,
- 35, 229, 140, 243, 51, 173, 191, 254, 253, 255, 191, 205, 245, 205, 112, 190,
- 39, 48, 177, 193, 85, 215, 197, 119, 125, 113, 56, 164, 201, 184, 211, 99,
- 134, 236, 61, 120, 52, 153, 8, 220, 26, 12, 26, 145, 5, 104, 143, 101,
- 38, 18, 25, 2, 114, 72, 6, 36, 86, 33, 76, 14, 186, 46, 2, 47,
- 237, 14, 33, 222, 14, 164, 195, 225, 79, 82, 93, 23, 31, 14, 51, 58,
- 218, 162, 39, 165, 201, 212, 230, 52, 119, 69, 59, 24, 42, 104, 15, 202,
- 200, 16, 50, 193, 174, 206, 165, 23, 253, 246, 179, 253, 62, 168, 36, 139,
- 19, 244, 146, 19, 245, 154, 100, 119, 19, 186, 72, 229, 49, 143, 88, 41,
- 162, 157, 75, 19, 57, 17, 147, 130, 246, 191, 107, 84, 104, 155, 19, 185,
- 116, 190, 58, 2, 196, 88, 9, 144, 138, 201, 217, 76, 36, 63, 200, 50,
- 122, 43, 77, 18, 80, 122, 165, 143, 156, 69, 74, 182, 110, 24, 184, 173,
- 113, 156, 11, 49, 221, 215, 131, 128, 218, 72, 133, 218, 153, 2, 125, 38,
- 182, 35, 111, 236, 203, 96, 168, 255, 187, 183, 155, 59, 37, 11, 77, 46,
- 86, 219, 38, 127, 37, 218, 169, 154, 138, 23, 77, 174, 229, 14, 223, 208,
- 98, 189, 124, 54, 64, 122, 249, 154, 51, 150, 71, 103, 93, 23, 95, 55,
- 172, 157, 31, 70, 163, 63, 152, 251, 83, 202, 174, 139, 111, 37, 227, 4,
- 205, 114, 118, 93, 124, 227, 138, 118, 4, 102, 9, 206, 163, 8, 226, 147,
- 37, 136, 162, 89, 156, 35, 220, 231, 24, 144, 23, 249, 74, 231, 248, 24,
- 99, 237, 234, 214, 211, 78, 51, 252, 243, 247, 242, 253, 37, 108, 117, 99,
- 180, 180, 112, 97, 248, 170, 10, 31, 238, 201, 200, 156, 56, 38, 91, 186,
- 139, 29, 95, 197, 112, 109, 12, 12, 132, 0, 30, 3, 250, 61, 22, 241,
- 217, 179, 52, 223, 2, 130, 43, 129, 53, 5, 8, 174, 241, 10, 65, 185,
- 2, 129, 2, 236, 220, 30, 189, 197, 2, 242, 22, 36, 220, 108, 111, 163,
- 225, 93, 128, 33, 133, 54, 32, 176, 150, 12, 74, 90, 200, 177, 87, 42,
- 93, 99, 11, 32, 11, 172, 17, 158, 110, 246, 211, 199, 245, 230, 243, 118,
- 35, 86, 83, 209, 223, 48, 148, 100, 48, 158, 245, 32, 77, 198, 247, 147,
- 38, 227, 231, 235, 87, 0, 0, 0, 255, 255, 161, 211, 165, 235, 214, 4,
- 0, 0,
+ 31, 139, 8, 0, 0, 0, 0, 0, 0, 255, 140, 84, 79, 111, 220, 46,
+ 16, 61, 111, 62, 5, 225, 119, 253, 97, 20, 85, 85, 171, 22, 175, 148,
+ 127, 183, 74, 141, 148, 92, 122, 170, 48, 158, 93, 80, 49, 56, 48, 222,
+ 100, 133, 252, 221, 43, 140, 189, 117, 210, 72, 205, 201, 192, 155, 247, 120,
+ 111, 60, 182, 56, 191, 249, 126, 253, 240, 227, 238, 150, 104, 236, 236, 246,
+ 76, 148, 199, 70, 104, 144, 237, 246, 108, 179, 17, 29, 160, 36, 26, 177,
+ 103, 240, 56, 152, 67, 77, 175, 189, 67, 112, 200, 30, 142, 61, 80, 162,
+ 202, 174, 166, 8, 207, 200, 51, 251, 43, 81, 90, 134, 8, 88, 15, 184,
+ 99, 159, 41, 225, 127, 116, 156, 236, 160, 166, 7, 3, 79, 189, 15, 184,
+ 98, 63, 153, 22, 117, 221, 194, 193, 40, 96, 211, 230, 127, 98, 156, 65,
+ 35, 45, 139, 74, 90, 168, 47, 222, 16, 66, 13, 29, 48, 229, 173, 15,
+ 43, 173, 255, 62, 124, 250, 120, 123, 121, 53, 213, 103, 2, 26, 180, 176,
+ 77, 169, 122, 200, 139, 113, 20, 188, 156, 100, 204, 26, 247, 139, 4, 176,
+ 53, 141, 120, 180, 16, 53, 0, 82, 162, 3, 236, 106, 202, 141, 107, 225,
+ 185, 82, 49, 206, 87, 167, 196, 72, 144, 110, 15, 164, 186, 159, 170, 199,
+ 241, 95, 26, 41, 85, 227, 184, 162, 131, 107, 51, 73, 240, 185, 191, 162,
+ 241, 237, 113, 114, 210, 154, 3, 81, 86, 198, 88, 83, 244, 125, 35, 3,
+ 205, 199, 47, 206, 115, 66, 105, 28, 204, 208, 107, 14, 203, 154, 198, 237,
+ 103, 116, 35, 228, 18, 132, 110, 149, 49, 123, 47, 184, 156, 137, 188, 53,
+ 135, 191, 53, 58, 112, 195, 137, 188, 243, 161, 91, 0, 131, 208, 81, 34,
+ 21, 26, 239, 106, 202, 127, 26, 135, 16, 156, 180, 60, 130, 12, 74, 47,
+ 156, 141, 48, 174, 31, 144, 224, 177, 135, 50, 16, 116, 126, 81, 143, 148,
+ 244, 86, 42, 208, 222, 182, 16, 106, 122, 95, 120, 165, 47, 147, 161, 124,
+ 221, 251, 205, 157, 146, 197, 161, 161, 219, 251, 161, 121, 35, 218, 105, 53,
+ 47, 94, 53, 185, 151, 123, 120, 71, 139, 245, 197, 139, 201, 209, 23, 111,
+ 57, 67, 185, 56, 75, 169, 186, 28, 80, 251, 48, 141, 70, 46, 108, 194,
+ 41, 101, 74, 213, 141, 68, 152, 161, 85, 206, 148, 170, 43, 223, 30, 11,
+ 176, 74, 112, 206, 24, 169, 78, 150, 8, 99, 171, 56, 11, 156, 115, 76,
+ 200, 171, 124, 59, 239, 113, 137, 113, 231, 159, 32, 64, 75, 154, 35, 17,
+ 114, 186, 177, 180, 47, 127, 214, 241, 11, 231, 123, 131, 122, 104, 42, 229,
+ 59, 30, 245, 240, 77, 75, 199, 167, 129, 161, 185, 182, 88, 156, 246, 197,
+ 158, 92, 187, 16, 188, 76, 176, 224, 229, 207, 241, 59, 0, 0, 255, 255,
+ 129, 163, 30, 181, 81, 4, 0, 0,
},
}
node.SetMode(420)
node.SetName("html.tmpl")
- node.SetSize(610)
+ node.SetSize(520)
return node
}
@@ -668,13 +640,13 @@ func init() {
memfs.GeneratedPathNode = memfs.NewPathNode()
memfs.GeneratedPathNode.Set("/", generate_())
memfs.GeneratedPathNode.Set("/LICENSE", generate_LICENSE())
- memfs.GeneratedPathNode.Set("/assets", generate_assets())
- memfs.GeneratedPathNode.Set("/assets/custom.css", generate_assets_custom_css())
- memfs.GeneratedPathNode.Set("/assets/style.css", generate_assets_style_css())
+ memfs.GeneratedPathNode.Set("/custom.css", generate_custom_css())
memfs.GeneratedPathNode.Set("/favicon.ico", generate_favicon_ico())
+ memfs.GeneratedPathNode.Set("/html.tmpl", generate_html_tmpl())
+ memfs.GeneratedPathNode.Set("/index.css", generate_index_css())
memfs.GeneratedPathNode.Set("/index.html", generate_index_html())
memfs.GeneratedPathNode.Set("/sub", generate_sub())
memfs.GeneratedPathNode.Set("/sub/index.html", generate_sub_index_html())
- memfs.GeneratedPathNode.Set("templates", generatetemplates())
- memfs.GeneratedPathNode.Set("templates/html.tmpl", generatetemplates_html_tmpl())
+ memfs.GeneratedPathNode.Set("_example", generate_example())
+ memfs.GeneratedPathNode.Set("_example/html.tmpl", generate_example_html_tmpl())
}
diff --git a/internal/cmd/generate/main.go b/internal/cmd/generate/main.go
index f321bc1..2659bd6 100644
--- a/internal/cmd/generate/main.go
+++ b/internal/cmd/generate/main.go
@@ -9,5 +9,6 @@ package main
import "github.com/shuLhan/ciigo"
func main() {
- ciigo.Generate("./content", "cmd/ciigo-example/static.go", "templates/html.tmpl")
+ ciigo.Generate("./_example", "cmd/ciigo-example/static.go",
+ "_example/html.tmpl")
}