From be2b5698c53edce9695fb62504563d678cc6d2ec Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Sat, 14 Dec 2019 19:26:22 +0300 Subject: [PATCH] tutorial: update image links --- tutorials/building-a-simple-web-blog-with-vweb.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tutorials/building-a-simple-web-blog-with-vweb.md b/tutorials/building-a-simple-web-blog-with-vweb.md index 60e36b6876..56bd27a35f 100644 --- a/tutorials/building-a-simple-web-blog-with-vweb.md +++ b/tutorials/building-a-simple-web-blog-with-vweb.md @@ -87,7 +87,7 @@ Running a Vweb app on http://localhost:8080 ... Vweb helpfully provided a link, open http://localhost:8080/ in your browser: - + The `App` struct is an entry point of our web application. If you have experience with an MVC web framework, you can think of it as a controller. (Vweb is @@ -104,7 +104,7 @@ fn (app mut App) time() { ``` - + >You have to rebuild and restart the website every time you change the code. In the future Vweb will detect changes and recompile the website in the background @@ -141,7 +141,7 @@ fn (app mut App) index() { } ``` - + Good, now we have an actual HTML page. @@ -281,7 +281,7 @@ Finally, let's update our view: v run . ``` - + That was very simple, wasn't it?