Last active
January 10, 2016 13:11
-
-
Save sevki/e2ed0fbd7d44c7e7494f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {{ template "root" .}} | |
| {{define "title"}}Pic index{{end}} | |
| {{define "content"}} | |
| {{ range . }} | |
| <p class="bla"> | |
| <a href="{{ .url }}">{{.title}}</a> | |
| </p> | |
| {{ end }} | |
| {{ end }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {{ template "root" .}} | |
| {{define "title"}}{{.title}}{{end}} | |
| {{define "content"}} | |
| <img src="{{ .url }}" alt="{{.title}}" /> | |
| {{ end }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {{define "root" }} | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>{{template "title" .}}</title> | |
| </head> | |
| <body> | |
| <header> | |
| </header> | |
| {{ template "content" .}} | |
| <footer> | |
| </footer> | |
| </div> | |
| </body> | |
| </html> | |
| {{end}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment