반응형
이것저것 하다보니 일관된 포스팅 하기가 힘드네요...^^;; 오늘은 Gin Framework 강좌를 따라해볼까 합니다. 원 Tutorial은 여기를 참고했습니다. 파일 구성은 아래와 같이 구성하는 것으로 시작합니다.
1. main.go
package main import ( "net/http" "github.com/gin-gonic/gin" ) func main() { r := gin.Default() r.LoadHTMLGlob("templates/*") r.GET("/", func(c *gin.Context) { // OK 이면 index.html파일에 JSON데이터를 넘겨서 보여줌 c.HTML(http.StatusOK, "index.html", gin.H{ "title": "Home Page", }, ) }) r.Run() }
2. index.html
<!--index.html--> <!--Embed the header.html template at this location--> {{ template "header.html" .}} <h1>Hello Gin!</h1> <!--Embed the footer.html template at this location--> {{ template "footer.html" .}}
3. header.html
<!--header.html--> <!doctype html> <html> <head> <!--Use the title variable to set the title of the page--> <title>{{ .title }}</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta charset="UTF-8"> <!--Use bootstrap to make the application look nice--> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <script async src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> </head> <body class="container"> <!--Embed the menu.html template at this location--> {{ template "menu.html" . }}
4. footer.html
<!--footer.html--> </body> </html>
5. menu.html
<!--menu.html--> <nav class="navbar navbar-default"> <div class="container"> <div class="navbar-header"> <a class="navbar-brand" href="/"> Home </a> </div> </div> </nav>
<결과>
반응형
'Programming > Golang' 카테고리의 다른 글
Go언어 - Gin Framework(4강 개별 Article 화면 구성) (0) | 2020.12.15 |
---|---|
Go언어 - Gin Framework(3강 Article List) (0) | 2020.12.14 |
Go언어 - Lorca GUI 간단한 메모장 (0) | 2020.12.09 |
Go언어 - Lorca GUI 라이브러리 (0) | 2020.12.08 |
Go언어- Gin Framework(1강 설치) (0) | 2020.12.08 |