Skip to content

Commit 8b6ea16

Browse files
committed
Merge with gh-pages
2 parents 59fff60 + c0cb09f commit 8b6ea16

File tree

13 files changed

+140
-120
lines changed

13 files changed

+140
-120
lines changed

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2018 Emil Baehr
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

_config.yml

Lines changed: 47 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ios_app_id : 618783545
55

66
appstore_link : # Automatically populates if not set and if iOS app ID is set. Otherwise enter manually.
77
playstore_link : # Enter Google Play Store URL.
8+
presskit_download_link : # Enter a link to downloadable file or (e.g. public dropbox link to a .zip file). Or upload your press kit file to assets and set path accordingly (e.g. "assets/your_press_kit.zip").
89

910
app_name : # Automatically populates if not set and if iOS app ID is set. Otherwise enter manually.
1011
app_price : # Automatically populates if not set and if iOS app ID is set. Otherwise enter manually.
@@ -20,10 +21,10 @@ your_link : https://emilbaehr.com
2021
your_city : Copenhagen # Tell people where you're from.
2122

2223
# Icon, screenshot and header image
23-
app_icon : # ../assets/appicon-1024px.png # Automatically populates if not set and if iOS app ID is set. Otherwise enter path to icon file manually.
24-
app_video : # ../assets/video.mp4 # Uncomment and replace with path to app preview video. Optimal resolutions: 1242x2688 or 1125x2436.
25-
app_screenshot : ../assets/screenshot.png # Replace with alternateive image path. Does not automatically populate since Apple does not provide iPhone X/XS/XR screenshots in their iTunes lookup API.
26-
header_image : ../assets/headerimage.png # Replace with alternative image path.
24+
app_icon : # assets/appicon.png # Automatically populates if not set and if iOS app ID is set. Otherwise enter path to icon file manually.
25+
app_video : assets/yourvideo.mov # Uncomment and replace with path to app preview video. Optimal resolutions: 1242x2688 or 1125x2436.
26+
app_screenshot : assets/yourscreenshot.png # Replace with alternateive image path. Does not automatically populate since Apple does not provide iPhone X/XS/XR screenshots in their iTunes lookup API.
27+
header_image : assets/headerimage.png # Replace with alternative image path.
2728
device_color : black # Set to blue, black, yellow, coral or white
2829

2930
# Social Links # Enter usernames and email address. If set, they will be presented as links in the footer.
@@ -37,29 +38,37 @@ email_address : [email protected]
3738
# Features # Edit, add or remove features to be presented.
3839
features :
3940

40-
- title : Feature 1
41-
description : Present the features of your app with the dynamic Jekyll theme
41+
- title : GitHub Pages Jekyll Theme
42+
description : Designed for GitHub Pages for easy set-up. Fork. Edit _config.yml. Push. Voilá!
4243
fontawesome_icon_name : magic
4344

44-
- title : Feature 2
45-
description : Show your app in the context of an iPhone
45+
- title : iPhone Device Previews
46+
description : Show your app in the context of an iPhone device. Five different colors included.
4647
fontawesome_icon_name : mobile
4748

48-
- title : Feature 3
49-
description : Adjust colors, backgrounds and typography
49+
- title : Easy to Tweak
50+
description : Tweak accent color, images, icons and transparency via the _config.yml file. No HTML/CSS needed.
5051
fontawesome_icon_name : adjust
5152

5253
- title : Five device colors
53-
description : Choose between five different device colors to match your app's interface
54-
fontawesome_icon_name : mobile
54+
description : Choose between five different iPhone colors to match your app's visual identity.
55+
fontawesome_icon_name : palette
5556

56-
- title : Five device colors
57-
description : Choose between five different device colors to match your app's interface
58-
fontawesome_icon_name : mobile
57+
- title : Feature list
58+
description : Add features (like this one) to your site simply by editing the _config.yml file.
59+
fontawesome_icon_name : star
5960

