status-wall-theme 1.2.0 → 1.2.2
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 +4 -4
- data/HOW TO USE/ADDING IMAGES TO POSTS.md +29 -0
- data/HOW TO USE/BATCH DATE ADDITION.md +38 -0
- data/HOW TO USE/CONFIG YAML.md +37 -0
- data/HOW TO USE/CREATING A POST.md +29 -0
- data/HOW TO USE/FEATURED IMAGES LEFT SIDEBAR.md +46 -0
- data/HOW TO USE/FEATURES.md +11 -0
- data/HOW TO USE/HOW TO USE CALLOUTS.md +29 -0
- data/HOW TO USE/HOW TO USE MOODS.md +26 -0
- data/HOW TO USE/PINNED POSTS RIGHT SIDEBAR.md +71 -0
- data/HOW TO USE/SOCIAL MEDIA SHARE IMAGES.md +42 -0
- data/HOW TO USE/THEME CREATION.md +27 -0
- data/README.md +104 -0
- data/_data/featured-images.yaml +4 -0
- data/_data/site.yaml +16 -0
- data/_includes/css-links.html +3 -0
- data/_includes/favicon.html +10 -0
- data/_includes/footer.html +3 -0
- data/_includes/header.html +13 -0
- data/_includes/meta.html +25 -0
- data/_includes/sidebar-left.html +20 -0
- data/_includes/sidebar-right.html +27 -0
- data/_includes/theme-styles.html +67 -0
- data/_includes/theme-switcher.html +37 -0
- data/_layouts/default.html +41 -0
- data/_layouts/pin.html +44 -0
- data/_layouts/post.html +55 -0
- data/_posts/2026-03-20-Markdown-Showcase.md +75 -0
- data/_posts/2026-03-20-mood-check.md +7 -0
- data/_posts/2026-03-23-Batch-Date-Addition.md +38 -0
- data/_posts/2026-03-23-test-draft-2.md +0 -0
- data/_posts/2026-03-23-test-draft.md +0 -0
- data/_posts/featured/2026-03-2-SOCIAL-MEDIA-SHARE-IMAGES.md +49 -0
- data/_posts/featured/2026-03-22-ADDING-IMAGES-TO-POSTS.md +36 -0
- data/_posts/featured/2026-03-22-CONFIG-YAML.md +44 -0
- data/_posts/featured/2026-03-22-CREATING-A-POST.md +36 -0
- data/_posts/featured/2026-03-22-FEATURED-IMAGES-LEFT-SIDEBAR.md +53 -0
- data/_posts/featured/2026-03-22-HOW-TO-USE-CALLOUTS.md +36 -0
- data/_posts/featured/2026-03-22-HOW-TO-USE-MOODS.md +33 -0
- data/_posts/featured/2026-03-22-PINNED-POSTS-RIGHT-SIDEBAR.md +78 -0
- data/_posts/featured/2026-03-22-THEME-CREATION.md +34 -0
- data/_sass/animations/_fade.scss +23 -0
- data/_sass/base/_general.scss +17 -0
- data/_sass/base/_variables.scss +10 -0
- data/_sass/components/_buttons.scss +26 -0
- data/_sass/components/_cards.scss +238 -0
- data/_sass/components/_footer.scss +7 -0
- data/_sass/components/_header.scss +34 -0
- data/_sass/components/_markdown.scss +153 -0
- data/_sass/components/_sidebar.scss +140 -0
- data/_sass/main.scss +17 -0
- data/_sass/pages/_home.scss +6 -0
- data/_templates/moods.md +7 -0
- data/_templates/status-update.md +5 -0
- data/_templates/status-with-image.md +7 -0
- data/assets/avatar.jpg +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/favicon_io/about.txt +6 -0
- data/assets/images/favicon_io/android-chrome-192x192.png +0 -0
- data/assets/images/favicon_io/android-chrome-512x512.png +0 -0
- data/assets/images/favicon_io/apple-touch-icon.png +0 -0
- data/assets/images/favicon_io/favicon-16x16.png +0 -0
- data/assets/images/favicon_io/favicon-32x32.png +0 -0
- data/assets/images/favicon_io/site.webmanifest +1 -0
- data/assets/images/featured/image.jpg +0 -0
- data/assets/images/share-default.jpg +0 -0
- data/assets/images/sunset.jpg +0 -0
- data/assets/main.scss +3 -0
- data/assets/themes/README-TEMPLATE.md +460 -0
- data/assets/themes/TEMPLATE.css +377 -0
- data/assets/themes/bold.css +32 -0
- data/assets/themes/cozy.css +87 -0
- data/assets/themes/dark.css +144 -0
- data/assets/themes/default.css +29 -0
- data/assets/themes/gamer.css +416 -0
- data/assets/themes/minimal.css +89 -0
- data/assets/themes/ocean.css +30 -0
- data/assets/themes/slate.css +88 -0
- data/lib/status-wall-theme.rb +5 -0
- metadata +80 -2
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<style>
|
|
2
|
+
|
|
3
|
+
/* ============ Card Backgrounds ============ */
|
|
4
|
+
.profile-header,
|
|
5
|
+
.status-card,
|
|
6
|
+
.featured-image-card,
|
|
7
|
+
.pinned-post-card {
|
|
8
|
+
background: var(--card-bg) !important;
|
|
9
|
+
color: var(--text-color) !important;
|
|
10
|
+
border-radius: 8px !important;
|
|
11
|
+
box-shadow: var(--shadow) !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.featured-image-card { margin-bottom: 20px !important; }
|
|
15
|
+
.featured-image-card img { width: 100% !important; height: auto !important; display: block !important; }
|
|
16
|
+
.featured-image-card .featured-caption {
|
|
17
|
+
background: var(--card-bg) !important;
|
|
18
|
+
color: var(--meta-color) !important;
|
|
19
|
+
padding: 12px !important;
|
|
20
|
+
text-align: center !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.pinned-post-card { padding: 15px !important; margin-bottom: 20px !important; }
|
|
24
|
+
.pinned-post-card .pinned-label {
|
|
25
|
+
color: var(--accent-color) !important;
|
|
26
|
+
font-size: 0.7rem !important;
|
|
27
|
+
text-transform: uppercase !important;
|
|
28
|
+
letter-spacing: 1px !important;
|
|
29
|
+
font-weight: 600 !important;
|
|
30
|
+
margin-bottom: 8px !important;
|
|
31
|
+
}
|
|
32
|
+
.pinned-post-card .pinned-title { font-size: 1rem !important; margin: 0 0 8px 0 !important; line-height: 1.4 !important; }
|
|
33
|
+
.pinned-post-card .pinned-title a { color: var(--text-color) !important; text-decoration: none !important; }
|
|
34
|
+
.pinned-post-card .pinned-title a:hover { color: var(--accent-color) !important; }
|
|
35
|
+
.pinned-post-card .pinned-excerpt { color: var(--meta-color) !important; font-size: 0.85rem !important; line-height: 1.5 !important; }
|
|
36
|
+
|
|
37
|
+
/* ============ Borders & Dividers ============ */
|
|
38
|
+
.status-meta { border-bottom-color: var(--border-color) !important; }
|
|
39
|
+
.status-actions { border-top-color: var(--border-color) !important; }
|
|
40
|
+
.share-btn { border-color: var(--border-color) !important; color: var(--meta-color) !important; }
|
|
41
|
+
.share-btn:hover { background-color: var(--bg-color) !important; color: var(--accent-color) !important; }
|
|
42
|
+
|
|
43
|
+
/* ============ Footer ============ */
|
|
44
|
+
footer { color: var(--meta-color) !important; text-align: center !important; font-size: 0.8rem !important; margin-top: 40px !important; }
|
|
45
|
+
|
|
46
|
+
/* ============ Pretty Tables ============ */
|
|
47
|
+
.status-content table { width: 100% !important; border-collapse: collapse !important; margin: 20px 0 !important; background: var(--card-bg) !important; border-radius: 8px !important; overflow: hidden !important; box-shadow: var(--shadow) !important; }
|
|
48
|
+
.status-content table th { background: var(--accent-color) !important; color: #fff !important; font-weight: 600 !important; padding: 12px 15px !important; text-align: left !important; }
|
|
49
|
+
.status-content table td { padding: 12px 15px !important; border-bottom: 1px solid var(--border-color) !important; color: var(--text-color) !important; }
|
|
50
|
+
.status-content table tr:last-child td { border-bottom: none !important; }
|
|
51
|
+
.status-content table tr:hover { background: var(--bg-color) !important; }
|
|
52
|
+
|
|
53
|
+
/* ============ Pretty Code Blocks ============ */
|
|
54
|
+
.status-content pre { background: #1e1e1e !important; border-radius: 8px !important; padding: 15px !important; overflow-x: auto !important; margin: 20px 0 !important; box-shadow: var(--shadow) !important; }
|
|
55
|
+
.status-content code { font-family: 'Consolas', 'Monaco', monospace !important; font-size: 0.9rem !important; line-height: 1.5 !important; }
|
|
56
|
+
.status-content p code, .status-content li code { background: var(--bg-color) !important; color: var(--accent-color) !important; padding: 2px 6px !important; border-radius: 4px !important; font-size: 0.9em !important; }
|
|
57
|
+
|
|
58
|
+
/* ============ Blockquotes ============ */
|
|
59
|
+
.status-content blockquote { border-left: 4px solid var(--accent-color) !important; background: var(--bg-color) !important; padding: 15px 20px !important; margin: 20px 0 !important; border-radius: 0 8px 8px 0 !important; color: var(--meta-color) !important; font-style: italic !important; }
|
|
60
|
+
.status-content blockquote p { margin: 0 !important; }
|
|
61
|
+
|
|
62
|
+
/* ============ Horizontal Rule ============ */
|
|
63
|
+
.status-content hr { border: none !important; height: 2px !important; background: linear-gradient(to right, transparent, var(--accent-color), transparent) !important; margin: 30px 0 !important; }
|
|
64
|
+
|
|
65
|
+
/* ============ Images ============ */
|
|
66
|
+
.status-content img { max-width: 100% !important; height: auto !important; border-radius: 8px !important; display: block !important; margin: 15px 0 !important; }
|
|
67
|
+
</style>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{% if site.theme_settings.theme_switcher != false %}
|
|
2
|
+
|
|
3
|
+
<div class="theme-switcher-box">
|
|
4
|
+
<label for="theme-select"><i class="fas fa-palette"></i> Theme</label>
|
|
5
|
+
<select id="theme-select" onchange="switchTheme(this.value)">
|
|
6
|
+
<option value="dark" {% if site.theme_settings.default_theme == 'dark' %}selected{% endif %}>Dark</option>
|
|
7
|
+
<option value="gamer" {% if site.theme_settings.default_theme == 'gamer' %}selected{% endif %}>Gamer</option>
|
|
8
|
+
<option value="minimal" {% if site.theme_settings.default_theme == 'minimal' %}selected{% endif %}>Minimal</option>
|
|
9
|
+
<option value="cozy" {% if site.theme_settings.default_theme == 'cozy' %}selected{% endif %}>Cozy</option>
|
|
10
|
+
<option value="slate" {% if site.theme_settings.default_theme == 'slate' %}selected{% endif %}>Slate</option>
|
|
11
|
+
<option value="ocean" {% if site.theme_settings.default_theme == 'ocean' %}selected{% endif %}>Ocean</option>
|
|
12
|
+
<option value="default" {% if site.theme_settings.default_theme == 'default' or site.theme_settings.default_theme == 'light' %}selected{% endif %}>Light</option>
|
|
13
|
+
</select>
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
<script>
|
|
17
|
+
// 1. Load saved theme on page load (DON'T call switchTheme - keeps layout stable)
|
|
18
|
+
document.addEventListener('DOMContentLoaded', () => {
|
|
19
|
+
const savedTheme = localStorage.getItem('preferred-theme') || '{{ site.theme_settings.default_theme | default: "dark" }}';
|
|
20
|
+
const select = document.getElementById('theme-select');
|
|
21
|
+
if (select) select.value = savedTheme;
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
// 2. Function to switch theme
|
|
25
|
+
function switchTheme(themeName) {
|
|
26
|
+
// Save preference
|
|
27
|
+
localStorage.setItem('preferred-theme', themeName);
|
|
28
|
+
|
|
29
|
+
// Update CSS link
|
|
30
|
+
const themeLink = document.getElementById('theme-css');
|
|
31
|
+
if (themeLink) {
|
|
32
|
+
themeLink.href = '{{ "/assets/themes/" | relative_url }}' + themeName + '.css';
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
</script>
|
|
36
|
+
|
|
37
|
+
{% endif %}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
|
|
7
|
+
|
|
8
|
+
{% include favicon.html %}
|
|
9
|
+
{% include css-links.html %}
|
|
10
|
+
{% include meta.html %}
|
|
11
|
+
{% include theme-styles.html %}
|
|
12
|
+
|
|
13
|
+
<script>
|
|
14
|
+
const savedTheme = localStorage.getItem('preferred-theme') || 'dark';
|
|
15
|
+
document.write('<link rel="stylesheet" href="{{ "/assets/themes/" | relative_url }}' + savedTheme + '.css" id="theme-css-preload">');
|
|
16
|
+
</script>
|
|
17
|
+
</head>
|
|
18
|
+
<body class="{% if site.theme_settings.featured_images == false %}no-left-sidebar{% endif %}{% if site.theme_settings.pinned_posts == false %} no-right-sidebar{% endif %}{% if site.theme_settings.featured_images == false and site.theme_settings.pinned_posts == false %} no-sidebars{% endif %}">
|
|
19
|
+
|
|
20
|
+
<!-- ========== DESKTOP LAYOUT (1200px+) ========== -->
|
|
21
|
+
<div class="sidebar-wrapper">
|
|
22
|
+
{% include sidebar-left.html %}
|
|
23
|
+
|
|
24
|
+
<div class="main-content">
|
|
25
|
+
{% include header.html %}
|
|
26
|
+
<main class="feed">{{ content }}</main>
|
|
27
|
+
{% include footer.html %}
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
{% include sidebar-right.html %}
|
|
31
|
+
</div>
|
|
32
|
+
|
|
33
|
+
<!-- ========== MOBILE/TABLET LAYOUT (Below 1200px) ========== -->
|
|
34
|
+
<div class="container">
|
|
35
|
+
{% include header.html %}
|
|
36
|
+
<main class="feed">{{ content }}</main>
|
|
37
|
+
{% include footer.html %}
|
|
38
|
+
</div>
|
|
39
|
+
|
|
40
|
+
</body>
|
|
41
|
+
</html>
|
data/_layouts/pin.html
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
<article class="status-card single-post">
|
|
6
|
+
<div class="pinned-label">📌 Pinned Post</div>
|
|
7
|
+
|
|
8
|
+
<div class="status-meta">
|
|
9
|
+
<time datetime="{{ page.date | date_to_xmlschema }}">
|
|
10
|
+
{{ page.date | date: "%B %d, %Y • %I:%M %p" }}
|
|
11
|
+
</time>
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div class="status-content">
|
|
15
|
+
{% if page.title %}
|
|
16
|
+
<h2 class="status-title">{{ page.title }}</h2>
|
|
17
|
+
{% endif %}
|
|
18
|
+
{{ content }}
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
<div class="status-actions">
|
|
22
|
+
<!-- Facebook Share -->
|
|
23
|
+
<a href="https://www.facebook.com/sharer/sharer.php?u={{ site.url }}{{ page.url }}" target="_blank" class="share-btn">
|
|
24
|
+
<i class="fab fa-facebook-f"></i> Share
|
|
25
|
+
</a>
|
|
26
|
+
|
|
27
|
+
<!-- Pinterest Share -->
|
|
28
|
+
<a href="https://pinterest.com/pin/create/button/?url={{ site.url }}{{ page.url }}&description={{ page.title | default: site.title }}" target="_blank" class="share-btn">
|
|
29
|
+
<i class="fab fa-pinterest"></i> Pin
|
|
30
|
+
</a>
|
|
31
|
+
|
|
32
|
+
<!-- Copy Link -->
|
|
33
|
+
<button onclick="navigator.clipboard.writeText('{{ site.url }}{{ page.url }}'); alert('Link copied!')" class="share-btn">
|
|
34
|
+
<i class="fas fa-copy"></i> Copy
|
|
35
|
+
</button>
|
|
36
|
+
</div>
|
|
37
|
+
|
|
38
|
+
<!-- Back to Feed Link -->
|
|
39
|
+
<div class="back-to-feed">
|
|
40
|
+
<a href="{{ '/' | relative_url }}" class="share-btn">
|
|
41
|
+
<i class="fas fa-arrow-left"></i> Back to Feed
|
|
42
|
+
</a>
|
|
43
|
+
</div>
|
|
44
|
+
</article>
|
data/_layouts/post.html
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
{% if site.theme_settings.mood_indicators != false %}
|
|
6
|
+
|
|
7
|
+
<article class="status-card single-post">
|
|
8
|
+
<div class="status-meta">
|
|
9
|
+
{% if page.mood %}
|
|
10
|
+
{% assign mood_color = site.moods[page.mood] | default: site.moods.default %}
|
|
11
|
+
<span class="mood-indicator" style="background-color: {{ mood_color }}; display:inline-block; width:10px; height:10px; border-radius:50%; margin-right:6px; vertical-align:middle;"></span>
|
|
12
|
+
<time datetime="{{ page.date | date_to_xmlschema }}">
|
|
13
|
+
{{ page.date | date: "%B %d, %Y • %I:%M %p" }}
|
|
14
|
+
</time>
|
|
15
|
+
<span style="margin-left:8px; font-style:italic; color:#65676b; font-size:0.85rem;">— feeling {{ page.mood }}</span>
|
|
16
|
+
{% else %}
|
|
17
|
+
<time datetime="{{ page.date | date_to_xmlschema }}">
|
|
18
|
+
{{ page.date | date: "%B %d, %Y • %I:%M %p" }}
|
|
19
|
+
</time>
|
|
20
|
+
{% endif %}
|
|
21
|
+
</div>
|
|
22
|
+
|
|
23
|
+
<div class="status-content">
|
|
24
|
+
{% if page.title %}
|
|
25
|
+
<h2 class="status-title">{{ page.title }}</h2>
|
|
26
|
+
{% endif %}
|
|
27
|
+
{{ content }}
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
<div class="status-actions">
|
|
31
|
+
<!-- Facebook Share -->
|
|
32
|
+
<a href="https://www.facebook.com/sharer/sharer.php?u={{ site.url }}{{ page.url }}" target="_blank" class="share-btn">
|
|
33
|
+
<i class="fab fa-facebook-f"></i> Share
|
|
34
|
+
</a>
|
|
35
|
+
|
|
36
|
+
<!-- Pinterest Share -->
|
|
37
|
+
<a href="https://pinterest.com/pin/create/button/?url={{ site.url }}{{ page.url }}&description={{ page.title | default: site.title }}" target="_blank" class="share-btn">
|
|
38
|
+
<i class="fab fa-pinterest"></i> Pin
|
|
39
|
+
</a>
|
|
40
|
+
|
|
41
|
+
<!-- Copy Link -->
|
|
42
|
+
<button onclick="navigator.clipboard.writeText('{{ site.url }}{{ page.url }}'); alert('Link copied!')" class="share-btn">
|
|
43
|
+
<i class="fas fa-copy"></i> Copy
|
|
44
|
+
</button>
|
|
45
|
+
</div>
|
|
46
|
+
|
|
47
|
+
<!-- Back to Feed Link -->
|
|
48
|
+
<div style="margin-top: 20px; text-align: center;">
|
|
49
|
+
<a href="{{ '/' | relative_url }}" class="share-btn" style="display: inline-flex;">
|
|
50
|
+
<i class="fas fa-arrow-left"></i> Back to Feed
|
|
51
|
+
</a>
|
|
52
|
+
</div>
|
|
53
|
+
</article>
|
|
54
|
+
|
|
55
|
+
{% endif %}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: post
|
|
3
|
+
title: "Markdown Showcase"
|
|
4
|
+
date: 2026-03-20 14:45:16 -0500
|
|
5
|
+
mood:
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Theme Showcase
|
|
9
|
+
|
|
10
|
+
A paragraph with **bold text**, *italic emphasis*, ~~strikethrough~~, `inline code`, and [a link](https://example.com). This demonstrates body text rendering, line height, and font pairing.
|
|
11
|
+
|
|
12
|
+
## Lists & Structure
|
|
13
|
+
|
|
14
|
+
- Unordered list item
|
|
15
|
+
- Nested item with more text to show indentation
|
|
16
|
+
- Another nested item
|
|
17
|
+
- Second top-level item
|
|
18
|
+
|
|
19
|
+
1. Ordered list first item
|
|
20
|
+
2. Second item with **bold** and *italic* mixed in
|
|
21
|
+
3. Third item showing how numbers align
|
|
22
|
+
|
|
23
|
+
## Block Elements
|
|
24
|
+
|
|
25
|
+
> A blockquote to demonstrate styling for quoted content. This shows how the theme handles left borders, background tints, and text contrast.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
### Code & Syntax Highlighting
|
|
30
|
+
|
|
31
|
+
```js
|
|
32
|
+
// JavaScript example
|
|
33
|
+
function greet(name) {
|
|
34
|
+
return `Hello, ${name}!`;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
const users = ["Alice", "Bob", "Charlie"];
|
|
38
|
+
users.forEach(user => {
|
|
39
|
+
console.log(greet(user));
|
|
40
|
+
});
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
| Syntax | Description | Example |
|
|
45
|
+
|-------------|---------------------------------|---------------|
|
|
46
|
+
| Header | Column title | `# Header` |
|
|
47
|
+
| Paragraph | Body text | Plain text |
|
|
48
|
+
| `inline` | Code within text | `` `code` `` |
|
|
49
|
+
|
|
50
|
+
## Callouts (Admonitions)
|
|
51
|
+
|
|
52
|
+
{:.callout-note}
|
|
53
|
+
> Note callout
|
|
54
|
+
> Important information worth highlighting. Shows how the theme styles containers with icons and background colors.
|
|
55
|
+
|
|
56
|
+
{:.callout-tip}
|
|
57
|
+
> Tip callout
|
|
58
|
+
> Helpful advice or shortcut. Demonstrates accent colors and visual hierarchy.
|
|
59
|
+
|
|
60
|
+
{:.callout-warning}
|
|
61
|
+
> Warning callout
|
|
62
|
+
> Something requiring caution. Tests contrast and attention-grabbing styling.
|
|
63
|
+
|
|
64
|
+
## Tasks & Interactive Elements
|
|
65
|
+
|
|
66
|
+
- [x] Completed task item
|
|
67
|
+
- [ ] Incomplete task
|
|
68
|
+
- [ ] Another pending item with **bold emphasis**
|
|
69
|
+
|
|
70
|
+
## Typography Details
|
|
71
|
+
|
|
72
|
+
### Heading levels (h3–h6)
|
|
73
|
+
#### Level 4 heading
|
|
74
|
+
##### Level 5 heading
|
|
75
|
+
###### Level 6 heading
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: post
|
|
3
|
+
title: "Batch Date Addition"
|
|
4
|
+
date: 2026-03-23 15:01:11 -0500
|
|
5
|
+
pin: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Drafts and Bulk Publishing
|
|
9
|
+
|
|
10
|
+
## Using the `_drafts` Folder
|
|
11
|
+
|
|
12
|
+
Add a `_drafts` folder to your site root to store posts you are not ready to publish. Posts in this folder do not require a date in the filename and will not appear on your live site.
|
|
13
|
+
|
|
14
|
+
## Filename Requirements
|
|
15
|
+
|
|
16
|
+
All posts in the `_posts` folder must follow this format:
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
YYYY-MM-DD-post-title.md
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Files without a date prefix will be ignored by Jekyll and will not publish.
|
|
23
|
+
|
|
24
|
+
## Publishing Drafts
|
|
25
|
+
|
|
26
|
+
When you are ready to publish drafts:
|
|
27
|
+
|
|
28
|
+
1. Save all unfinished posts in `_drafts/` (no date needed)
|
|
29
|
+
2. Run `add-dates.bat`
|
|
30
|
+
3. The script will add today's date to each filename and move them to `_posts/`
|
|
31
|
+
4. Build and upload your site
|
|
32
|
+
|
|
33
|
+
## Quick Reference
|
|
34
|
+
|
|
35
|
+
| Folder | Filename Format | Publishes? |
|
|
36
|
+
|--------|-----------------|------------|
|
|
37
|
+
| `_drafts/` | `post-title.md` | No |
|
|
38
|
+
| `_posts/` | `YYYY-MM-DD-post-title.md` | Yes |
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: pin
|
|
3
|
+
title: "Social Media Share Images"
|
|
4
|
+
date: 2024-01-01 12:00:00 -0500
|
|
5
|
+
pin: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# 📱 Social Media Share Images
|
|
9
|
+
|
|
10
|
+
When you share a post on Facebook, Pinterest, Twitter, or LinkedIn, those platforms will now display a **preview image** instead of your avatar.
|
|
11
|
+
|
|
12
|
+
## How It Works
|
|
13
|
+
|
|
14
|
+
The theme uses **Open Graph meta tags** to tell social media platforms which image to display when a link is shared.
|
|
15
|
+
|
|
16
|
+
## Setup Steps
|
|
17
|
+
|
|
18
|
+
### 1. Create a Default Share Image
|
|
19
|
+
|
|
20
|
+
Create a default image that will be used for all posts:
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
assets/
|
|
24
|
+
└── images/
|
|
25
|
+
└── share-default.jpg ← Create this file
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
**Recommended Size:** 1200 x 630 pixels
|
|
29
|
+
|
|
30
|
+
**Tips:**
|
|
31
|
+
- Use a branded image with your site name or logo
|
|
32
|
+
- Keep text minimal and readable at small sizes
|
|
33
|
+
- Use high contrast for better visibility
|
|
34
|
+
|
|
35
|
+
### 2. Optional: Custom Image Per Post
|
|
36
|
+
|
|
37
|
+
You can specify a different share image for individual posts by adding an `image` field in the front matter:
|
|
38
|
+
|
|
39
|
+
```markdown
|
|
40
|
+
---
|
|
41
|
+
layout: post
|
|
42
|
+
title: "My Status Update"
|
|
43
|
+
date: 2024-01-15 14:30:00 -0500
|
|
44
|
+
image: /assets/images/custom-share.jpg
|
|
45
|
+
---
|
|
46
|
+
Your post content here...
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
---
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: pin
|
|
3
|
+
title: "Adding Images to Posts"
|
|
4
|
+
date: 2024-01-01 12:00:00 -0500
|
|
5
|
+
pin: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Adding Images to Posts
|
|
9
|
+
|
|
10
|
+
### 1. Add Your Image
|
|
11
|
+
|
|
12
|
+
Place images in the `assets/images/` folder:
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
assets/
|
|
16
|
+
└── images/
|
|
17
|
+
├── photo1.jpg
|
|
18
|
+
└── screenshot.png
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### 2. Reference in Your Post
|
|
22
|
+
|
|
23
|
+
Use standard Markdown image syntax:
|
|
24
|
+
|
|
25
|
+
```markdown
|
|
26
|
+
---
|
|
27
|
+
layout: post
|
|
28
|
+
title: "Check this out!"
|
|
29
|
+
date: 2024-01-15 14:30:00 -0500
|
|
30
|
+
---
|
|
31
|
+
Just finished this project!
|
|
32
|
+
|
|
33
|
+

|
|
34
|
+
|
|
35
|
+
#proud #completed
|
|
36
|
+
```
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: pin
|
|
3
|
+
title: "Customize _config File"
|
|
4
|
+
date: 2024-01-01 12:00:00 -0500
|
|
5
|
+
pin: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Customization of _config.yml File
|
|
9
|
+
|
|
10
|
+
## Profile Information
|
|
11
|
+
|
|
12
|
+
Edit `_config.yml` to update your profile:
|
|
13
|
+
|
|
14
|
+
```yaml
|
|
15
|
+
title: "My Status Wall"
|
|
16
|
+
description: "Quick updates and snippets."
|
|
17
|
+
url: "https://yourdomain.com"
|
|
18
|
+
|
|
19
|
+
author:
|
|
20
|
+
name: "Your Name"
|
|
21
|
+
bio: "Posting snippets and status updates."
|
|
22
|
+
avatar: "/assets/avatar.jpg"
|
|
23
|
+
|
|
24
|
+
theme_settings:
|
|
25
|
+
theme_switcher: true #turns off auto when pinned posts is off
|
|
26
|
+
pinned_posts: true
|
|
27
|
+
featured_images: true
|
|
28
|
+
mood_indicators: true
|
|
29
|
+
|
|
30
|
+
# Additional settings
|
|
31
|
+
default_theme: dark
|
|
32
|
+
pinned_posts_limit: 5
|
|
33
|
+
featured_images_limit: 2
|
|
34
|
+
|
|
35
|
+
moods:
|
|
36
|
+
calm: "#87ceeb" # Light blue
|
|
37
|
+
happy: "#ffd700" # Gold
|
|
38
|
+
excited: "#ff6b6b" # Red
|
|
39
|
+
thoughtful: "#9b59b6" # Purple
|
|
40
|
+
tired: "#95a5a6" # Gray
|
|
41
|
+
creative: "#2ecc71" # Green
|
|
42
|
+
focused: "#3498db" # Blue
|
|
43
|
+
default: "#bdc3c7" # Light gray fallback
|
|
44
|
+
```
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: pin
|
|
3
|
+
title: "Creating A New Status Post"
|
|
4
|
+
date: 2024-01-01 12:00:00 -0500
|
|
5
|
+
pin: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# 📄 Creating a New Status Post
|
|
9
|
+
|
|
10
|
+
## Option 1: Using the Batch File (Windows) Recommended
|
|
11
|
+
|
|
12
|
+
**Double-click `new-post.bat`** in the root folder.
|
|
13
|
+
|
|
14
|
+
1. Enter your post title (or press Enter for no title)
|
|
15
|
+
2. The file is automatically created in `_posts/` with the current date & time
|
|
16
|
+
3. Notepad opens automatically - write your status!
|
|
17
|
+
4. Add images using Markdown: ``
|
|
18
|
+
5. Save and close - your post is ready!
|
|
19
|
+
|
|
20
|
+
## Option 2: Manual Creation
|
|
21
|
+
|
|
22
|
+
1. Create a new file in the `_posts/` folder
|
|
23
|
+
2. Name it: `YYYY-MM-DD-your-title.md`
|
|
24
|
+
3. Add front matter:
|
|
25
|
+
|
|
26
|
+
```markdown
|
|
27
|
+
---
|
|
28
|
+
layout: post
|
|
29
|
+
title: "Your Status Title"
|
|
30
|
+
date: 2024-01-15 14:30:00 -0500
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
Write your status update here...
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
> **Note:** Adjust the timezone offset (`-0500`) to match your location.
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: pin
|
|
3
|
+
title: "Left Sidebar Featured Images"
|
|
4
|
+
date: 2024-01-01 12:00:00 -0500
|
|
5
|
+
pin: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Featured Images (Left Sidebar)
|
|
9
|
+
|
|
10
|
+
Display clickable promotional images, book covers, or favorite photos in the left sidebar on desktop screens.
|
|
11
|
+
|
|
12
|
+
## How to Add Featured Images
|
|
13
|
+
|
|
14
|
+
1. **Add Your Image**
|
|
15
|
+
|
|
16
|
+
Place your image in the `assets/images/featured/` folder:
|
|
17
|
+
```
|
|
18
|
+
assets/
|
|
19
|
+
└── images/
|
|
20
|
+
└── featured/
|
|
21
|
+
├── book-cover.jpg
|
|
22
|
+
├── promo-banner.png
|
|
23
|
+
└── portfolio-photo.jpg
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
2. **Edit the Configuration File**
|
|
27
|
+
|
|
28
|
+
Open `_data/featured-images.yml` and add an entry:
|
|
29
|
+
```yaml
|
|
30
|
+
- image: /assets/images/featured/book-cover.jpg
|
|
31
|
+
link: https://amazon.com/yourbook
|
|
32
|
+
alt: "My New Book - Available Now!"
|
|
33
|
+
|
|
34
|
+
- image: /assets/images/featured/promo-banner.png
|
|
35
|
+
link: https://yourwebsite.com/promo
|
|
36
|
+
alt: "Special Promotion"
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
3. **Rebuild & Upload**
|
|
40
|
+
```bash
|
|
41
|
+
bundle exec jekyll build
|
|
42
|
+
```
|
|
43
|
+
Upload the updated `_site/` contents to your host.
|
|
44
|
+
|
|
45
|
+
## Configuration Options
|
|
46
|
+
|
|
47
|
+
| Field | Description | Example |
|
|
48
|
+
|-------|-------------|---------|
|
|
49
|
+
| `image` | Path to your image file | `/assets/images/featured/photo.jpg` |
|
|
50
|
+
| `link` | URL when image is clicked | `https://yourwebsite.com` |
|
|
51
|
+
| `alt` | Caption text displayed below image | "Check out my latest work!" |
|
|
52
|
+
|
|
53
|
+
---
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: pin
|
|
3
|
+
title: "How to Use Callouts"
|
|
4
|
+
date: 2024-01-01 12:00:00 -0500
|
|
5
|
+
pin: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Using Callouts in Posts
|
|
9
|
+
|
|
10
|
+
```
|
|
11
|
+
---
|
|
12
|
+
layout: post
|
|
13
|
+
title: "Markdown Callouts"
|
|
14
|
+
date: 2026-03-21 01:14:47 -0500
|
|
15
|
+
mood:
|
|
16
|
+
pin: true
|
|
17
|
+
---
|
|
18
|
+
|
|
19
|
+
{:.callout-note}
|
|
20
|
+
> **Note**
|
|
21
|
+
> This is a note callout.
|
|
22
|
+
|
|
23
|
+
{:.callout-tip}
|
|
24
|
+
> **Tip**
|
|
25
|
+
> This is a tip callout.
|
|
26
|
+
|
|
27
|
+
{:.callout-warning}
|
|
28
|
+
> **Warning**
|
|
29
|
+
> This is a warning callout.
|
|
30
|
+
|
|
31
|
+
{:.callout-danger}
|
|
32
|
+
> **Danger**
|
|
33
|
+
> This is a danger callout.
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
---
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: pin
|
|
3
|
+
title: "How to Use Moods"
|
|
4
|
+
date: 2024-01-01 12:00:00 -0500
|
|
5
|
+
pin: true
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# How to Use Moods
|
|
9
|
+
|
|
10
|
+
Add a `mood` field to your post front matter:
|
|
11
|
+
|
|
12
|
+
```markdown
|
|
13
|
+
---
|
|
14
|
+
layout: post
|
|
15
|
+
title: "Morning Coffee"
|
|
16
|
+
date: 2024-01-15 08:30:00 -0500
|
|
17
|
+
mood: calm
|
|
18
|
+
---
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Available Moods
|
|
22
|
+
|
|
23
|
+
| Mood | Color | Description |
|
|
24
|
+
|------|-------|-------------|
|
|
25
|
+
| `calm` | 🩵 Light Blue | Peaceful, relaxed |
|
|
26
|
+
| `happy` | 🟡 Gold | Joyful, positive |
|
|
27
|
+
| `excited` | 🔴 Red | Energetic, thrilling |
|
|
28
|
+
| `thoughtful` | 🟣 Purple | Reflective, deep |
|
|
29
|
+
| `tired` | ⚪ Gray | Exhausted, low energy |
|
|
30
|
+
| `creative` | 🟢 Green | Artistic, building |
|
|
31
|
+
| `focused` | 🔵 Blue | Working, concentrating |
|
|
32
|
+
|
|
33
|
+
---
|