-
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.
- Loading branch information
1 parent
20cdf85
commit 60490f7
Showing
5 changed files
with
137 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
--- | ||
title: Home | ||
layout: default | ||
background: '/img/bg-index.jpg' | ||
--- | ||
|
||
<!-- Home Intro | ||
================================================== --> | ||
{% if page.url == "/" %} | ||
<div class="rounded mb-5 hero"> | ||
<div class="row align-items-center justify-content-between"> | ||
<div class="col-md-6"> | ||
<h1 class="font-weight-bold mb-4 serif-font">Let me teach you how to become successful online</h1> | ||
<p class="lead mb-4">My name is Lyam and I'm here to share with you my knowledge and experience of over 10 years of monetizing my blog.</p> | ||
<a href="{{site.baseurl}}/about" class="btn btn-dark text-white px-5 btn-lg">About me</a> | ||
</div> | ||
<div class="col-md-6 text-right pl-0 pl-lg-4"> | ||
<img class="intro" height="500" src="{{site.baseurl}}/assets/images/intro.svg"> | ||
</div> | ||
</div> | ||
</div> | ||
{% endif %} | ||
|
||
<!-- Featured | ||
================================================== --> | ||
<section class="row"> | ||
{% for post in site.posts %} | ||
{% if post.featured == true %} | ||
<div class="col-md-4 mb-5"> | ||
{% include postbox.html %} | ||
</div> | ||
{% endif %} | ||
{% endfor %} | ||
</div> | ||
</section> | ||
|
||
<!-- Posts List with Sidebar (except featured) | ||
================================================== --> | ||
<section class="row"> | ||
<div class="col-sm-8"> | ||
<div class="row"> | ||
{% for post in paginator.posts %} | ||
{% unless post.featured == true %} | ||
<div class="col-md-6 mb-5"> | ||
{% include postbox.html %} | ||
</div> | ||
{% endunless %} | ||
{% endfor %} | ||
</div> | ||
<!-- Pagination --> | ||
<div class="bottompagination"> | ||
<span class="navigation" role="navigation"> | ||
{% include pagination.html %} | ||
</span> | ||
</div> | ||
</div> | ||
<div class="col-sm-4"> | ||
{% include sidebar.html %} | ||
</div> | ||
</section> |
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,15 @@ | ||
--- | ||
layout: page | ||
title: About | ||
permalink: "/about/" | ||
image: assets/images/screenshot.png | ||
--- | ||
|
||
This website is a demonstration to see **Affiliates Jekyll theme** in action. | ||
|
||
The theme is compatible with Github pages. This demo is created with Github Pages and hosted with Github. | ||
|
||
Everything is ready for your quick setup: Blog, Categories, About, Privacy Policy, Terms of Use, Contact form, Mailchimp | ||
|
||
[Get it here](https://bootstrapstarter.com/jekyll-theme-memoirs/) | ||
|
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,5 @@ | ||
--- | ||
layout: categories | ||
title: Categories | ||
permalink: "/categories/" | ||
--- |
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,20 @@ | ||
--- | ||
layout: page | ||
title: Contact | ||
permalink: "/contact/" | ||
comments: false | ||
--- | ||
|
||
<form action="https://formspree.io/{{site.email}}" method="POST"> | ||
<p class="mb-4">Thank you for your interest in getting in touch with us. Please send your message here. We will reply as soon as possible!</p> | ||
<div class="form-group row"> | ||
<div class="col-md-6"> | ||
<input class="form-control" type="text" name="name" placeholder="Name*" required> | ||
</div> | ||
<div class="col-md-6"> | ||
<input class="form-control" type="email" name="_replyto" placeholder="E-mail Address*" required> | ||
</div> | ||
</div> | ||
<textarea rows="8" class="form-control mb-3" name="message" placeholder="Message*" required></textarea> | ||
<input class="btn btn-dark" type="submit" value="Send"> | ||
</form> |
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,37 @@ | ||
--- | ||
layout: page | ||
title: Privacy Policy | ||
permalink: /privacy-policy/ | ||
comments: false | ||
--- | ||
|
||
### Information that is gathered from visitors | ||
In common with other websites, log files are stored on the web server saving details such as the visitor's IP address, browser type, referring page and time of visit. | ||
|
||
Cookies may be used to remember visitor preferences when interacting with the website. | ||
|
||
Where registration is required, the visitor's email and a username will be stored on the server. | ||
|
||
### How the Information is used | ||
The information is used to enhance the vistor's experience when using the website to display personalised content and possibly advertising. | ||
|
||
E-mail addresses will not be sold, rented or leased to 3rd parties. | ||
|
||
E-mail may be sent to inform you of news of our services or offers by us or our affiliates. | ||
|
||
### Visitor Options | ||
If you have subscribed to one of our services, you may unsubscribe by following the instructions which are included in e-mail that you receive. | ||
|
||
You may be able to block cookies via your browser settings but this may prevent you from access to certain features of the website. | ||
|
||
### Cookies | ||
Cookies are small digital signature files that are stored by your web browser that allow your preferences to be recorded when visiting the website. Also they may be used to track your return visits to the website. | ||
|
||
3rd party advertising companies may also use cookies for tracking purposes. | ||
|
||
### Google Ads | ||
Google, as a third party vendor, uses cookies to serve ads. | ||
|
||
Google's use of the DART cookie enables it to serve ads to visitors based on their visit to sites they visit on the Internet. | ||
|
||
Website visitors may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy. |