60-
- title : Five device colors
61-
description : Choose between five different device colors to match your app's interface
62-
fontawesome_icon_name : mobile
61+
- title : Automatic App Icon
62+
description : Enter your iOS app ID in the _config.yml file to automatically fetch app icon.
63+
fontawesome_icon_name : sync
64+
65+
- title : Smart App Banner
66+
description : Display a smart app banner on iOS devices.
67+
fontawesome_icon_name : arrow-alt-circle-down
68+
69+
- title : Social Links
70+
description : Easily add social media accounts and contact info in the footer.
71+
fontawesome_icon_name : link
6372

6473
- title : # New Feature Title
6574
description : # New Feature Description
@@ -85,3 +94,23 @@ social_icons_background_color : "#e6e6e6"
8594

8695
# Analytics
8796
google_analytics : # Enter Google Analytics tracking code (e.g. UA-2110908-2).
97+
98+
99+
100+
# Jekyll Configuration
101+
102+
# The release of Mobile App Landing Page that you're using
103+
version: v1.0
104+
105+
# Set the Sass partials directory, as we're using @imports
106+
sass:
107+
style: :compressed # You might prefer to minify using :compressed
108+
109+
# Exclude these files from your production _site
110+
exclude:
111+
- Gemfile
112+
- Gemfile.lock
113+
- LICENSE
114+
- README.md
115+
- CNAME
116+
- mobile-app-landing-page.gemspec

_includes/head.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@
1919
{% endif %}
2020

2121
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
22-
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
23-
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
22+
<link rel="stylesheet" href="main.css">
2423
</head>

_includes/header.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
</div>
1616
<nav>
1717
<ul>
18-
<li><a href="/">Download Press Kit</a></li>
18+
{% if site.presskit_download_link %}
19+
<li><a href="{{ site.presskit_download_link }}">Download Press Kit</a></li>
20+
{% endif %}
1921
</ul>
2022
</nav>
2123
</header>

_layouts/changelog.html

Lines changed: 0 additions & 15 deletions
This file was deleted.

