Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
title: Stoltz Stack
description: Web development resources and tools
baseurl: ""
url: "https://rosasck.github.io"
url: "https://stoltzstack.com"

# Build settings
markdown: kramdown
permalink: /blog/:title/

# Plugins
plugins:
- jekyll-feed

# Collections
collections:
tools:
Expand All @@ -26,4 +30,8 @@ defaults:
path: "_posts"
type: "posts"
values:
layout: "post"
layout: "post"

# Feed settings
feed:
path: feed.xml
9 changes: 6 additions & 3 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ <h4>Connect With Us</h4>
<ul>
<li>
<a href="https://instagram.com/stoltzstack" target="_blank" rel="noopener noreferrer" class="social-link">
<svg class="icon" viewBox="0 0 24 24" width="24" height="24">
<path fill="currentColor" d="M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z"/>
</svg>
<i class="fab fa-instagram"></i>
</a>
</li>
<li>
<a href="/feed.xml" target="_blank" rel="noopener noreferrer" class="social-link" title="RSS Feed">
<i class="fas fa-rss"></i>
</a>
</li>
</ul>
Expand Down
3 changes: 3 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
<meta name="twitter:image" content="{{ site.url }}{{ page.image }}" />
{% endif %}

<!-- RSS Feed -->
<link rel="alternate" type="application/atom+xml" title="{{ site.title }} Feed" href="{{ site.url }}/feed.xml">

<link rel="icon" type="image/png" href="/branding/icon/icon-square-logo.png" sizes="32x32">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
Expand Down
35 changes: 24 additions & 11 deletions styles/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -380,34 +380,43 @@ main {
.footer-column ul {
list-style: none;
padding: 0;
display: flex;
gap: var(--spacing-md);
justify-content: flex-end;
}

.footer-column li {
margin-bottom: var(--spacing-sm);
margin-bottom: 0;
}

.social-link {
display: flex;
align-items: center;
gap: var(--spacing-sm);
color: var(--text-secondary);
text-decoration: none;
font-size: 1.5rem;
padding: var(--spacing-xs);
transition: color var(--transition-fast);
justify-content: flex-end;
display: inline-flex;
align-items: center;
justify-content: center;
}

.social-link:hover {
color: var(--primary);
}

.social-link .icon {
.social-link i {
width: 24px;
height: 24px;
color: inherit;
display: flex;
align-items: center;
justify-content: center;
}

.social-link svg {
color: inherit;
.social-link .fa-rss {
color: #ee802f;
}

.social-link:hover .fa-rss {
color: #ff8f3f;
}

.footer-bottom {
Expand Down Expand Up @@ -440,9 +449,13 @@ main {
text-align: left;
}

.social-link {
.footer-column ul {
justify-content: flex-start;
}

.social-link {
justify-content: center;
}
}

/* Utility Classes */
Expand Down
Loading