This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from tere92/master
Update indoor positioning page based on Danny's feedback
- Loading branch information
Showing
19 changed files
with
107 additions
and
43 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
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{% assign email = include.email %} | ||
|
||
{% if include.background and include.background == 'blue' %} | ||
{% assign background-class = 'blue-bg' %} | ||
{% assign text-class = 'white-text' %} | ||
{% else %} | ||
{% assign background-class = '' %} | ||
{% assign text-class = 'blue-text' %} | ||
{% endif %} | ||
|
||
<div class="row justify-content-start align-items-center m-0 intra-padding {{ background-class }}" style='padding-top: 0 !important'> | ||
|
||
<div class="col-md-1"> </div> | ||
|
||
<div class="col-md-2 p-5 description-small {{ text-class }}" style='text-align: left;'> | ||
<img src="{{ include.image }}" alt="{{ include.image-alt }}" style="width: 100%"> | ||
</div> | ||
|
||
<div class="col-md-8 p-5 intra-padding description-small {{ text-class }}" markdown="1" style='text-align: left;'> | ||
|
||
<div class="row justify-content-center align-items-center" style='width: 100%'> | ||
<div class="col-md-12" markdown="1" style='text-align: left; font-size: 1rem !important;'> | ||
|
||
Reach out to **Aad**, a seasoned IT professional with over 20 years of industry expertise and a fervent advocate of **self-organization**. | ||
|
||
</div> | ||
</div> | ||
|
||
<div class="row justify-content-start align-items-center"> | ||
<div class="col-md-8"> | ||
<a href="tel:{{ include.tel }}" class='no-link-style' style="margin: 0 !important; white-space: normal; text-align: center; font-family: Lato, sans-serif; font-style: normal !important; font-size: 1rem !important; color: #003e52 !important; padding: 1rem 1.5rem !important; width: 100%" > <i class="el el-phone no-link-style" style="margin-right: 10px; padding-top: 5px; color: #ff8400 !important;"></i> {{ include.tel }} </a> | ||
</div> | ||
</div> | ||
|
||
<div class="row justify-content-start align-items-center"> | ||
<div class="col-md-8"> | ||
<script type="text/javascript"> | ||
/*<![CDATA[*/ | ||
var a=new Array("{{ email[0] }}", "{{ email[1] }}", "{{ email[2] }}", "{{ email[3] }}", "{{ email[4] }}", "{{ email[5] }}"); | ||
<!-- Write as hyperlink --> | ||
document.write("<a href='mailto:"); | ||
for(i=a.length-1;i>=0;i--) { | ||
document.write(a[i]) | ||
} | ||
document.write("?subject={{ include.subject}}' class='no-link-style' style='margin: 0 !important; white-space: normal; text-align: center; font-family: Lato, sans-serif; font-style: normal !important; font-size: 1rem !important; color: #003e52 !important; padding: 1rem 1.5rem !important; width: 100%' >"); | ||
document.write("<i class='el el-envelope no-link-style' style='margin-right: 10px; padding-top: 5px; color: #ff8400 !important'></i>"); | ||
<!-- Write in plain but obfuscated text --> | ||
for(i=a.length-1;i>=0;i--){ | ||
document.write(a[i]) | ||
} | ||
document.write("</a>"); | ||
/*]]>*/ | ||
</script> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
<div class="col-md-1"> </div> | ||
</div> |
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
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
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,13 +1,13 @@ | ||
{% if include.background %} | ||
<div class="container-fluid {{include.background}}-bg"> | ||
<div class="row justify-content-center m-0"> | ||
<h1 class="slogan white-text" style="color: white !important"> | ||
<h2 class="slogan white-text" style="color: white !important"> | ||
{% else %} | ||
<div class="container-fluid transparent-bg"> | ||
<div class="row justify-content-center m-0 transparent-bg"> | ||
{% if include.color-text and include.color-text == 'white'%} | ||
<h1 class="slogan white-text" style='color: white !important;' id="{{include.id}}"> | ||
<h2 class="slogan white-text" style='color: white !important;' id="{{include.id}}"> | ||
{% else %} | ||
<h1 class="slogan blue-text" style='color: #003e52 !important;' id="{{include.id}}"> | ||
<h2 class="slogan blue-text" style='color: #003e52 !important;' id="{{include.id}}"> | ||
{% endif %} | ||
{% endif %} |
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,4 +1,4 @@ | ||
</h1> | ||
</h2> | ||
<div class="col-4 underline-slogan"> </div> | ||
</div> | ||
</div> |
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
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
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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.