Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…-page from commit 915d06886e577ef796d8d5ce1a022cb337ca42ff manually
  • Loading branch information
paulxjwg committed May 11, 2023
1 parent 7fe72d8 commit 1f7bc00
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 9 deletions.
4 changes: 3 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ page_title :

# App Info
ios_app_id : 1535989291 # Required. Enter iOS app ID to automatically populate name, price and icons (e.g. 718043190).
ios_app_country : de # Required outside USA. Enter 2 letter country code as in https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2

appstore_link : # Automatically populates if not set and if iOS app ID is set. Otherwise enter manually.
playstore_link : # Enter Google Play Store URL.
Expand All @@ -20,14 +21,15 @@ enable_smart_app_banner : true

# Information About Yourself
your_name : Paul Bernhard
your_link : #https://emilbaehr.com
your_link :
your_city : Deutschland
email_address : [email protected]
facebook_username :
instagram_username :
twitter_username :
github_username : paulxjwg
youtube_username :
mastodon_link :



Expand Down
2 changes: 1 addition & 1 deletion _includes/appstoreimages.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

$(function() {

var apiURL = "https://itunes.apple.com/lookup?id={{ site.ios_app_id }}&callback=?";
var apiURL = "https://itunes.apple.com/lookup?id={{ site.ios_app_id }}&country={{ site.ios_app_country }}&callback=?";

$.getJSON(apiURL, function(json) {

Expand Down
18 changes: 18 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@
</a>
{% endif %}

{% if site.instagram_username %}
<a href="https://instagram.com/{{ site.instagram_username }}">
<span class="fa-stack fa-1x">
<i class="socialIconBack fas fa-circle fa-stack-2x"></i>
<i class="socialIconTop fab fa-instagram fa-stack-1x"></i>
</span>
</a>
{% endif %}

{% if site.mastodon_link %}
<a rel="me" href="{{ site.mastodon_link }}">
<span class="fa-stack fa-1x">
<i class="socialIconBack fas fa-circle fa-stack-2x"></i>
<i class="socialIconTop fab fa-mastodon fa-stack-1x"></i>
</span>
</a>
{% endif %}

{% if site.github_username %}
<a href="https://github.com/{{ site.github_username }}">
<span class="fa-stack fa-1x">
Expand Down
6 changes: 2 additions & 4 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<title class="pageTitle">{{ site.page_title }}</title>
<meta name="description" content="{{ site.app_description }}">

<link rel="shortcut icon" href="{{ site.app_icon }}">
<link rel="shortcut icon" href="{{ site.app_icon | relative_url }}">

<meta property="og:title" content="{{ site.app_name}}" />
<meta property="og:description" content="{{ site.app_description}}" />
Expand All @@ -19,7 +19,5 @@
{% endif %}

<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="stylesheet" href="/main.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="../main.css">
<link rel="stylesheet" href="{{ '/main.css' | relative_url }}">
</head>
4 changes: 2 additions & 2 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
</defs>
</svg>
{% if page.url != '/' %}
<a href="../" target="_self"><img class="headerIcon" src="{{ site.app_icon }}"></a>
<a href="../" target="_self"><img class="headerIcon" src="{{ site.app_icon | relative_url }}"></a>
{% else %}
<img class="headerIcon" src="{{ site.app_icon }}">
<img class="headerIcon" src="{{ site.app_icon | relative_url }}">
{% endif %}
<div class="divider"></div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</clipPath>
</defs>
</svg>
<img class="appIconLarge" src="{{ site.app_icon }}">
<img class="appIconLarge" src="{{ site.app_icon | relative_url }}">
</div>
<div class="appNamePriceContainer">
<h1 class="appName">
Expand Down

0 comments on commit 1f7bc00

Please sign in to comment.