_layouts/default.html

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!DOCTYPE html>
2+
<html lang="en-us">
3+
4+
{% include head.html %}
5+
6+
<body>
7+
<div class="imageWrapper">
8+
<div class="headerBackground">
9+
<div class="container">
10+
{% include header.html %}
11+
<div class="iphonePreview">
12+
<svg width="0" height="0">
13+
<defs>
14+
<clipPath id="screenMask">
15+
<path id="shape" class="cls-1" d="M6490.24,1234.36H6216.28c-2.57,0-10.55-.07-12.07-0.07a87.524,87.524,0,0,1-12-1.03,40.051,40.051,0,0,1-11.4-3.79,38.315,38.315,0,0,1-16.82-16.84,39.948,39.948,0,0,1-3.78-11.42,72.257,72.257,0,0,1-1.04-12.02c-0.06-1.83-.06-5.56-0.06-5.56V452.125h0s0.06-11.391.06-12.086a87.9,87.9,0,0,1,1.04-12.025,39.843,39.843,0,0,1,3.78-11.413,38.283,38.283,0,0,1,16.82-16.847,39.762,39.762,0,0,1,11.4-3.785,71.909,71.909,0,0,1,12-1.037c16.99-.567,36.32-0.061,34.51-0.061,5.02,0,6.5,3.439,6.63,6.962a35.611,35.611,0,0,0,1.2,8.156,21.326,21.326,0,0,0,19.18,15.592c2.28,0.192,6.78.355,6.78,0.355H6433.7s4.5-.059,6.79-0.251a21.348,21.348,0,0,0,19.18-15.591,35.582,35.582,0,0,0,1.19-8.154c0.13-3.523,1.61-6.962,6.64-6.962-1.81,0,17.52-.5,34.5.061a71.923,71.923,0,0,1,12.01,1.038,39.832,39.832,0,0,1,11.4,3.784,38.283,38.283,0,0,1,16.82,16.844,40.153,40.153,0,0,1,3.78,11.413,87.844,87.844,0,0,1,1.03,12.023c0,0.695.06,12.084,0.06,12.084h0V1183.64s0,3.72-.06,5.55a72.366,72.366,0,0,1-1.03,12.03,40.2,40.2,0,0,1-3.78,11.41,38.315,38.315,0,0,1-16.82,16.84,40.155,40.155,0,0,1-11.4,3.79,87.669,87.669,0,0,1-12.01,1.03c-1.52,0-9.5.07-12.07,0.07" transform="translate(-6159.12 -394.656)"/>
16+
</clipPath>
17+
</defs>
18+
</svg>
19+
{% if site.app_video %}
20+
<div class="videoContainer">
21+
<video autoplay="autoplay" controls="controls">
22+
<source src="{{ site.app_video }}" type="video/mp4">
23+
</video>
24+
</div>
25+
{% else %}
26+
<img class="iphoneScreen" src="{{ site.app_screenshot }}">
27+
{% endif %}
28+
</div>
29+
<div class="appInfo">
30+
<div class="appIconShadow">
31+
<svg width="0" height="0">
32+
<defs>
33+
<clipPath id="shape120">
34+
<path id="shape" class="cls-1" d="M6821,495.533v-4.281c0-1.2-.04-2.4-0.04-3.642a57.7,57.7,0,0,0-.68-7.882,26.144,26.144,0,0,0-2.48-7.483,25.115,25.115,0,0,0-11.04-11.044,26.118,26.118,0,0,0-7.49-2.481,47.28,47.28,0,0,0-7.88-.68c-1.2-.04-2.4-0.04-3.64-0.04h-53.5c-1.2,0-2.4.04-3.64,0.04a57.813,57.813,0,0,0-7.88.68,26.323,26.323,0,0,0-7.49,2.481,25.115,25.115,0,0,0-11.04,11.044,26.144,26.144,0,0,0-2.48,7.483,47.313,47.313,0,0,0-.68,7.882c-0.04,1.2-.04,2.4-0.04,3.642v53.5c0,1.2.04,2.4,0.04,3.641a57.7,57.7,0,0,0,.68,7.883,26.137,26.137,0,0,0,2.48,7.482,25.115,25.115,0,0,0,11.04,11.044,26.261,26.261,0,0,0,7.49,2.481,47.28,47.28,0,0,0,7.88.68c1.2,0.04,2.4.04,3.64,0.04h53.5c1.2,0,2.4-.04,3.64-0.04a57.654,57.654,0,0,0,7.88-.68,26.057,26.057,0,0,0,7.49-2.481,25.115,25.115,0,0,0,11.04-11.044,26.137,26.137,0,0,0,2.48-7.482,47.316,47.316,0,0,0,.68-7.883c0.04-1.2.04-2.4,0.04-3.641V495.533h0Z" transform="translate(-6701 -458)" filter="url(#f1)"/>
35+
</clipPath>
36+
</defs>
37+
</svg>
38+
<img class="appIconLarge" src="{{ site.app_icon }}">
39+
</div>
40+
<div class="appNamePriceContainer">
41+
<h1 class="appName">
42+
{{ site.app_name }}
43+
</h1>
44+
<h2 class="appPrice">
45+
{{ site.app_price }}
46+
</h2>
47+
</div>
48+
<div class="appDescriptionContainer">
49+
<p class ="appDescription">
50+
{{ site.app_description }}
51+
</p>
52+
</div>
53+
<div class="downloadButtonsContainer">
54+
<a class="playStoreLink" href=""><img class="playStore" src="assets/playstore.png"></a>
55+
<a class="appStoreLink" href=""><img class="appStore" src="assets/appstore.png"></a>
56+
</div>
57+
</div>
58+
{% include features.html %}
59+
{% include footer.html %}
60+
{% include appstoreimages.html %}
61+
</div>
62+
</div>
63+
</div>
64+
</body>
65+
</html>

_layouts/faq.html

Lines changed: 0 additions & 15 deletions
This file was deleted.

assets/appicon-1024px.png

-67.9 KB
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)