layout.jade 1.0 KB
Newer Older
L
Lxxyx 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
doctype html
html(lang='en')
  head
    meta(charset='UTF-8')
    title= name
    meta(name='viewport', content='width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0')
    link(rel='stylesheet', type='text/css', href='http://cdn.bootcss.com/normalize/4.1.1/normalize.min.css')
    link(rel='stylesheet', type='text/css', href='./css/resume.css')
    link(rel='stylesheet', type='text/css', href='./iconfont/iconfont.css')
  body
    if aside
      aside
        ul
          each val in aside
            li
              a(href=val.href)= val.content
    .container
      block header
      block content
      article.content
        article.column-6
          if education
            block education
          if language
            block language
          if experience
            block experience
        article.column-6.column
          block skills
    footer
      p
        | Powered by 
        a(href='https://joyeecheung.github.io/resume/') Joyee Cheung
        | . MIT License.