1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | <!--views/home.tpl--> <!DOCTYPE html> < html > < head > < meta charset = "UTF-8" /> < meta name = "viewport" content = "width=device-width, initial-scale=1.0" /> < title >{{data['blogTitle']}}</ title > < script src = "/static/scripts/jQuery.js" ></ script > < script src = "/static/scripts/main.js" ></ script > < link href = "/static/styles/main.css" rel = "stylesheet" ></ link > < link href = "/static/images/site_logo.png" rel = "icon" ></ link > < link href = "/static/fonts/setup.css" rel = "stylesheet" ></ link > </ head > < body > < div id = "site" > < header id = "blog-header" ></ header > < nav id = "menu" ></ nav > |
1 2 3 4 5 6 7 8 9 10 11 12 | %include('./partials/header.tpl') < div id = "main" class = "main" > < section id = "content" class = "content" > content </ section > <!--content--> %include('./partials/sidebar.tpl') </ div > <!--main--> %include('./partials/footer.tpl') |
1 2 3 4 5 6 | < footer > footer </ footer > </ div > <!--site--> </ body > </ html > |
GitHub: https://github.com/Sokhavuth/kwblog
Heroku: https://khmerweb-kwblog.herokuapp.com/