Newer
Older
indexation / views / index.pug
doctype html
html(lang="en")
  head
    meta(charset="UTF-8")
    title="ez-indexation"

    <!-- Latest compiled and minified CSS -->
    link(rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous")

    <!-- Optional theme -->
    link(rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous")

    <!-- Latest compiled and minified JavaScript -->
    <!-- script(src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous") -->

    <!-- Custom CSS Rules -->
    link(rel="stylesheet" type="text/css" href=publicDir + "/css/style.css")

  body
    div.container
      div.row
          div.col-md-12
            h1 Liste des corpus
      div.row
        each corpus, index in corpora
          div.col-md-3
            div.corpus
              label.corpus-name=index
              ul.corpus-properies
                li
                  a(href="/d3/" + corpus.name)
                    span(class="glyphicon glyphicon-picture" aria-hidden="true")
                    label="Graphe"
                li
                  a(href="/" + corpus.in)
                    span(class="glyphicon glyphicon-folder-open" aria-hidden="true")
                    label="in"
                li
                  a(href="/" + corpus.out)
                    span(class="glyphicon glyphicon-folder-open" aria-hidden="true")
                    label="out"
                li
                  a(href="/" + corpus.file)
                    span(class="glyphicon glyphicon-file" aria-hidden="true")
                    label=corpus.name