diff --git a/en/13.5.md b/en/13.5.md index acf2de14..af8da324 100644 --- a/en/13.5.md +++ b/en/13.5.md @@ -1,10 +1,10 @@ -# 13.5 Add, delete and update blogs +# 13.5 Adding, deleting and updating blogs -Introduced in front beego framework to achieve the overall concept and the partial implementation of the pseudo- code, which subsections describe through beego build a blog system, including blog browse, add, modify, or delete operation. +We've already introduced the entire concept behind the Beego framework through examples and pseudo-code. This section will describe how to implement a blogging system using Beego, including the ability to browse, add, modify and delete blog posts. ## Blog directory -Blog directories are as follows: +Our blog's directory structure can be seen below: /main.go /views: @@ -23,7 +23,7 @@ Blog directories are as follows: ## Blog routing -Blog main routing rules are as follows: +Our blog's main routing rules are as follows: //Show blog Home beego.RegisterController("/", &controllers.IndexController{}) @@ -38,7 +38,7 @@ Blog main routing rules are as follows: ## Database structure -The easiest database design blog information +A trivial database table to store basic blog information: CREATE TABLE entries ( id INT AUTO_INCREMENT,