This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Set up a redirect to our LinkedIn page"
This reverts commit 0e37a58.
- Loading branch information
1 parent
0e37a58
commit 99997af
Showing
2 changed files
with
87 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,98 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<html lang="zxx"> | ||
<head> | ||
<!-- add plausible tracking --> | ||
<script defer data-domain="foerderfunke.org" src="https://plausible.io/js/script.js"></script> | ||
|
||
<meta charset="utf-8" /> | ||
<title>FörderFunke</title> | ||
<meta http-equiv="refresh" content="0; URL='https://www.linkedin.com/company/foerderfunke'" /> | ||
<meta name="generator" content="Eleventy"> | ||
<!--Meta For No Index--> | ||
<meta name="robots" content="noindex, Nofollow, Noimageindex"> | ||
|
||
<!-- mobile responsive meta --> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, maximum-scale=1" | ||
/> | ||
|
||
<!-- Slick Carousel --> | ||
<link rel="stylesheet" href="{% rootPath %}assets/vendor/slick/slick.css" /> | ||
<link rel="stylesheet" href="{% rootPath %}assets/vendor/slick/slick-theme.css" /> | ||
<!-- Font Awesome --> | ||
<link | ||
rel="stylesheet" | ||
href=""{% rootPath %}assets/vendor/font-awesome/css/font-awesome.min.css" | ||
/> | ||
<!-- Bootstrap --> | ||
<link rel="stylesheet" href="{% rootPath %}assets/vendor/bootstrap/bootstrap.min.css" /> | ||
<!-- Stylesheets --> | ||
<link href="{% rootPath %}assets/css/style.css" rel="stylesheet" /> | ||
<!--Favicon--> | ||
<link rel="shortcut icon" href="{% rootPath %}assets/images/funke_logo_v2_20240210.png" type="image/x-icon" /> | ||
<link rel="icon" href="{% rootPath %}assets/images/funke_logo_v2_20240210.png" type="image/x-icon" /> | ||
</head> | ||
<body> | ||
<p>If you are not redirected, <a href="https://www.linkedin.com/company/foerderfunke">click here</a>.</p> | ||
{% block navbar %} | ||
<nav class="navbar navbar-expand-lg site-navigation"> | ||
<div class="container"> | ||
<a class="navbar-brand" href="{% rootPath %}"> | ||
<img src="{% rootPath %}{{nav.navLogo}}" alt="nav-logo" /> | ||
</a> | ||
<button | ||
class="navbar-toggler collapsed" | ||
type="button" | ||
data-toggle="collapse"g | ||
data-target="#sitenavbar" | ||
> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="sitenavbar"> | ||
<ul class="navbar-ul navbar-nav ml-auto main-nav"> | ||
{% for navLink in nav.navLinks %} | ||
<li class="nav-item"> | ||
{% if navLink == "de" %} | ||
<a class="nav-link" id="updateLanguage" data-language="de" href="{% rootPath %}">{{navLink | capitalize}}</a> | ||
{% else %} | ||
<a class="nav-link" id="updateLanguage" data-language="en" href="{% rootPath %}{{navLink}}">{{navLink | capitalize}}</a> | ||
{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
{% endblock %} | ||
{% block content %} | ||
{{content | safe}} | ||
{% endblock %} | ||
{% block footer %} | ||
<footer class="site-footer"> | ||
<div class="container"> | ||
<div class="row site-footer-link"> | ||
<p> | ||
<a href="{{nav.linkedinLink}}" target="_blank"> | ||
<img class="linkedin-logo-footer" src="{% rootPath %}{{nav.linkedinLogo}}" alt="linkedin-logo" /> | ||
</a> | ||
<div class="footer-divider">|</div> | ||
<a class="footer-mailto" href="mailto:{{footer.email}}">{{footer.email}}</a> | ||
</p> | ||
</div> | ||
</div> | ||
</footer> | ||
{% endblock %} | ||
<!-- <script src="js/vendor.js"></script> --> | ||
<script src="{% rootPath %}assets/vendor/jQuery/jquery.min.js"></script> | ||
<script src="{% rootPath %}assets/vendor/bootstrap/bootstrap.min.js"></script> | ||
<script src="{% rootPath %}assets/js/script.js"></script> | ||
</body> | ||
</html> | ||
This file was deleted.
Oops, something went wrong.