projectList.pug 11.3 KB
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
1
2
3
doctype html
html(lang="de")
  head
4
<<<<<<< HEAD
Rosanny Sihombing's avatar
Rosanny Sihombing committed
5
    title= "Project List"
6
=======
7
    title= "Projektdaten"
8
>>>>>>> a9ea21c0a95c22953b5d5d4081daefcbe58a54d0
Rosanny Sihombing's avatar
Rosanny Sihombing committed
9
10
11
12
13
    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.min.css")
    link(rel="stylesheet", type="text/css", href="https://transfer.hft-stuttgart.de/css/m4lab.css")
    link(rel="stylesheet", href="https://use.fontawesome.com/releases/v5.8.2/css/all.css", integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay", crossorigin="anonymous")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
    style.
        .title-container {
            position: relative;
            color: white;
        }
        .card-title-bottom-left {
            position: absolute;
            bottom: 0px;
            width: 100%;
            color: black;
            font-weight: bold;
            background: rgb(255, 255, 255, 0.5);
            text-align: left;
            padding: 5px
        }
        .card-img-top {
            height: 15vw;
            object-fit: cover;
        }
33
<<<<<<< HEAD
Rosanny Sihombing's avatar
Rosanny Sihombing committed
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51

        .collapsing {
            color: red;
            position: absolute !important;
            z-index: 20;
            width: 100%;
            top: 50px;
        }
        .collapse.in {
            display: block;
            position: absolute;
            z-index: 20;
            width: 100%;
            top: 50px;
        }
        .navbar-collapse {
            max-height: none !important;
        }
Rosanny Sihombing's avatar
Rosanny Sihombing committed
52
53
  body
    div(class="container")
54
55
56
57
58
        div(class="pt-4 pb-4 form-row")
            div(class="form-group col-md-10")
                //input(id="searchInput", class="form-control form-control-dark w-100", type="text", placeholder="Suchen Sie hier nach Themen und Projekten", onkeyup="searchFunction()")
                input(id="searchInput", class="form-control", type="text", placeholder="Suchen Sie hier nach Themen und Projekten", onkeyup="searchFunction()")
            div(class="form-group col-md-2")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
59
                //select(class="form-control")
60
                    option uncategorized
Rosanny Sihombing's avatar
Rosanny Sihombing committed
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
                button(class="btn btn-secondary", type="button", data-toggle="collapse", data-target="#collapseCategory", aria-expanded="false", aria-controls="collapseCategory") Category
                div(class="collapse", id="collapseCategory")
                    div(class="form-check")
                        input(class="form-check-input", type="checkbox", value="", id="1")
                        label(class="form-check-label", for="defaultCheck1")
                            Default All
                    div(class="form-check")
                        input(class="form-check-input", type="checkbox", value="", id="2")
                        label(class="form-check-label", for="defaultCheck2")
                            Disabled Architecture
                    div(class="form-check")
                        input(class="form-check-input", type="checkbox", value="", id="3")
                        label(class="form-check-label", for="defaultCheck2")
                            Disabled Business Psychologie
                    div(class="form-check")
                        input(class="form-check-input", type="checkbox", value="", id="4")
                        label(class="form-check-label", for="defaultCheck2")
                            Disabled Computer Science
                    div(class="form-check")
                        input(class="form-check-input", type="checkbox", value="", id="5")
                        label(class="form-check-label", for="defaultCheck2")
                            Disabled Uncategorized

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
        h3(class="mb-3 font-weight-bold") Projektinformationen
        p(class="font-italic") Hier finden Sie Informationen zu den bei uns gehosteten Projekten, wie z.B. Projektbeschreibungen, Projektwebseiten, Visualisierungen, Demonstrationen.

        div(class="container")
            | <div class="row">
            for item in pages
                div(class="py-4 col-sm")
                    div(class="card", style="width: 18rem;")
                        div(class="title-container")
                            h5(class="card-title-bottom-left") #{item.name}
                            img(class="card-img-top", src=item.logo)
                        div(class="card-body")
                            div(class="row")
                                each key in item.keywords
                                    h6
                                        span(class="badge badge-pill badge-primary px-2") #{key}
                                        | &nbsp;
                            div(class="row")
                                div(class="col-9")
                                    p(class="card-text") #{item.desc}
                                div(class="col-3")
                                    svg(class="bi bi-chevron-right", width="32", height="32", viewBox="0 0 20 20", fill="currentColor", xmlns="http://www.w3.org/2000/svg")
                                        | <a xlink:href="#{item.weburl}" target="_blank"><path fill-rule="evenodd" d="M6.646 3.646a.5.5 0 01.708 0l6 6a.5.5 0 010 .708l-6 6a.5.5 0 01-.708-.708L12.293 10 6.646 4.354a.5.5 0 010-.708z"></path></a>
            | </div>
        
        h3(class="mb-3 font-weight-bold") Projektdaten
        p(class="font-italic") Hier finden Sie den direkten Zugang zu den Inalten der bei uns gehosteten Projekte.
111

Rosanny Sihombing's avatar
Rosanny Sihombing committed
112
113
114
115
        div(class="container")
            | <div class="row">
            for item in project
                div(class="py-4 col-sm")
116
=======
Rosanny Sihombing's avatar
Rosanny Sihombing committed
117
  body
118
119
120
    div(class="container")
            div(class="row")
                div(class="col-md-12" style="margin-bottom: 40px;")
121
                    img(class="mx-auto" src="/img/ProjektcodeDaten.png" width="100%")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
122
    div(class="container")
123
124
125
126
127
128
        div(class="pt-4 pb-4 form-row")
            div(class="form-group col-md-10")
                input(id="searchInput", class="form-control", type="text", placeholder="Suchen Sie hier nach Themen und Projekten", onkeyup="searchFunction()")
            div(class="form-group col-md-2")
                select(class="form-control")
                    option uncategorized
Wolfgang Knopki's avatar
Wolfgang Knopki committed
129
130
        p Hier finden Sie den direkten Zugang zu den Inhalten der bei uns gehosteten Projekte.
        p Weitere Informationen zu den bei uns gehosteten Projekten finden Sie <a href="/projektinformationen">hier</a>.
131
132

        div(class="container")
133
            p#projectCounter #{project.length} Projektdaten werden angezeigt
Rosanny Sihombing's avatar
Rosanny Sihombing committed
134
135
            | <div class="row">
            for item in project
136
                div(class="card-deck py-4 col-sm")
137
>>>>>>> a9ea21c0a95c22953b5d5d4081daefcbe58a54d0
Rosanny Sihombing's avatar
Rosanny Sihombing committed
138
139
140
141
142
                    div(class="card", style="width: 18rem;")
                        div(class="title-container")
                            h5(class="card-title-bottom-left") #{item.name}
                            img(class="card-img-top", src=item.logo)
                        div(class="card-body")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
143
144
145
146
147
                            div(class="row")
                                each key in item.keywords
                                    h6
                                        span(class="badge badge-pill badge-primary px-2") #{key}
                                        | &nbsp;
Rosanny Sihombing's avatar
Rosanny Sihombing committed
148
149
150
                            div(class="row")
                                div(class="col-9")
                                    p(class="card-text") #{item.desc}
151
<<<<<<< HEAD
Rosanny Sihombing's avatar
Rosanny Sihombing committed
152
153
154
                                div(class="col-3")
                                    svg(class="bi bi-chevron-right", width="32", height="32", viewBox="0 0 20 20", fill="currentColor", xmlns="http://www.w3.org/2000/svg")
                                        | <a xlink:href="#{item.weburl}" target="_blank"><path fill-rule="evenodd" d="M6.646 3.646a.5.5 0 01.708 0l6 6a.5.5 0 010 .708l-6 6a.5.5 0 01-.708-.708L12.293 10 6.646 4.354a.5.5 0 010-.708z"></path></a>
155
=======
Rosanny Sihombing's avatar
fix 371    
Rosanny Sihombing committed
156
157
158
159
                                a(href=item.weburl, style="text-decoration: none;", target="_blank")
                                    div(class="col-3")
                                        svg(class="bi bi-chevron-right", width="32", height="32", viewBox="0 0 20 20", fill="black", xmlns="http://www.w3.org/2000/svg")
                                            | <path fill-rule="evenodd" d="M6.646 3.646a.5.5 0 01.708 0l6 6a.5.5 0 010 .708l-6 6a.5.5 0 01-.708-.708L12.293 10 6.646 4.354a.5.5 0 010-.708z"></path>
160
>>>>>>> a9ea21c0a95c22953b5d5d4081daefcbe58a54d0
Rosanny Sihombing's avatar
Rosanny Sihombing committed
161
            | </div>
Rosanny Sihombing's avatar
Rosanny Sihombing committed
162
163
164
165
166
167
168

    // 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
169
<<<<<<< HEAD
Rosanny Sihombing's avatar
Rosanny Sihombing committed
170
    script(src="https://transfer.hft-stuttgart.de/js/headfoot.js")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
171
172

    // search: https://www.w3schools.com/howto/howto_js_filter_lists.asp
173
=======
174
    script(src="/js/headfoot.js")
175
>>>>>>> a9ea21c0a95c22953b5d5d4081daefcbe58a54d0
Rosanny Sihombing's avatar
Rosanny Sihombing committed
176
177
    script.
        function searchFunction() {
Rosanny Sihombing's avatar
Rosanny Sihombing committed
178
179
            var input = document.getElementById("searchInput")
            var filter = input.value.toUpperCase()
Rosanny Sihombing's avatar
Rosanny Sihombing committed
180
            
181
<<<<<<< HEAD
Rosanny Sihombing's avatar
Rosanny Sihombing committed
182
183
184
185
186
187
            var cards = document.getElementsByClassName("col-sm")
            var cardTitle, cardText, titleValue, textValue
            
            var i
            for (i = 0; i < cards.length; i++) {
                cardTitle = cards[i].getElementsByClassName("card-title-bottom-left");
Rosanny Sihombing's avatar
Rosanny Sihombing committed
188
                cardBody = cards[i].getElementsByClassName("card-body");
Rosanny Sihombing's avatar
Rosanny Sihombing committed
189
                cardText = cards[i].getElementsByClassName("card-text");
190
=======
Rosanny Sihombing's avatar
Rosanny Sihombing committed
191
            var cardsCol = document.getElementsByClassName("col-sm")
Rosanny Sihombing's avatar
Rosanny Sihombing committed
192
193
194
            var cardTitle, cardText, titleValue, textValue
            
            var i
Rosanny Sihombing's avatar
Rosanny Sihombing committed
195
196
197
198
199
            var counterBlock = 0
            for (i = 0; i < cardsCol.length; i++) {
                cardTitle = cardsCol[i].getElementsByClassName("card-title-bottom-left");
                cardBody = cardsCol[i].getElementsByClassName("card-body");
                cardText = cardsCol[i].getElementsByClassName("card-text");
200
>>>>>>> a9ea21c0a95c22953b5d5d4081daefcbe58a54d0
Rosanny Sihombing's avatar
Rosanny Sihombing committed
201
202
                
                titleValue = cardTitle[0].textContent || cardTitle[0].innerText;
Rosanny Sihombing's avatar
Rosanny Sihombing committed
203
                bodyValue = cardBody[0].textContent || cardBody[0].innerText;
Rosanny Sihombing's avatar
Rosanny Sihombing committed
204
205
                textValue = cardText[0].textContent || cardText[0].innerText;
                
Rosanny Sihombing's avatar
Rosanny Sihombing committed
206
                if (titleValue.toUpperCase().indexOf(filter) > -1 || bodyValue.toUpperCase().indexOf(filter) > -1 || textValue.toUpperCase().indexOf(filter) > -1) {
207
<<<<<<< HEAD
Rosanny Sihombing's avatar
Rosanny Sihombing committed
208
209
210
                    cards[i].style.display = "block";
                } else {
                    cards[i].style.display = "none";
Rosanny Sihombing's avatar
Rosanny Sihombing committed
211
212
                }
            }
213
=======
Rosanny Sihombing's avatar
Rosanny Sihombing committed
214
215
                    cardsCol[i].style.display = "block"
                    counterBlock++
Rosanny Sihombing's avatar
Rosanny Sihombing committed
216
                } else {
Rosanny Sihombing's avatar
Rosanny Sihombing committed
217
                    cardsCol[i].style.display = "none"
Rosanny Sihombing's avatar
Rosanny Sihombing committed
218
219
                }
            }
Rosanny Sihombing's avatar
Rosanny Sihombing committed
220

221
            document.getElementById("projectCounter").innerHTML = counterBlock+" Projektdaten werden angezeigt"
222
>>>>>>> a9ea21c0a95c22953b5d5d4081daefcbe58a54d0
Rosanny Sihombing's avatar
Rosanny Sihombing committed
223
        }