Skip to content
This repository was archived by the owner on Jun 16, 2025. It is now read-only.

Commit 2615a6b

Browse files
committed
Merge branch 'master' into develop
2 parents 0eec1fd + 776e842 commit 2615a6b

14 files changed

+92
-0
lines changed

docs/_config.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
title: Sidekick
2+
description: A Path of Exile tool that allows you to price check items inside the game.
3+
baseurl: "/Sidekick"
4+
url: "localhost:4000"
5+
repository: https://github.com/domialex/Sidekick
6+
theme: jekyll-theme-slate
7+
plugins:
8+
- jekyll-menus
9+
sass:
10+
sass_dir: css
11+

docs/_layouts/default.html

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<!DOCTYPE html>
2+
<html lang="{{ site.lang | default: "en-US" }}">
3+
4+
<head>
5+
<meta charset='utf-8'>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width,maximum-scale=2">
8+
<link rel="stylesheet" type="text/css" media="screen" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
9+
10+
{% seo %}
11+
</head>
12+
13+
<body>
14+
15+
<!-- HEADER -->
16+
<div id="header_wrap" class="outer">
17+
<header class="inner">
18+
{% if site.github.is_project_page %}
19+
<a id="forkme_banner" href="{{ site.github.repository_url }}">View on GitHub</a>
20+
{% endif %}
21+
22+
<h1 id="project_title">{{ site.title | default: site.github.repository_name }}</h1>
23+
<h2 id="project_tagline">{{ site.description | default: site.github.project_tagline }}</h2>
24+
25+
<ul>
26+
{% for item in site.menus.header %}
27+
<li class="menu-item-{{ loop.index }}">
28+
<a href="{{ item.url }}" title="Go to {{ item.title }}">{{ item.title }}</a>
29+
</li>
30+
{% endfor %}
31+
</ul>
32+
33+
{% if site.show_downloads %}
34+
<section id="downloads">
35+
<a class="zip_download_link" href="{{ site.github.zip_url }}">Download this project as a .zip file</a>
36+
<a class="tar_download_link" href="{{ site.github.tar_url }}">Download this project as a tar.gz file</a>
37+
</section>
38+
{% endif %}
39+
</header>
40+
</div>
41+
42+
<!-- MAIN CONTENT -->
43+
<div id="main_content_wrap" class="outer">
44+
<section id="main_content" class="inner">
45+
{{ content }}
46+
</section>
47+
</div>
48+
49+
<!-- FOOTER -->
50+
<div id="footer_wrap" class="outer">
51+
<footer class="inner">
52+
{% if site.github.is_project_page %}
53+
<p class="copyright">{{ site.title | default: site.github.repository_name }} maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
54+
{% endif %}
55+
<p>Published with <a href="https://pages.github.com">GitHub Pages</a></p>
56+
</footer>
57+
</div>
58+
59+
{% if site.google_analytics %}
60+
<script>
61+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
62+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
63+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
64+
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
65+
ga('create', '{{ site.google_analytics }}', 'auto');
66+
ga('send', 'pageview');
67+
</script>
68+
{% endif %}
69+
</body>
70+
</html>

docs/about.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: About - Sidekick
3+
menus: header
4+
---
5+
# About
5.29 KB
Loading
49.6 KB
Loading
35 KB
Loading
22.2 KB
Loading
42.4 KB
Loading
39.2 KB
Loading

docs/assets/images/price-check.png

59.3 KB
Loading

0 commit comments

Comments
 (0)