code cleanup, cleaned up locales folder to only include needed locales
This commit is contained in:
parent
e8d931b764
commit
755740e1ba
@ -7,11 +7,15 @@ Inhalte von `script.html` und `footer.html`werden automatisch in jede Seite kopi
|
||||
|
||||
Als Vorlage diente das Bootstrap-Example `sticky footer navbar`[^ex]
|
||||
|
||||
Die fertigen Dateien werden im `output`-Ordner abgelegt.
|
||||
|
||||
# QR-Code Generator
|
||||
|
||||
`qrencode.sh` ist ein Script welches automatisch QR-Codes mit Links für unseren Webhost auf `itlabs.at` bei Hoststar erzeugt. Auch dieses Script ließt aus dem `content`-Ordner aus.
|
||||
|
||||
Damit das Script ordnungsgemäß funktioniert wird "qrencode" auf Linux benötigt![^qre]
|
||||
|
||||
[^qre]:[qrencode](https://fukuchi.org/works/qrencode/)
|
||||
QR-Codes werden im `qr`-Ordner annotiert abgelegt.
|
||||
|
||||
[^qre]: [qrencode](https://fukuchi.org/works/qrencode/)
|
||||
[^ex]: [Bootstrap Example: Sticky Footer Navbar](https://getbootstrap.com/docs/4.0/examples/sticky-footer-navbar/)
|
||||
|
@ -26,7 +26,7 @@
|
||||
</style>
|
||||
<main role="main" class="container">
|
||||
<div class="container">
|
||||
<p><iframe id="myIframe" src="lib/web/viewer.html?file=../../ressources/DMU_50.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="lib/web/viewer.html?file=../../ressources/DMU_50.pdf" role="button">PDF öffnen</a></p>
|
||||
<p><iframe id="myIframe" src="ressources/lib/web/viewer.html?file=../../../ressources/DMU_50.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="ressources/lib/web/viewer.html?file=../../../ressources/DMU_50.pdf" role="button">PDF öffnen</a></p>
|
||||
</div>
|
||||
</main>
|
||||
|
@ -26,7 +26,7 @@
|
||||
</style>
|
||||
<main role="main" class="container">
|
||||
<div class="container">
|
||||
<p><iframe id="myIframe" src="lib/web/viewer.html?file=../../ressources/DMC_635.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="lib/web/viewer.html?file=../../ressources/DMC_635.pdf" role="button">PDF öffnen</a></p>
|
||||
<p><iframe id="myIframe" src="ressources/lib/web/viewer.html?file=../../../ressources/DMC_635.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="ressources/lib/web/viewer.html?file=../../../ressources/DMC_635.pdf" role="button">PDF öffnen</a></p>
|
||||
</div>
|
||||
</main>
|
||||
|
@ -26,7 +26,7 @@
|
||||
</style>
|
||||
<main role="main" class="container">
|
||||
<div class="container">
|
||||
<p><iframe id="myIframe" src="lib/web/viewer.html?file=../../ressources/EMCO_332.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="lib/web/viewer.html?file=../../ressources/EMCO_332.pdf" role="button">PDF öffnen</a></p>
|
||||
<p><iframe id="myIframe" src="ressources/lib/web/viewer.html?file=../../../ressources/EMCO_332.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="ressources/lib/web/viewer.html?file=../../../ressources/EMCO_332.pdf" role="button">PDF öffnen</a></p>
|
||||
</div>
|
||||
</main>
|
||||
|
@ -26,7 +26,7 @@
|
||||
</style>
|
||||
<main role="main" class="container">
|
||||
<div class="container">
|
||||
<p><iframe id="myIframe" src="lib/web/viewer.html?file=../../ressources/EMCO_360.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="lib/web/viewer.html?file=../../ressources/EMCO_360.pdf" role="button">PDF öffnen</a></p>
|
||||
<p><iframe id="myIframe" src="ressources/lib/web/viewer.html?file=../../../ressources/EMCO_360.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="ressoures/lib/web/viewer.html?file=../../../ressources/EMCO_360.pdf" role="button">PDF öffnen</a></p>
|
||||
</div>
|
||||
</main>
|
||||
|
@ -1,5 +0,0 @@
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI Ausbildungszentrum St. Stefan im Lavanttal</span>
|
||||
</div>
|
||||
</footer>
|
66
genHTML.sh
66
genHTML.sh
@ -1,15 +1,17 @@
|
||||
#!/bin/bash
|
||||
|
||||
rm -r output/*.html
|
||||
|
||||
genHTML(){
|
||||
content=$1
|
||||
# clear out the old files and copy back the files
|
||||
[ -x output ] && rm -rf output/ && mkdir output
|
||||
[ ! -x output ] && mkdir output # just in case ö_ö
|
||||
cp -r ressources-orig output/ressources
|
||||
|
||||
cat <<< '<!DOCTYPE html>
|
||||
<html lang="de">'
|
||||
insHeader(){
|
||||
#takes $1 for the title
|
||||
|
||||
cat <<< '
|
||||
<head>
|
||||
cat <<< '<!DOCTYPE html><html lang="de">'
|
||||
|
||||
cat <<< '<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -18,16 +20,17 @@ genHTML(){
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
<!-- please dont judge me, im not getting paid for this. -->'
|
||||
|
||||
cat <<< "<title>$(basename $content .html)</title>"
|
||||
cat <<< "<title>$1</title>"
|
||||
|
||||
cat <<< '
|
||||
<!-- Bootstrap core CSS -->
|
||||
cat <<< '<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
</head>'
|
||||
|
||||
# begin navbar content
|
||||
}
|
||||
|
||||
insNavbar(){
|
||||
|
||||
cat <<< '<header><nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">'
|
||||
cat <<< '<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>'
|
||||
@ -54,16 +57,45 @@ genHTML(){
|
||||
cat <<< '</div>'
|
||||
cat <<< '</nav></header>'
|
||||
# end navbar content
|
||||
}
|
||||
|
||||
insFooter(){
|
||||
|
||||
cat <<< '
|
||||
<!--<script src="ressources/lib/web/viewer.js"></script>-->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
'
|
||||
|
||||
cat <<< '<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI St. Stefan</span>
|
||||
</div>
|
||||
</footer>
|
||||
'
|
||||
|
||||
cat <<< '<body>'
|
||||
# begin main content
|
||||
cat $content
|
||||
# end main conteint
|
||||
cat footer.html
|
||||
cat scripts.html
|
||||
cat <<< '</body></html>'
|
||||
}
|
||||
|
||||
genHTML(){
|
||||
content=$1
|
||||
|
||||
# name of the file without ending as title for the webpage
|
||||
insHeader $(basename $content .html)
|
||||
|
||||
# insert the navigation bar
|
||||
insNavbar
|
||||
|
||||
# insert the body
|
||||
cat <<< '<body>'
|
||||
|
||||
# main content
|
||||
cat $content
|
||||
|
||||
# insert the script links and footer
|
||||
insFooter
|
||||
}
|
||||
|
||||
for content in content/*.html
|
||||
do
|
||||
|
71
index.html
71
index.html
@ -1,71 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en"><head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
|
||||
<title>Sticky Footer Navbar Template for Bootstrap</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<!-- Fixed navbar -->
|
||||
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
||||
<a class="navbar-brand" href="#">Fixed navbar</a>
|
||||
<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>
|
||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="#">Link</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link disabled" href="#">Disabled</a>
|
||||
</li>
|
||||
</ul>
|
||||
<form class="form-inline mt-2 mt-md-0">
|
||||
<input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
|
||||
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
|
||||
</form>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Begin page content -->
|
||||
<main role="main" class="container">
|
||||
<h1 class="mt-5">Sticky footer with fixed navbar</h1>
|
||||
<p class="lead">Pin a fixed-height footer to the bottom of the
|
||||
viewport in desktop browsers with this custom HTML and CSS. A fixed
|
||||
navbar has been added with <code>padding-top: 60px;</code> on the <code>body > .container</code>.</p>
|
||||
<p>Back to <a href="https://getbootstrap.com/docs/4.0/examples/sticky-footer">the default sticky footer</a> minus the navbar.</p>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">Place sticky footer content here.</span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Bootstrap core JavaScript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
|
||||
|
||||
</body></html>
|
88
output/.html
88
output/.html
@ -1,88 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
|
||||
<title>Sticky Footer Navbar Template for Bootstrap</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
</head><header><nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
||||
<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>
|
||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
<a class="navbar-brand" href="#">Navigation></a>
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="#">ls2</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="content/ls.html">ls</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav></header>
|
||||
<body>
|
||||
<main role="main" class="container">
|
||||
<h1 class="mt-5">Sticky footer with fixed navbar</h1>
|
||||
<p class="lead">Pin a fixed-height footer to the bottom of the
|
||||
viewport in desktop browsers with this custom HTML and CSS. A fixed
|
||||
navbar has been added with <code>padding-top: 60px;</code> on the <code>body > .container</code>.</p>
|
||||
<p>Back to <a href="https://getbootstrap.com/docs/4.0/examples/sticky-footer">the default sticky footer</a> minus the navbar.</p>
|
||||
</main><footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">Place sticky footer content here.</span>
|
||||
</div>
|
||||
</footer>
|
||||
</body></html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
|
||||
<title>Sticky Footer Navbar Template for Bootstrap</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
</head><header><nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
||||
<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>
|
||||
<div class="collapse navbar-collapse" id="navbarCollapse">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
<a class="navbar-brand" href="#">Navigation></a>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="content/ls2.html">ls2</a>
|
||||
</li>
|
||||
<li class="nav-item active">
|
||||
<a class="nav-link" href="#">ls</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav></header>
|
||||
<body>
|
||||
<main role="main" class="container">
|
||||
<h1 class="mt-5">Sticky footer with fixed navbar</h1>
|
||||
<p class="lead">Pin a fixed-height footer to the bottom of the
|
||||
viewport in desktop browsers with this custom HTML and CSS. A fixed
|
||||
navbar has been added with <code>padding-top: 60px;</code> on the <code>body > .container</code>.</p>
|
||||
<p>Back to <a href="https://getbootstrap.com/docs/4.0/examples/sticky-footer">the default sticky footer</a> minus the navbar.</p>
|
||||
</main><footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">Place sticky footer content here.</span>
|
||||
</div>
|
||||
</footer>
|
||||
</body></html>
|
@ -1,7 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<!DOCTYPE html><html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -10,8 +8,7 @@
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
<!-- please dont judge me, im not getting paid for this. -->
|
||||
<title>IT-LAB-Coaches</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
@ -61,13 +58,16 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main><footer class="footer">
|
||||
</main>
|
||||
<!--<script src="ressources/lib/web/viewer.js"></script>-->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI Ausbildungszentrum St. Stefan im Lavanttal</span>
|
||||
<span class="text-muted">© 2019, BFI St. Stefan</span>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="lib/web/viewer.js"></script>
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
</footer>
|
||||
|
||||
</body></html>
|
||||
|
@ -1,7 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<!DOCTYPE html><html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -10,8 +8,7 @@
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
<!-- please dont judge me, im not getting paid for this. -->
|
||||
<title>IT-LAB-Labor</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
@ -109,13 +106,16 @@
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<!--<script src="ressources/lib/web/viewer.js"></script>-->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI Ausbildungszentrum St. Stefan im Lavanttal</span>
|
||||
<span class="text-muted">© 2019, BFI St. Stefan</span>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="lib/web/viewer.js"></script>
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
</footer>
|
||||
|
||||
</body></html>
|
||||
|
@ -1,7 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<!DOCTYPE html><html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -10,8 +8,7 @@
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
<!-- please dont judge me, im not getting paid for this. -->
|
||||
<title>IT-LAB-Lehrsaal</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
@ -103,13 +100,16 @@
|
||||
</div>
|
||||
|
||||
</main>
|
||||
|
||||
<!--<script src="ressources/lib/web/viewer.js"></script>-->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI Ausbildungszentrum St. Stefan im Lavanttal</span>
|
||||
<span class="text-muted">© 2019, BFI St. Stefan</span>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="lib/web/viewer.js"></script>
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
</footer>
|
||||
|
||||
</body></html>
|
||||
|
@ -1,7 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<!DOCTYPE html><html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -10,8 +8,7 @@
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
<!-- please dont judge me, im not getting paid for this. -->
|
||||
<title>IT-LAB-Leitung</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
@ -62,13 +59,16 @@
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!--<script src="ressources/lib/web/viewer.js"></script>-->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI Ausbildungszentrum St. Stefan im Lavanttal</span>
|
||||
<span class="text-muted">© 2019, BFI St. Stefan</span>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="lib/web/viewer.js"></script>
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
</footer>
|
||||
|
||||
</body></html>
|
||||
|
@ -1,7 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<!DOCTYPE html><html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -10,8 +8,7 @@
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
<!-- please dont judge me, im not getting paid for this. -->
|
||||
<title>Metallic-DMC_50</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
@ -77,17 +74,20 @@
|
||||
</style>
|
||||
<main role="main" class="container">
|
||||
<div class="container">
|
||||
<p><iframe id="myIframe" src="lib/web/viewer.html?file=../../ressources/DMU_50.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="lib/web/viewer.html?file=../../ressources/DMU_50.pdf" role="button">PDF öffnen</a></p>
|
||||
<p><iframe id="myIframe" src="ressources/lib/web/viewer.html?file=../../../ressources/DMU_50.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="ressources/lib/web/viewer.html?file=../../../ressources/DMU_50.pdf" role="button">PDF öffnen</a></p>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!--<script src="ressources/lib/web/viewer.js"></script>-->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI Ausbildungszentrum St. Stefan im Lavanttal</span>
|
||||
<span class="text-muted">© 2019, BFI St. Stefan</span>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="lib/web/viewer.js"></script>
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
</footer>
|
||||
|
||||
</body></html>
|
||||
|
@ -1,7 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<!DOCTYPE html><html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -10,8 +8,7 @@
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
<!-- please dont judge me, im not getting paid for this. -->
|
||||
<title>Metallic-DMC_635</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
@ -77,17 +74,20 @@
|
||||
</style>
|
||||
<main role="main" class="container">
|
||||
<div class="container">
|
||||
<p><iframe id="myIframe" src="lib/web/viewer.html?file=../../ressources/DMC_635.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="lib/web/viewer.html?file=../../ressources/DMC_635.pdf" role="button">PDF öffnen</a></p>
|
||||
<p><iframe id="myIframe" src="ressources/lib/web/viewer.html?file=../../../ressources/DMC_635.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="ressources/lib/web/viewer.html?file=../../../ressources/DMC_635.pdf" role="button">PDF öffnen</a></p>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!--<script src="ressources/lib/web/viewer.js"></script>-->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI Ausbildungszentrum St. Stefan im Lavanttal</span>
|
||||
<span class="text-muted">© 2019, BFI St. Stefan</span>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="lib/web/viewer.js"></script>
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
</footer>
|
||||
|
||||
</body></html>
|
||||
|
@ -1,7 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<!DOCTYPE html><html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -10,8 +8,7 @@
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
<!-- please dont judge me, im not getting paid for this. -->
|
||||
<title>Metallic-EMCO_332</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
@ -77,17 +74,20 @@
|
||||
</style>
|
||||
<main role="main" class="container">
|
||||
<div class="container">
|
||||
<p><iframe id="myIframe" src="lib/web/viewer.html?file=../../ressources/EMCO_332.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="lib/web/viewer.html?file=../../ressources/EMCO_332.pdf" role="button">PDF öffnen</a></p>
|
||||
<p><iframe id="myIframe" src="ressources/lib/web/viewer.html?file=../../../ressources/EMCO_332.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="ressources/lib/web/viewer.html?file=../../../ressources/EMCO_332.pdf" role="button">PDF öffnen</a></p>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!--<script src="ressources/lib/web/viewer.js"></script>-->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI Ausbildungszentrum St. Stefan im Lavanttal</span>
|
||||
<span class="text-muted">© 2019, BFI St. Stefan</span>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="lib/web/viewer.js"></script>
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
</footer>
|
||||
|
||||
</body></html>
|
||||
|
@ -1,7 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
|
||||
<head>
|
||||
<!DOCTYPE html><html lang="de">
|
||||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -10,8 +8,7 @@
|
||||
<link rel="icon" href="https://getbootstrap.com/favicon.ico">
|
||||
<!-- please dont judge me, im not getting paid for this. -->
|
||||
<title>Metallic-EMCO_360</title>
|
||||
|
||||
<!-- Bootstrap core CSS -->
|
||||
<!-- Bootstrap core CSS -->
|
||||
<link href="ressources/bootstrap.css" rel="stylesheet">
|
||||
<!-- Custom styles for this template -->
|
||||
<link href="ressources/sticky-footer-navbar.css" rel="stylesheet">
|
||||
@ -77,17 +74,20 @@
|
||||
</style>
|
||||
<main role="main" class="container">
|
||||
<div class="container">
|
||||
<p><iframe id="myIframe" src="lib/web/viewer.html?file=../../ressources/EMCO_360.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="lib/web/viewer.html?file=../../ressources/EMCO_360.pdf" role="button">PDF öffnen</a></p>
|
||||
<p><iframe id="myIframe" src="ressources/lib/web/viewer.html?file=../../../ressources/EMCO_360.pdf"></iframe></p>
|
||||
<p><a class="btn btn-primary btn-lg" href="ressoures/lib/web/viewer.html?file=../../../ressources/EMCO_360.pdf" role="button">PDF öffnen</a></p>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!--<script src="ressources/lib/web/viewer.js"></script>-->
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<span class="text-muted">© 2019, BFI Ausbildungszentrum St. Stefan im Lavanttal</span>
|
||||
<span class="text-muted">© 2019, BFI St. Stefan</span>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="lib/web/viewer.js"></script>
|
||||
<script src="ressources/jquery-3.js"></script>
|
||||
<script src="ressources/popper.js"></script>
|
||||
<script src="ressources/bootstrap.js"></script>
|
||||
</footer>
|
||||
|
||||
</body></html>
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,3 +0,0 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSEáCNS2-H
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,3 +0,0 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSEá ETen-B5-H` ^
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +0,0 @@
|
||||
àRCopyright 1990-2009 Adobe Systems Incorporated.
|
||||
All rights reserved.
|
||||
See ./LICENSE!!<21>º]aX!!]`<60>21<32>> <09>p<0B>z<EFBFBD>$]‚<06>"R‚d<E2809A>-Uƒ7<C692>*„
4„%<25>+ „Z „{<7B>/…%…<<3C>9K…b<E280A6>1]†.<2E>"‡‰`]‡,<2C>"]ˆ
|
||||
<EFBFBD>"]ˆh<CB86>"]‰F<E280B0>"]Š$<24>"]‹<02>"]‹`<60>"]Œ><3E>"]<5D><1C>"]<5D>z<EFBFBD>"]ŽX<C5BD>"]<5D>6<EFBFBD>"]<5D><14>"]<5D>r<EFBFBD>"]‘P<E28098>"]’.<2E>"]“<0C>"]“j<E2809C>"]”H<E2809D>"]•&<26>"]–<04>"]–b<E28093>"]—@<40>"]˜<1E>"]˜|<7C>"]™Z<E284A2>"]š8<C5A1>"]›<16>"]›t<E280BA>"]œR<C593>"]<5D>0<EFBFBD>"]ž<0E>"]žl<C5BE>"]ŸJ<C5B8>"] (<28>"]¡<06>"]¡d<C2A1>"]¢B<C2A2>"]£ <20>"X£~<7E>']¤W<C2A4>"]¥5<C2A5>"]¦<13>"]¦q<C2A6>"]§O<C2A7>"]¨-<2D>"]©<0B>"]©i<C2A9>"]ªG<C2AA>"]«%<25>"]¬<03>"]¬a<C2AC>"]?<3F>"]®<1D>"]®{<7B>"]¯Y<C2AF>"]°7<C2B0>"]±<15>"]±s<C2B1>"]²Q<C2B2>"]³/<2F>"]´
<0A>"]´k<C2B4>"]µI<C2B5>"]¶'<27>"]·<05>"]·c<C2B7>"]¸A<C2B8>"]¹<1F>"]¹}<7D>"]º[<5B>"]»9
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user