headfoot.html 12.7 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!-- RS
    HTML representation of the header and footer in headfoot.js
    !! FOR DEVELOPMENT AND TEST ONLY !!
-->
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
        <title>Transferportal HfT Stuttgart</title>
        <link rel="stylesheet" href="../css/bootstrap.min.css">
        <link rel="stylesheet" href="../css/bootstrap.css">
        <link rel="stylesheet" href="../fonts/ionicons.min.css">
        <link rel="stylesheet" href="../css/Testimonials.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
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
        <style>
            @media only screen and (min-width: 768px) {
                html {
                    position: relative;
                    min-height: 100%;
                }
                body {
                    margin-bottom: 120px; /* Margin bottom by footer height */
                }
                #homepage {
                    position: absolute;
                    bottom: 0;
                    width: 100%;
                    text-align: center;
                }
            }
        </style>
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
    </head>

    <body>
        <!-- navheader -->
        <header id="header" class="clear">
            <!-- alertdiv -->
            <div class="alert alert-danger alert-dismissible fade show" style="text-align:center;">
                <!-- alertbutton -->
                <button type="button" class="close" data-dismiss="alert">
                    &times;
                </button>
                <strong>Disclaimer</strong> This website is under construction and in prototype-phase. It is not for public use.
            </div>
            <!-- navbar -->
            <nav class="navbar navbar-expand-md navbar-light" style="background-color: #ffffff;">
                <!-- navbarcontainer -->
                <div class="container">
                    <!-- navbarheader -->
                    <div class="navbar-header">
                        <!-- link_m4lab -->
                        <a class="navbar-brand" href="/">
                            <img src="../img/header/Logozeile_Header.png" alt="Logo Innovationslabor M4_LAB">
                        </a>
                    </div>

                    <!-- togglebutton -->
                    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
                        <span class="navbar-toggler-icon"></span>
                    </button>

                    <!-- navelements -->
                    <ul id="navbarCollapse" class="collapse nav navbar-collapse navbar-nav justify-content-end">
                        <!-- headitem -->
                        <li class="nav-item dropdown">
                            <!-- headlink -->
                            <a href="#" id="navbarDropdown0" class="nav-link dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                                Informationen
                            </a>
                            <!-- combodiv -->
                            <div id="navbarDropdown0_par" class="dropdown-menu" aria-labelledby="navbarDropdown0">
                                <!-- combolink -->
                                <a class="dropdown-item" href="/project">
                                    Projekte
                                </a>
                                <!-- combolink -->
                                <a class="dropdown-item" href="/projectoverview?projectID=1">
                                    Über das M4_LAB
                                </a>
                                <!-- combolink -->
                                <a class="dropdown-item" href="/account/contact">
                                    Kontakt
                                </a>
                            </div>
                        </li>
                        <!-- headitem -->
                        <li class="nav-item dropdown">
                                <!-- headlink -->
                                            <a href="#" id="navbarDropdown1" class="nav-link dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                                                Zusammenarbeit
                                            </a>
                                            <!-- combodiv -->
                                            <div id="navbarDropdown1_par" class="dropdown-menu" aria-labelledby="navbarDropdown1">
                                                <!-- combolink -->
                                                <a class="dropdown-item" href="/mailinglists">
                                                    Mailinglisten
                                                </a>
                                                <!-- combolink -->
                                                <a class="dropdown-item" href="/videoconference.html">
                                                    Videokonferenzen
                                                </a>
                                                <!-- combolink -->
                                                <a class="dropdown-item" href="/#">
                                                    ...
                                                </a>
                                            </div>                    
                        </li>
                        <!-- headitem -->
                        <li class="nav-item dropdown">
                                            <!-- headlink -->
                                            <a href="#" id="navbarDropdown2" class="nav-link dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
                                                Events
                                            </a>
                                            <!-- combodiv -->
                                            <div id="navbarDropdown2_par" class="dropdown-menu" aria-labelledby="navbarDropdown2">
                                                <!-- combolink -->
                                                <a class="dropdown-item" href="http://www.hft-stuttgart.de/Aktuell/Veranstaltungen/">
                                                    Veranstaltungen der HfT
                                                </a>
                                                <!-- combolink -->
                                                <a class="dropdown-item" href="https://www.hft-stuttgart.de/forschung/veranstaltungen">
                                                    Veranstaltungen der HfT Forschung
                                                </a>
                                            </div>    
                        </li>
                        <!-- headitem -->
                        <li class="nav-item">
                                            <!-- headlink -->
                                            <a href="/account" id="navbarDropdown2" class="nav-link" role="button">
                                                Benutzerkonto
                                            </a>
                        </li>
                    </ul>    
                    
                </div>
            </nav>
        </header>
        
        <div class="container">
            <p> test test test test</p>
            <p> test test test test 123</p>
            <p> test test test test</p>
            <p> test test test test</p>
