Fix translations for 13.5.md

This commit is contained in:
Anchor
2015-01-31 22:29:16 -08:00
committed by James Miranda
parent f109dd90c7
commit 71d0abf658

View File

@@ -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,