You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.5 KiB
64 lines
2.5 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<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 href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap" rel="stylesheet">
|
|
|
|
<title>ALC Metalltechnik Shop</title>
|
|
<link href="{{url_for('static', filename='/lib/bootstrap/css/bootstrap.min.css')}}" rel="stylesheet">
|
|
|
|
<!-- Additional CSS Files -->
|
|
<link rel="stylesheet" href="{{url_for('static', filename='/css/fontawesome.css')}}">
|
|
<link rel="stylesheet" href="{{url_for('static', filename='/css/style.css')}}">
|
|
<link rel="stylesheet" href="{{url_for('static', filename='/css/owl.css')}}">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div translate="no">
|
|
<div class="hidden" id="gcartid">0</div>
|
|
</div>
|
|
|
|
{% include "resources/header.html" ignore missing with context%}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
{% include "resources/footer.html" ignore missing with context%}
|
|
|
|
<!-- Bootstrap core JavaScript -->
|
|
<script src="{{url_for('static', filename='/lib/jquery/jquery.min.js')}}"></script>
|
|
<script src="{{url_for('static', filename='/lib/bootstrap/js/bootstrap.bundle.min.js')}}"></script>
|
|
|
|
|
|
<!-- Additional Scripts -->
|
|
<script src="{{url_for('static', filename='/js/custom.js')}}"></script>
|
|
<script src="{{url_for('static', filename='/js/owl.js')}}"></script>
|
|
<script src="{{url_for('static', filename='/js/slick.js')}}"></script>
|
|
<script src="{{url_for('static', filename='/js/isotope.js')}}"></script>
|
|
<script src="{{url_for('static', filename='/js/accordions.js')}}"></script>
|
|
<script src="{{url_for('static', filename='/js/cart.js')}}"></script>
|
|
<script src="{{url_for('static', filename='/js/checkout.js')}}"></script>
|
|
<script src="{{url_for('static', filename='/js/main.js')}}"></script>
|
|
|
|
<script language = "text/Javascript">
|
|
cleared[0] = cleared[1] = cleared[2] = 0; //set a cleared flag for each field
|
|
function clearField(t){ //declaring the array outside of the
|
|
if(! cleared[t.id]){ // function makes it static and global
|
|
cleared[t.id] = 1; // you could use true and false, but that's more typing
|
|
t.value=''; // with more chance of typos
|
|
t.style.color='#fff';
|
|
}
|
|
}
|
|
</script>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|