projectOverview.pug 7.07 KB
Newer Older
Wolfgang Knopki's avatar
Wolfgang Knopki committed
1
2
3
4
5
6
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")
7
    link(rel="stylesheet", type="text/css", href="/css/bootstrap.min.css")
8
    link(rel="stylesheet", type="text/css", href="/css/bootstrap.css")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
    link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
    style.
        .collapse {
            display: none;
        }
        .collapse.in {
            display: block;
        }
        .collapsing {
            position: relative;
            height: 0;
            overflow: hidden;
            -webkit-transition-timing-function: ease;
            -o-transition-timing-function: ease;
            transition-timing-function: ease;
            -webkit-transition-duration: .35s;
            -o-transition-duration: .35s;
            transition-duration: .35s;
            -webkit-transition-property: height,visibility;
            -o-transition-property: height,visibility;
            transition-property: height,visibility;
        }
        .warning {
            color: red;
            font-size: 11px;
        }
  body
    div
        for project in projectOV
            div(class="flex-container")
                div(class="main")
                    h1 #{project.title}
                    div(style="float:right; margin-left:30px; margin-bottom:0px; width:50%;")
                        img(src=project.src, width="100%")
                        p(style="text-align:right") #{project.caption}

                    h2 Projektüberblick
                    p !{project.overview}
                    br
                    b keywords:
                    span #{project.keywords}
                    br
                    h2 Fragestellung
                    p !{project.question}
                    p
                    h2 Vorgehensweise
                    p !{project.approach}
                    br
                    br
                    h2 Ergebnis und Nutzung
                    p !{project.result}
                div(class="side")
                    for image in projectImgs
                        if image.pos == '2' || image.pos == '3'
                            div(class="projectimg")
                                <img src="#{image.src}", width="100%">
                                if image.caption
                                    span #{image.caption}
                                </img>

                    div(class="fakeimg")
                        if project.leader_lastname
                            p
                                b Projektleitung HfT: &nbsp;
                                <a href="mailto: #{project.leader_email}">#{project.leader_lastname}</a>
                    div(class="fakeimg")
                        if project.contact_lastname
                            p
                                b Ansprechperson: &nbsp;
                                <a href="mailto: #{project.contact_email}">#{project.contact_lastname} </a>
                    div(class="fakeimg")
                        if project.announcement
                            p
                                b Ausschreibung: &nbsp;
                                span !{project.announcement}

                    div(class="fakeimg")
                        if project.partner_name
                            p
                                b Projektpartner:
                                br
                                for website, i in partnerWS
                                    if website
                                        <a href="#{website}">#{partnerN[i]}</a>
                                        br
                                    else
                                        #{partnerN[i]}
                                        br

                    div(class="fakeimg")
                        if project.term
                            p
                                b Projektlaufzeit: &nbsp;
                                span #{project.term}

                    div(class="fakeimg")
                        if project.award_name
                            p
                                b Preise:
                                br
                                for awardsite, i in awardWS
                                    if awardsite
                                        <a href="#{awardsite}">#{awardN[i]}</a>
                                        br
                                    else
                                        #{awardN[i]}
                                        br

                    div(class="fakeimg")
                        if project.administrator
                            p
                                b Projektträger: &nbsp;
                                span #{project.administrator}

                    div(class="fakeimg")
                        if project.sponsor_name
                            p
                                b Geldgeber:
                                br
                                for website, i in sponsorWS
                                    if website
                                        <a href="#{website}">#{sponsorN[i]}</a>
                                        br
                                    else
                                        #{sponsorN[i]}
                                        br

                    div(class="fakeimg")
                        if project.website || project.further_details
                        p
                            b Mehr Informationen: &nbsp;
                            if project.website
                                <a href="#{project.website}">#{project.website}</a>
                            br
                            span !{project.further_details}

145
146
147
                    if project.pname == 'M4LAB'
                        div(class="Downloads" style="height:200px;")
                            h5 Downloads
Wolfgang Knopki's avatar
Wolfgang Knopki committed
148

149
150
151
152
153
154
                        div(class="Projektlogos")
                            img(src="./images/M4_LAB_Projekt/WRS_Logo.jpg" width="32%")
                            img(src="./images/M4_LAB_Projekt/IBA2027_Logo.jpg" width="32%")
                            img(src="./images/M4_LAB_Projekt/GWK_Logo.jpg" width="32%")
                            br
                            br
155
                            img(src="./images/M4_LAB_Projekt/Innovative_Hochschule_Initiative_BMBF_GWK_RGB.png" width="100%")
Wolfgang Knopki's avatar
Wolfgang Knopki committed
156
157
158
159
160
161
162

    //jQuery
    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
163
    script(src="/js/headfoot.js")