popfolio 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +52 -0
- data/_config.yml +92 -0
- data/_includes/footer.html +18 -0
- data/_includes/header.html +29 -0
- data/_includes/projects.html +32 -0
- data/_includes/skills.html +15 -0
- data/_includes/social.html +162 -0
- data/_layouts/default.html +43 -0
- data/_layouts/home.html +20 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/_base.scss +289 -0
- data/_sass/_layout.scss +471 -0
- data/_sass/custom-styles.scss +0 -0
- data/_sass/custom-variables.scss +0 -0
- data/_sass/popfolio.scss +52 -0
- data/_sass/skins/dark.scss +236 -0
- data/_sass/skins/light.scss +223 -0
- data/assets/avatar.png +0 -0
- data/assets/popfolio-skills-icons.svg +15 -0
- data/assets/popfolio-social-icons.svg +37 -0
- data/assets/projects/bootstrap-portfolio.png +0 -0
- data/assets/projects/diceroller.png +0 -0
- data/assets/projects/intouch.gif +0 -0
- data/assets/styles.scss +6 -0
- metadata +98 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: b37f73be178176f20a51090e26bb82507a7bf8e7d53ff492a64685508dcab3c7
|
|
4
|
+
data.tar.gz: 5feb1ba3749c44fdef3091fa72a3124f6db9d13fed1b6311ac11af7b31ebf002
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 1e987f88e501bba311b5fe8980348e78632eacec07f57a778cca7b2f06af7a00f1a0c726001d2a29637decd7a19a51e7be6d113e8fc67fb140418bfc396c8112
|
|
7
|
+
data.tar.gz: 40dcb2a7d664436d76fa0acd00e92914c3c49b6b243cf22af79592a0667697157a9c94c8c76b0907db64b66bb66549af0879f7f73f9db3d0730320813c125aba
|
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all 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,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# popfolio
|
|
2
|
+
|
|
3
|
+
Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
|
|
4
|
+
|
|
5
|
+
To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
|
|
6
|
+
|
|
7
|
+
TODO: Delete this and the text above, and describe your gem
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
Add this line to your Jekyll site's `Gemfile`:
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
gem "popfolio"
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
And add this line to your Jekyll site's `_config.yml`:
|
|
19
|
+
|
|
20
|
+
```yaml
|
|
21
|
+
theme: popfolio
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
And then execute:
|
|
25
|
+
|
|
26
|
+
$ bundle
|
|
27
|
+
|
|
28
|
+
Or install it yourself as:
|
|
29
|
+
|
|
30
|
+
$ gem install popfolio
|
|
31
|
+
|
|
32
|
+
## Usage
|
|
33
|
+
|
|
34
|
+
TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
|
|
35
|
+
|
|
36
|
+
## Contributing
|
|
37
|
+
|
|
38
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
39
|
+
|
|
40
|
+
## Development
|
|
41
|
+
|
|
42
|
+
To set up your environment to develop this theme, run `bundle install`.
|
|
43
|
+
|
|
44
|
+
Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
|
|
45
|
+
|
|
46
|
+
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
|
47
|
+
To add a custom directory to your theme-gem, please edit the regexp in `popfolio.gemspec` accordingly.
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
52
|
+
|
data/_config.yml
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# Installed Gems
|
|
2
|
+
plugins:
|
|
3
|
+
- jekyll-seo-tag
|
|
4
|
+
|
|
5
|
+
# Gem settings
|
|
6
|
+
author:
|
|
7
|
+
name: Matt Shultz # jekyll-seo-tag > default author
|
|
8
|
+
email: matt@shultz.dev
|
|
9
|
+
social: # jekyll-seo-tag > social overrides
|
|
10
|
+
name: David Darnes # jekyll-seo-tag > real name
|
|
11
|
+
links: # jekyll-seo-tag > social aliases (sameAs)
|
|
12
|
+
github: popshift
|
|
13
|
+
linkedin: matt-shultz-85605ba6
|
|
14
|
+
# twitter: jekyllrb
|
|
15
|
+
# devto: jekyll
|
|
16
|
+
# dribbble: jekyll
|
|
17
|
+
# facebook: jekyll
|
|
18
|
+
# flickr: jekyll
|
|
19
|
+
# instagram: jekyll
|
|
20
|
+
# pinterest: jekyll
|
|
21
|
+
# youtube: jekyll
|
|
22
|
+
# youtube_channel: UC8CXR0-3I70i1tfPg1PAE1g
|
|
23
|
+
# youtube_channel_name: CloudCannon
|
|
24
|
+
# telegram: jekyll
|
|
25
|
+
# googleplus: +jekyll
|
|
26
|
+
# microdotblog: jekyll
|
|
27
|
+
# keybase: jekyll
|
|
28
|
+
|
|
29
|
+
# Mastodon instances
|
|
30
|
+
# mastodon:
|
|
31
|
+
# - username: jekyll
|
|
32
|
+
# instance: example.com
|
|
33
|
+
# - username: jekyll2
|
|
34
|
+
# instance: example.com
|
|
35
|
+
|
|
36
|
+
# GitLab instances
|
|
37
|
+
# gitlab:
|
|
38
|
+
# - username: jekyll
|
|
39
|
+
# instance: example.com
|
|
40
|
+
# - username: jekyll2
|
|
41
|
+
# instance: example.com
|
|
42
|
+
|
|
43
|
+
# Site settings
|
|
44
|
+
encoding: utf-8 # Make sure the encoding is right
|
|
45
|
+
lang: en-US # Set the site language
|
|
46
|
+
title: "Popfolio" # Site name or title, also used in jekyll-seo-tag
|
|
47
|
+
header_title: "PF" # Title to display in the header, will be surrounded by < and />
|
|
48
|
+
css_inline: false # Will insert all styles into a single <style> block in the <head> element and remove the style <link> reference
|
|
49
|
+
avatar: "assets/avatar.png" # Displays on the home page. For best results, use a square image at least 100px
|
|
50
|
+
intro:
|
|
51
|
+
main: "Hi, my name is Popshift" # This is your tag line that displays under your avatar on the home page. Comment out to hide.
|
|
52
|
+
sub: "I made this theme for you" # This is the second line of the tag line. Comment out to hide.
|
|
53
|
+
footer_message: "#coolhashtag 👍" # Comment out to hide. Appears at the bottom of the page, centered above the social links.
|
|
54
|
+
|
|
55
|
+
# The following skills are displayed on the home page. The svg_id should equal the fontawesome code of the icon.
|
|
56
|
+
# Follow the guide in the readme for adding any missing icons to the popfolio-skills-icons.svg file
|
|
57
|
+
skills:
|
|
58
|
+
- skill: Javascript
|
|
59
|
+
svg_id: js-square
|
|
60
|
+
- skill: HTML
|
|
61
|
+
svg_id: html5
|
|
62
|
+
- skill: CSS
|
|
63
|
+
svg_id: css3-alt
|
|
64
|
+
- skill: React
|
|
65
|
+
svg_id: react
|
|
66
|
+
- skill: Python
|
|
67
|
+
svg_id: python
|
|
68
|
+
- skill: Node.JS
|
|
69
|
+
svg_id: node-js
|
|
70
|
+
|
|
71
|
+
projects:
|
|
72
|
+
# Project
|
|
73
|
+
- title: Project 1 Title
|
|
74
|
+
description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
75
|
+
url: "#"
|
|
76
|
+
image: https://via.placeholder.com/250x200
|
|
77
|
+
featured: true
|
|
78
|
+
tags: [html, css, javascript]
|
|
79
|
+
# Project
|
|
80
|
+
- title: Project 2 Title
|
|
81
|
+
description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
82
|
+
url: "#"
|
|
83
|
+
image: https://via.placeholder.com/250x200
|
|
84
|
+
featured: true
|
|
85
|
+
tags: [html, css, javascript]
|
|
86
|
+
# Project
|
|
87
|
+
- title: Project 3 Title
|
|
88
|
+
description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
89
|
+
url: "#"
|
|
90
|
+
image: https://via.placeholder.com/250x200
|
|
91
|
+
featured: true
|
|
92
|
+
tags: [html, css, javascript]
|
|
@@ -0,0 +1,18 @@
|
|
|
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.footer_message %}
|
|
7
|
+
<div class="footer-message">
|
|
8
|
+
<span>{{ site.footer_message | escape }}</span>
|
|
9
|
+
</div>
|
|
10
|
+
{% endif %}
|
|
11
|
+
|
|
12
|
+
<div class="social-links">
|
|
13
|
+
{%- include social.html -%}
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
</div>
|
|
17
|
+
|
|
18
|
+
</footer>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<header class="site-header">
|
|
2
|
+
|
|
3
|
+
<div class="wrapper">
|
|
4
|
+
{%- assign pages = site.pages | sort: 'order' -%}
|
|
5
|
+
{%- assign titles_size = site.pages | map: 'title' | join: '' | size -%}
|
|
6
|
+
<a class="site-title" rel="author" href="{{ "/" | relative_url }}"><span class="title-bracket"><</span>{{ site.header_title | escape }}<span class="title-bracket">/></span></a>
|
|
7
|
+
|
|
8
|
+
{%- if titles_size > 0 -%}
|
|
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
|
+
{%- for my_page in pages -%}
|
|
21
|
+
{%- if my_page.title -%}
|
|
22
|
+
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}<span class="link-bracket">/></span></a>
|
|
23
|
+
{%- endif -%}
|
|
24
|
+
{%- endfor -%}
|
|
25
|
+
</div>
|
|
26
|
+
</nav>
|
|
27
|
+
{%- endif -%}
|
|
28
|
+
</div>
|
|
29
|
+
</header>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{% if site.projects %}
|
|
2
|
+
<section class="projects">
|
|
3
|
+
<h2>Projects I've worked on...</h2>
|
|
4
|
+
<p>
|
|
5
|
+
Here are a few projects I've put together recently. Want to see more? Check
|
|
6
|
+
out my <a href="#">Projects</a> page.
|
|
7
|
+
</p>
|
|
8
|
+
{% for project in site.projects %} {% if project.image contains '://' %} {%
|
|
9
|
+
assign image = project.image %} {% else %} {% assign image = project.image |
|
|
10
|
+
relative_url %} {% endif %}
|
|
11
|
+
|
|
12
|
+
<div class="project-item">
|
|
13
|
+
<div class="project-image">
|
|
14
|
+
<a href="{{ project.url }}"
|
|
15
|
+
><img src="{{ image }}" alt="{{ project.title }}"
|
|
16
|
+
/></a>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="project-details">
|
|
19
|
+
<h2><a href="{{ project.url }}">{{ project.title }}</a></h2>
|
|
20
|
+
<p>{{ project.description }}</p>
|
|
21
|
+
{% for tag in project.tags %} {% if forloop.first %}
|
|
22
|
+
<ul class="tags">
|
|
23
|
+
{% endif %}
|
|
24
|
+
<li><a href="#" class="tag">{{ tag }}</a></li>
|
|
25
|
+
{% if forloop.last %}
|
|
26
|
+
</ul>
|
|
27
|
+
{% endif %} {% endfor %}
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
{% endfor %}
|
|
31
|
+
</section>
|
|
32
|
+
{% endif %}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{% if site.skills %}
|
|
2
|
+
<section class="skills">
|
|
3
|
+
<h2>Skills I'm actively building...</h2>
|
|
4
|
+
|
|
5
|
+
{% for item in site.skills %}
|
|
6
|
+
<div class="skill-item">
|
|
7
|
+
<svg class="">
|
|
8
|
+
<use xlink:href="{{ '/assets/popfolio-skills-icons.svg#' | append: item.svg_id | relative_url }}"></use>
|
|
9
|
+
</svg>
|
|
10
|
+
{{ item.skill }}
|
|
11
|
+
</div>
|
|
12
|
+
{% endfor %}
|
|
13
|
+
|
|
14
|
+
</section>
|
|
15
|
+
{% endif %}
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
{%- assign social = site.social.links -%}
|
|
2
|
+
|
|
3
|
+
<ul class="social-media-list">
|
|
4
|
+
{%- for glb in social.gitlab -%}
|
|
5
|
+
{%- if glb.username and glb.instance -%}
|
|
6
|
+
<li>
|
|
7
|
+
<a rel="me" href="https://{{ glb.instance | cgi_escape | escape}}/{{glb.username}}" title="{{ glb.username | escape }}">
|
|
8
|
+
<svg class="svg-icon">
|
|
9
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#gitlab' | relative_url }}"></use>
|
|
10
|
+
</svg>
|
|
11
|
+
</a>
|
|
12
|
+
</li>
|
|
13
|
+
{%- endif -%}
|
|
14
|
+
{%- endfor -%}
|
|
15
|
+
{%- if social.dribbble -%}
|
|
16
|
+
<li>
|
|
17
|
+
<a rel="me" href="https://dribbble.com/{{ social.dribbble | cgi_escape | escape }}" title="{{ social.dribbble | escape }}">
|
|
18
|
+
<svg class="svg-icon">
|
|
19
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#dribbble' | relative_url }}"></use>
|
|
20
|
+
</svg>
|
|
21
|
+
</a>
|
|
22
|
+
</li>
|
|
23
|
+
{%- endif -%}
|
|
24
|
+
{%- if social.facebook -%}
|
|
25
|
+
<li>
|
|
26
|
+
<a rel="me" href="https://www.facebook.com/{{ social.facebook | cgi_escape | escape }}" title="{{ social.facebook | escape }}">
|
|
27
|
+
<svg class="svg-icon">
|
|
28
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#facebook' | relative_url }}"></use>
|
|
29
|
+
</svg>
|
|
30
|
+
</a>
|
|
31
|
+
</li>
|
|
32
|
+
{%- endif -%}
|
|
33
|
+
{%- if social.flickr -%}
|
|
34
|
+
<li>
|
|
35
|
+
<a rel="me" href="https://www.flickr.com/photos/{{ social.flickr | cgi_escape | escape }}" title="{{ social.flickr | escape }}">
|
|
36
|
+
<svg class="svg-icon">
|
|
37
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#flickr' | relative_url }}"></use>
|
|
38
|
+
</svg>
|
|
39
|
+
</a>
|
|
40
|
+
</li>
|
|
41
|
+
{%- endif -%}
|
|
42
|
+
{%- if social.github -%}
|
|
43
|
+
<li>
|
|
44
|
+
<a rel="me" href="https://github.com/{{ social.github | cgi_escape | escape }}" title="{{ social.github | escape }}">
|
|
45
|
+
<svg class="svg-icon">
|
|
46
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#github' | relative_url }}"></use>
|
|
47
|
+
</svg>
|
|
48
|
+
</a>
|
|
49
|
+
</li>
|
|
50
|
+
{%- endif -%}
|
|
51
|
+
{%- if social.stackoverflow -%}
|
|
52
|
+
<li>
|
|
53
|
+
<a rel="me" href="https://stackoverflow.com/users/{{ social.stackoverflow | cgi_escape | escape }}" title="{{ social.stackoverflow | escape }}">
|
|
54
|
+
<svg class="svg-icon">
|
|
55
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#stackoverflow' | relative_url }}"></use>
|
|
56
|
+
</svg>
|
|
57
|
+
</a>
|
|
58
|
+
</li>
|
|
59
|
+
{%- endif -%}
|
|
60
|
+
{%- if social.instagram -%}
|
|
61
|
+
<li>
|
|
62
|
+
<a rel="me" href="https://www.instagram.com/{{ social.instagram | cgi_escape | escape }}" title="{{ social.instagram | escape }}">
|
|
63
|
+
<svg class="svg-icon">
|
|
64
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#instagram' | relative_url }}"></use>
|
|
65
|
+
</svg>
|
|
66
|
+
</a>
|
|
67
|
+
</li>
|
|
68
|
+
{%- endif -%}
|
|
69
|
+
{%- if social.linkedin -%}
|
|
70
|
+
<li>
|
|
71
|
+
<a rel="me" href="https://www.linkedin.com/in/{{ social.linkedin | cgi_escape | escape }}" title="{{ social.linkedin | escape }}">
|
|
72
|
+
<svg class="svg-icon">
|
|
73
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#linkedin' | relative_url }}"></use>
|
|
74
|
+
</svg>
|
|
75
|
+
</a>
|
|
76
|
+
</li>
|
|
77
|
+
{%- endif -%}
|
|
78
|
+
{%- if social.pinterest -%}
|
|
79
|
+
<li>
|
|
80
|
+
<a rel="me" href="https://www.pinterest.com/{{ social.pinterest | cgi_escape | escape }}" title="{{ social.pinterest | escape }}">
|
|
81
|
+
<svg class="svg-icon">
|
|
82
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#pinterest' | relative_url }}"></use>
|
|
83
|
+
</svg>
|
|
84
|
+
</a>
|
|
85
|
+
</li>
|
|
86
|
+
{%- endif -%}
|
|
87
|
+
{%- for mst in social.mastodon -%}
|
|
88
|
+
{%- if mst.username and
|
|
89
|
+
mst.instance -%}
|
|
90
|
+
<li>
|
|
91
|
+
<a rel="me" href="https://{{ mst.instance | cgi_escape | escape}}/@{{mst.username}}" title="{{ mst.username | escape }}">
|
|
92
|
+
<svg class="svg-icon">
|
|
93
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#mastodon' | relative_url }}"></use>
|
|
94
|
+
</svg>
|
|
95
|
+
</a>
|
|
96
|
+
</li>
|
|
97
|
+
{%- endif -%}
|
|
98
|
+
{%- endfor -%}
|
|
99
|
+
{%- if social.twitter -%}
|
|
100
|
+
<li>
|
|
101
|
+
<a rel="me" href="https://twitter.com/{{ social.twitter | cgi_escape | escape }}" title="{{ social.twitter | escape }}">
|
|
102
|
+
<svg class="svg-icon">
|
|
103
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#twitter' | relative_url }}"></use>
|
|
104
|
+
</svg>
|
|
105
|
+
</a>
|
|
106
|
+
</li>
|
|
107
|
+
{%- endif -%}
|
|
108
|
+
{%- if social.youtube -%}
|
|
109
|
+
<li>
|
|
110
|
+
<a rel="me" href="https://www.youtube.com/{{ social.youtube | cgi_escape | escape }}" title="{{ social.youtube | escape }}">
|
|
111
|
+
<svg class="svg-icon">
|
|
112
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#youtube' | relative_url }}"></use>
|
|
113
|
+
</svg>
|
|
114
|
+
</a>
|
|
115
|
+
</li>
|
|
116
|
+
{%- endif -%}
|
|
117
|
+
{%- if social.youtube_channel -%}
|
|
118
|
+
<li>
|
|
119
|
+
<a rel="me" href="https://www.youtube.com/channel/{{ social.youtube_channel | cgi_escape | escape }}" title="{{ social.youtube_channel_name | escape | default: 'YouTube' }}">
|
|
120
|
+
<svg class="svg-icon">
|
|
121
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#youtube' | relative_url }}"></use>
|
|
122
|
+
</svg>
|
|
123
|
+
</a>
|
|
124
|
+
</li>
|
|
125
|
+
{%- endif -%}
|
|
126
|
+
{%- if social.telegram -%}
|
|
127
|
+
<li>
|
|
128
|
+
<a rel="me" href="https://t.me/{{ social.telegram | cgi_escape | escape }}" title="{{ social.telegram | escape }}">
|
|
129
|
+
<svg class="svg-icon">
|
|
130
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#telegram' | relative_url }}"></use>
|
|
131
|
+
</svg>
|
|
132
|
+
</a>
|
|
133
|
+
</li>
|
|
134
|
+
{%- endif -%}
|
|
135
|
+
{%- if social.keybase -%}
|
|
136
|
+
<li>
|
|
137
|
+
<a rel="me" href="https://keybase.io/{{ social.keybase | cgi_escape | escape }}" title="{{ social.keybase | escape }}">
|
|
138
|
+
<svg class="svg-icon">
|
|
139
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#keybase' | relative_url }}"></use>
|
|
140
|
+
</svg>
|
|
141
|
+
</a>
|
|
142
|
+
</li>
|
|
143
|
+
{%- endif -%}
|
|
144
|
+
{%- if social.microdotblog -%}
|
|
145
|
+
<li>
|
|
146
|
+
<a rel="me" href="https://micro.blog/{{ social.microdotblog | cgi_escape | escape }}" title="{{ social.microdotblog | escape }}">
|
|
147
|
+
<svg class="svg-icon">
|
|
148
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#microdotblog' | relative_url }}"></use>
|
|
149
|
+
</svg>
|
|
150
|
+
</a>
|
|
151
|
+
</li>
|
|
152
|
+
{%- endif -%}
|
|
153
|
+
{%- if social.devto -%}
|
|
154
|
+
<li>
|
|
155
|
+
<a href="https://dev.to/{{ social.devto | cgi_escape | escape }}" title="{{ social.devto | escape }}">
|
|
156
|
+
<svg class="svg-icon">
|
|
157
|
+
<use xlink:href="{{ '/assets/popfolio-social-icons.svg#devto' | relative_url }}"></use>
|
|
158
|
+
</svg>
|
|
159
|
+
</a>
|
|
160
|
+
</li>
|
|
161
|
+
{%- endif -%}
|
|
162
|
+
</ul>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="{{ site.lang | default: "en-US" }}">
|
|
3
|
+
<head>
|
|
4
|
+
<!-- General meta -->
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<meta charset="{{ site.encoding }}" />
|
|
7
|
+
|
|
8
|
+
{% if page.indexing == false %}
|
|
9
|
+
<meta name="robots" content="noindex">
|
|
10
|
+
{% endif %}
|
|
11
|
+
|
|
12
|
+
{% if page.collectionpage %}
|
|
13
|
+
{% seo title=false %}
|
|
14
|
+
|
|
15
|
+
{% assign collectiondata = site.collections | where: "label", page.collectionpage | first %}
|
|
16
|
+
<title>{{ collectiondata.title }} - {{ site.title }}</title>
|
|
17
|
+
<meta property="og:title" content="{{ collectiondata.title }}">
|
|
18
|
+
<meta name="description" content="{{ collectiondata.description }}">
|
|
19
|
+
<meta property="og:description" content="{{ collectiondata.description }}">
|
|
20
|
+
{% else %}
|
|
21
|
+
{% seo %}
|
|
22
|
+
{% endif %}
|
|
23
|
+
|
|
24
|
+
{% if site.css_inline == true %}
|
|
25
|
+
{% include site-styles.html %}
|
|
26
|
+
{% else %}
|
|
27
|
+
<link rel="stylesheet" href="{{ "/assets/styles.css" | relative_url }}">
|
|
28
|
+
{% endif %}
|
|
29
|
+
</head>
|
|
30
|
+
|
|
31
|
+
<body>
|
|
32
|
+
{%- include header.html -%}
|
|
33
|
+
|
|
34
|
+
<main class="page-content" aria-label="Content">
|
|
35
|
+
<div class="wrapper">
|
|
36
|
+
{{ content }}
|
|
37
|
+
</div>
|
|
38
|
+
</main>
|
|
39
|
+
|
|
40
|
+
{%- include footer.html -%}
|
|
41
|
+
|
|
42
|
+
</body>
|
|
43
|
+
</html>
|