Skip to content

Commit 1f7fdde

Browse files
New site
1 parent a388813 commit 1f7fdde

File tree

93 files changed

+1114
-3716
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+1114
-3716
lines changed

.gitignore

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

404.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: default
4+
---
5+
6+
<style type="text/css" media="screen">
7+
.container {
8+
margin: 10px auto;
9+
max-width: 600px;
10+
text-align: center;
11+
}
12+
h1 {
13+
margin: 30px 0;
14+
font-size: 4em;
15+
line-height: 1;
16+
letter-spacing: -1px;
17+
}
18+
</style>
19+
20+
<div class="container">
21+
<h1>404</h1>
22+
23+
<p><strong>Page not found :(</strong></p>
24+
<p>The requested page could not be found.</p>
25+
</div>

Gemfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
source "https://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
# gem "jekyll", "~> 4.1.1"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
gem "minima", "~> 2.5"
13+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15+
gem "github-pages", group: :jekyll_plugins
16+
# If you have any plugins, put them here!
17+
group :jekyll_plugins do
18+
gem "jekyll-feed", "~> 0.12"
19+
gem 'jekyll-gist'
20+
end

_config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
title: CodeChimp
2+
3+
# description: >- # this means to ignore newlines until "baseurl:"
4+
# Productivity Apps & Tools
5+
baseurl: "" # the subpath of your site, e.g. /blog
6+
url: "https://codechimp.org" # the base hostname & protocol for your site, e.g. http://example.com
7+
twitter_username: andrewcodechimp
8+
github_username: andrew-codechimp
9+
10+
# Build settings
11+
theme: minima
12+
13+
plugins:
14+
- jekyll-feed
15+
- jekyll-gist
16+
- jekyll-seo-tag
17+
18+
sass:
19+
sass_dir: _sass
20+
21+
author:
22+
name: Andrew Jackson
23+

_includes/card.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<section class="card">
2+
<header class="card-title">
3+
<h1>
4+
<b>{{ include.title }}</b> {{ include.subtitle }}
5+
</h1>
6+
</header>
7+
8+
<div class="card-content" >
9+
<div class="card-image">
10+
{% if include.app-img and include.app-img != "" %}
11+
<img src="assets/img/{{ include.app-img }}" alt="App icon for {{ include.title }}">
12+
{% endif %}
13+
</div>
14+
<div class="card-text">
15+
<!-- Markdown Content -->
16+
{% if include.markdown-content %}
17+
{% capture my_include %}{% include portfolio/{{ include.markdown-content }} %}{% endcapture %}
18+
{{ my_include | markdownify }}
19+
<!-- HTML Content -->
20+
{% elsif include.html-content %}
21+
{{ include.html-content }}
22+
{% endif %}
23+
</div>
24+
</div>
25+
26+
<div class="card-store-link">
27+
{% if include.store-url and include.store-text and include.store-url != "" and include.store-text != "" %}
28+
<a href="{{ include.store-url}}">{{ include.store-text }}</a>
29+
{% endif %}
30+
</div>
31+
32+
</section>

_includes/footer.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<footer class="site-footer h-card">
2+
<data class="u-url" href="{{ "/" | relative_url }}"></data>
3+
4+
<div class="wrapper">
5+
6+
{%- if site.author %}
7+
<ul class="contact-list">
8+
<!-- {% if site.author.name -%}
9+
<li class="p-name">{{ site.author.name | escape }}</li>
10+
{% endif -%} -->
11+
{% if site.author.email -%}
12+
<li><a class="u-email" href="mailto:{{ site.author.email }}">{{ site.author.email }}</a></li>
13+
{%- endif %}
14+
</ul>
15+
{%- endif %}
16+
17+
<div class="social-links">
18+
{%- include social.html -%}
19+
</div>
20+
21+
<div class="copyright">
22+
Copyright © 2022 CodeChimp
23+
</div>
24+
</div>
25+
26+
</footer>

_includes/head.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<head>
2+
<meta charset="utf-8">
3+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
{%- seo -%}
6+
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
7+
<link rel="shortcut icon" type="image/png" href="favicon.png">
8+
{%- feed_meta -%}
9+
{%- if jekyll.environment == 'production' and site.google_analytics -%}
10+
{%- include google-analytics.html -%}
11+
{%- endif -%}
12+
</head>

_includes/header.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<header class="site-header" role="banner">
2+
3+
<div class="wrapper">
4+
{%- assign default_paths = site.pages | map: "path" -%}
5+
{%- assign page_paths = site.header_pages | default: default_paths -%}
6+
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>
7+
8+
{%- if page_paths -%}
9+
<nav class="site-nav">
10+
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
11+
<label for="nav-trigger">
12+
<span class="menu-icon">
13+
<svg viewBox="0 0 18 15" width="18px" height="15px">
14+
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
15+
</svg>
16+
</span>
17+
</label>
18+
19+
<div class="trigger">
20+
<a class="page-link" href={{ "/blog" | relative_url }}>Blog</a>
21+
<a class="page-link" href={{ "/privacy" | relative_url }}>Privacy Policy</a>
22+
<a class="page-link" href={{ "/presskits" | relative_url }}>Press Kits</a>
23+
</div>
24+
</nav>
25+
{%- endif -%}
26+
</div>
27+
</header>

_includes/portfolio/applinks.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Get links to the Play Store for the apps you already have installed and share them with friends/social media/anything else you can share to on your phone.
2+
&nbsp;&nbsp;
3+
4+
Google Nearby support allows you to easily share app links between people in the same room or your own devices. No exchange of email addresses required, just running App Links near each other is enough to share your app links.
5+
No Ads or limitations, totally free.

_includes/portfolio/hamenu.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
A Mac OS Menu Bar app to perform common Home Assistant functions.

0 commit comments

Comments
 (0)