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.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") 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 } body div(class="container") h3(class="mb-3 font-weight-bold") Projekte div(class="container") - var colCounter = 0 for item in project if colCounter == 0 - colCounter = 1 |
if colCounter <= 3 div(class="col-sm") div(class="card", style="width: 18rem;") //img(class="card-img-top", src=item.logo, alt="Project logo") //h5(class="card-title") #{item.name} 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") 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") | - colCounter++ if colCounter == 4 |
- colCounter = 0 //h3(class="mb-3 font-weight-bold") Websites if website.length > 0 div(class="container") h3(class="mb-3 font-weight-bold") Websites table(class="table table-striped") for item in website tr td img(src=item.logo, width="40", height="40") td #{item.name} td #{item.desc} // 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 script(src="https://transfer.hft-stuttgart.de/js/headfoot.js") // search: https://www.w3schools.com/howto/howto_js_filter_lists.asp