From 4686b25efcae07b7e31174299add14cdce48995b Mon Sep 17 00:00:00 2001 From: Vishal Rana Date: Sat, 5 Mar 2016 11:13:24 -0800 Subject: [PATCH] Updated website Signed-off-by: Vishal Rana --- website/content/recipes/crud.md | 2 +- website/content/recipes/embed-resources.md | 2 +- website/content/recipes/file-upload.md | 2 +- website/content/recipes/google-app-engine.md | 2 +- website/content/recipes/graceful-shutdown.md | 4 ++-- website/content/recipes/hello-world.md | 2 +- website/content/recipes/jsonp.md | 2 +- website/content/recipes/jwt-authentication.md | 2 +- website/content/recipes/middleware.md | 2 +- website/content/recipes/streaming-file-upload.md | 2 +- website/content/recipes/streaming-response.md | 2 +- website/content/recipes/subdomains.md | 2 +- website/content/recipes/website.md | 2 +- website/content/recipes/websocket.md | 2 +- website/static/styles/echo.css | 2 +- 15 files changed, 16 insertions(+), 16 deletions(-) diff --git a/website/content/recipes/crud.md b/website/content/recipes/crud.md index 65b1a099..c4afe762 100644 --- a/website/content/recipes/crud.md +++ b/website/content/recipes/crud.md @@ -16,4 +16,4 @@ menu: - [vishr](https://github.com/vishr) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/crud) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/crud) diff --git a/website/content/recipes/embed-resources.md b/website/content/recipes/embed-resources.md index 2b8ad44a..ddbd9073 100644 --- a/website/content/recipes/embed-resources.md +++ b/website/content/recipes/embed-resources.md @@ -17,4 +17,4 @@ menu: - [caarlos0](https://github.com/caarlos0) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/rice) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/rice) diff --git a/website/content/recipes/file-upload.md b/website/content/recipes/file-upload.md index 36582e63..ac0e185e 100644 --- a/website/content/recipes/file-upload.md +++ b/website/content/recipes/file-upload.md @@ -50,4 +50,4 @@ if _, err = io.Copy(dst, file); err != nil { - [vishr](https://github.com/vishr) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/file-upload) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/file-upload) diff --git a/website/content/recipes/google-app-engine.md b/website/content/recipes/google-app-engine.md index bbfe3572..934d30b2 100644 --- a/website/content/recipes/google-app-engine.md +++ b/website/content/recipes/google-app-engine.md @@ -132,4 +132,4 @@ but is outside the scope of this recipe. - [CaptainCodeman](https://github.com/CaptainCodeman) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/google-app-engine) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/google-app-engine) diff --git a/website/content/recipes/graceful-shutdown.md b/website/content/recipes/graceful-shutdown.md index f2516138..dbd6a3b3 100644 --- a/website/content/recipes/graceful-shutdown.md +++ b/website/content/recipes/graceful-shutdown.md @@ -24,6 +24,6 @@ menu: ### Source Code -[graceful](https://github.com/vishr/recipes/blob/master/echo/recipes/graceful-shutdown/graceful) +[graceful](https://github.com/vishr/recipes/blob/master/echo.v1/graceful-shutdown/graceful) -[grace](https://github.com/vishr/recipes/blob/master/echo/recipes/graceful-shutdown/grace) +[grace](https://github.com/vishr/recipes/blob/master/echo.v1/graceful-shutdown/grace) diff --git a/website/content/recipes/hello-world.md b/website/content/recipes/hello-world.md index 94fa555f..3dd6659b 100644 --- a/website/content/recipes/hello-world.md +++ b/website/content/recipes/hello-world.md @@ -16,4 +16,4 @@ menu: - [vishr](https://github.com/vishr) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/hello-world) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/hello-world) diff --git a/website/content/recipes/jsonp.md b/website/content/recipes/jsonp.md index 07ad7c7d..62838333 100644 --- a/website/content/recipes/jsonp.md +++ b/website/content/recipes/jsonp.md @@ -24,4 +24,4 @@ JSONP is a method that allows cross-domain server calls. You can read more about - [willf](https://github.com/willf) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/jsonp) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/jsonp) diff --git a/website/content/recipes/jwt-authentication.md b/website/content/recipes/jwt-authentication.md index 938c119e..32a10ce5 100644 --- a/website/content/recipes/jwt-authentication.md +++ b/website/content/recipes/jwt-authentication.md @@ -55,4 +55,4 @@ $ curl localhost:1323/restricted -H "Authorization: Bearer " => Access g - [axdg](https://github.com/axdg) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/jwt-authentication) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/jwt-authentication) diff --git a/website/content/recipes/middleware.md b/website/content/recipes/middleware.md index 6e000058..8c25e96d 100644 --- a/website/content/recipes/middleware.md +++ b/website/content/recipes/middleware.md @@ -17,4 +17,4 @@ menu: - [vishr](https://github.com/vishr) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/middleware) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/middleware) diff --git a/website/content/recipes/streaming-file-upload.md b/website/content/recipes/streaming-file-upload.md index ea02aa48..2c28f009 100644 --- a/website/content/recipes/streaming-file-upload.md +++ b/website/content/recipes/streaming-file-upload.md @@ -25,4 +25,4 @@ menu: - [vishr](https://github.com/vishr) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/streaming-file-upload) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/streaming-file-upload) diff --git a/website/content/recipes/streaming-response.md b/website/content/recipes/streaming-response.md index e9533526..274826c5 100644 --- a/website/content/recipes/streaming-response.md +++ b/website/content/recipes/streaming-response.md @@ -35,4 +35,4 @@ $ curl localhost:1323 - [vishr](https://github.com/vishr) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/streaming-response) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/streaming-response) diff --git a/website/content/recipes/subdomains.md b/website/content/recipes/subdomains.md index 50b2a956..e22c16fe 100644 --- a/website/content/recipes/subdomains.md +++ b/website/content/recipes/subdomains.md @@ -15,4 +15,4 @@ menu: - [axdg](https://github.com/axdg) - [vishr](https://github.com/axdg) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/subdomains) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/subdomains) diff --git a/website/content/recipes/website.md b/website/content/recipes/website.md index 2ea3e5b9..5029e39c 100644 --- a/website/content/recipes/website.md +++ b/website/content/recipes/website.md @@ -22,4 +22,4 @@ menu: - [vishr](https://github.com/vishr) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/website) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/website) diff --git a/website/content/recipes/websocket.md b/website/content/recipes/websocket.md index 03fa7a3d..f43ce115 100644 --- a/website/content/recipes/websocket.md +++ b/website/content/recipes/websocket.md @@ -44,4 +44,4 @@ Hello, Server! - [vishr](https://github.com/vishr) -### [Source Code](https://github.com/vishr/recipes/blob/master/echo/recipes/websocket) +### [Source Code](https://github.com/vishr/recipes/blob/master/echo.v1/websocket) diff --git a/website/static/styles/echo.css b/website/static/styles/echo.css index 97191d68..6b437772 100644 --- a/website/static/styles/echo.css +++ b/website/static/styles/echo.css @@ -15,7 +15,7 @@ footer { color: #333; } :not(pre) > code { - padding: 2px 4px; + padding: 0 4px; background: #EEE; color: #424242; font-size: .95em;