Rosanny Sihombing's avatar
Rosanny Sihombing committed
144
            <!-- p> test test test test</p>
145
146
147
148
149
150
151
152
153
154
155
            <hr>
            <p> test test test test</p>
            <p> test test test test</p>
            <p> test test test test</p>
            <p> test test test test</p>
            <p> test test test test</p>
            <hr>
            <p> test test test test</p>
            <p> test test test test</p>
            <p> test test test test</p>
            <p> test test test test</p>
Rosanny Sihombing's avatar
Rosanny Sihombing committed
156
            <p> test test test test</p -->
157
158
159
160
            <hr>
        </div>

        <!-- footerdiv -->
Rosanny Sihombing's avatar
Rosanny Sihombing committed
161
        <div id="homepage">
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
            <hr>
            <!-- containerdiv -->
            <div class="container">
                <!-- containerdivrow -->
                <div class="row">
                    <!-- bmbf-->
                    <div class="col-md-auto">
                        <img src="../img/footer/Innovative_Hochschule_Initiative_BMBF_GWK_RGB.png" alt="Innovative Hochschule" style="height:90px"/>
                    </div>
                    <!-- m4labgrau-->
                    <div class="col-md-auto">
                        <!-- img -->
                        <img src="../img/footer/M4_LAB_LOGO_Graustufen.png" alt="M4_LAB" style="height:80px"/>
                    </div>
                    <!-- socialdiv-->
                    <div class="col-md-auto">
                        <!-- socialrow -->
                        <div id="socialmediabuttons">
                            <!-- sociallink-->
                            <a href="https://twitter.com/InnolabM4">
                                <!-- socialcontent -->
                                <i class="fab fa-twitter"></i>
                            </a>
                            <!-- sociallink-->
                            <a href="https://www.facebook.com/HfTStuttgart/">
                                <!-- socialcontent -->
                                <i class="fab fa-facebook-square"></i>
                            </a>
                            <!-- sociallink-->
                            <a href="https://www.instagram.com/m4_lab/">
                                <!-- socialcontent -->
                                <i class="fab fa-instagram"></i>
                            </a>
                            <!-- sociallink-->
                            <a href="https://de.linkedin.com/school/hochschule-f%C3%BCr-technik-stuttgart-%E2%80%93-university-of-applied-sciences/">
                                <!-- socialcontent -->
                                <i class="fab fa-linkedin"></i>
                            </a>
                            <!-- sociallink-->
                            <a href="https://www.youtube.com/channel/UCi0_JfF2qMZbOhOnNH5PyHA">
                                <!-- socialcontent -->
                                <i class="fab fa-youtube"></i>
                            </a>
                        </div>
                    </div>
                    <!-- contactdiv -->
                    <div class="col-md-auto footer-unten">
                        Hochschule für Technik Stuttgart
                        <!-- rowdiv -->
                        <div class="row">
                            <!-- hft_links coldiv -->
                            <div class="col footer-unten">
                                <!-- hft_links collink -->
                                <a href="https://www.hft-stuttgart.de/forschung/innovative-hochschule-m4-lab" class="contact-lower">
                                    Kontakt
                                </a>
                            </div>
                            <!-- hft_links coldiv -->
                            <div class="col footer-unten">
                                <!-- hft_links collink -->
                                <a href="https://www.hft-stuttgart.de/impressum" class="contact-lower">
                                    Impressum
                                </a>
                            </div>
                            <!-- hft_links coldiv -->
                            <div class="col footer-unten">
                                <!-- hft_links collink -->
                                <a href="https://www.hft-stuttgart.de/datenschutz" class="contact-lower">
                                    Datenschutz
                                </a>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        
        <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
        <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>

    </body>
</html>