projects.pug 1.75 KB
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
4
5
6
7
8
9
doctype html
html(lang="de")
  head
    title= "Project List"
    meta(charset="UTF-8")
    meta(name="viewport", content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no")
    link(rel="stylesheet", type="text/css", href="https://transfer.hft-stuttgart.de/css/bootstrap/bootstrap.css")
    link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
    style.
Rosanny Sihombing's avatar
Rosanny Sihombing committed
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
35
36
      .help .card-title > a:before {
        float: right !important;
        content: "-";
        padding-right: 5px;
      }
      .help .card-title > a.collapsed:before {
          float: right !important;
          content: "+";
      }
      .help h3 > a {
        color: #8a348b;
        text-decoration: none;
        display: block;
      }
      .help a {
          display: inline;
      }
      .help .card > .card-header {
        color: #fff;
      }
      .card-title {
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
      }
      #infoicon {
        color: #8a348b;
      }
Rosanny Sihombing's avatar
Rosanny Sihombing committed
37
  body
Rosanny Sihombing's avatar
Rosanny Sihombing committed
38
39
    include project.html

Rosanny Sihombing's avatar
Rosanny Sihombing committed
40
41

    // jQuery
Rosanny Sihombing's avatar
Rosanny Sihombing committed
42
    
Rosanny Sihombing's avatar
Rosanny Sihombing committed
43
44
45
46
47
48
    script(src="https://code.jquery.com/jquery-3.3.1.min.js")
    script(src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js", integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1", crossorigin="anonymous")
    // Bootstrap
    script(src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous")
    // Header
    if isUserAuthenticated
Rosanny Sihombing's avatar
Rosanny Sihombing committed
49
        script(src="/js/headfootLogout.js")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
50
    else
Rosanny Sihombing's avatar
Rosanny Sihombing committed
51
        script(src="/js/headfoot.js")