-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3dd898e
commit 2aa6876
Showing
14 changed files
with
11,388 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ _site | |
.jekyll-cache | ||
.jekyll-metadata | ||
vendor | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# TacticalNerdery.com | ||
|
||
This site uses the minima template (https://github.com/jekyll/minima), and has a few customizations in the _includes and _layouts folder which override the defaults in the gem. | ||
Migrated to the https://github.com/startbootstrap/startbootstrap-blog-post template. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<footer class="site-footer h-card"> | ||
<footer class="mt-auto py-5 bg-dark footer-top"> | ||
<div> | ||
<p class="footer-text">Made w sticks, bubble-gum, and a little bit of <i class="fa-solid fa-heart"></i> by <a href="https://twitter.com/Rayterrill">a dude</a> in Portland.</p> | ||
<p class="m-0 text-center text-white">Made w sticks, bubble-gum, and a little bit of <i class="fa-solid fa-heart"></i> by <a href="https://twitter.com/Rayterrill">a dude</a> in Portland.</p> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,21 @@ | ||
<header class="site-header"> | ||
|
||
<div class="wrapper"> | ||
{%- assign default_paths = site.pages | map: "path" -%} | ||
{%- assign page_paths = site.header_pages | default: default_paths -%} | ||
{%- assign titles_size = site.pages | map: 'title' | join: '' | size -%} | ||
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a> | ||
|
||
{%- if titles_size > 0 -%} | ||
<nav class="site-nav"> | ||
<input type="checkbox" id="nav-trigger" class="nav-trigger" /> | ||
<label for="nav-trigger"> | ||
<span class="menu-icon"> | ||
<svg viewBox="0 0 18 15" width="18px" height="15px"> | ||
<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"/> | ||
</svg> | ||
</span> | ||
</label> | ||
|
||
<div class="trigger"> | ||
{%- for path in page_paths -%} | ||
{%- assign my_page = site.pages | where: "path", path | first -%} | ||
{%- if my_page.title -%} | ||
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
<a href="{{ 'feed.xml' | relative_url }}"> | ||
<svg class="svg-icon orange"> | ||
<use xlink:href="{{ 'assets/minima-social-icons.svg#rss' | relative_url }}"></use> | ||
</svg><span>Subscribe</span> | ||
</a> | ||
</div> | ||
</nav> | ||
{%- endif -%} | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark header-bottom"> | ||
{%- assign default_paths = site.pages | map: "path" -%} | ||
{%- assign page_paths = site.header_pages | default: default_paths -%} | ||
{%- assign titles_size = site.pages | map: 'title' | join: '' | size -%} | ||
<div class="container"> | ||
<a class="navbar-brand" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button> | ||
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | ||
<ul class="navbar-nav ms-auto mb-2 mb-lg-0"> | ||
{%- for path in page_paths -%} | ||
{%- assign my_page = site.pages | where: "path", path | first -%} | ||
{%- if my_page.title -%} | ||
<li class="nav-item"> | ||
<a class="nav-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a> | ||
</li> | ||
{%- endif -%} | ||
{%- endfor -%} | ||
</ul> | ||
</div> | ||
</div> | ||
</header> | ||
</nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="{{ page.lang | default: site.lang | default: "en" }}"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> | ||
<meta name="description" content="" /> | ||
<meta name="author" content="" /> | ||
<title>tacticalnerdery.com</title> | ||
<!-- Favicon--> | ||
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico" /> | ||
<!-- Core theme CSS (includes Bootstrap)--> | ||
<link href="/assets/css/styles.css" rel="stylesheet" /> | ||
<link href="/assets/css/extra.css" rel="stylesheet" /> | ||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"> | ||
</head> | ||
<body class="d-flex flex-column min-vh-100 bg-dark"> | ||
|
||
{%- include head.html -%} | ||
{%- include header.html -%} | ||
|
||
<body> | ||
<!-- Page content--> | ||
<div class="container mt-5"> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
|
||
{%- include header.html -%} | ||
{{ content }} | ||
|
||
<main class="page-content" aria-label="Content"> | ||
<div class="wrapper"> | ||
{{ content }} | ||
</div> | ||
</main> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{%- include footer.html -%} | ||
|
||
</body> | ||
{%- include footer.html -%} | ||
|
||
<!-- Bootstrap core JS--> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,29 @@ | ||
.footer-text { | ||
text-align: center; | ||
.header-bottom { | ||
border-bottom: 1px solid #404040; | ||
} | ||
|
||
.site-footer { | ||
margin-top: auto; | ||
padding: 5px; | ||
padding-bottom: calc(1em + env(safe-area-inset-bottom)); | ||
.footer-top { | ||
border-top: 1px solid #404040; | ||
} | ||
|
||
body { | ||
color: #bbb; | ||
} | ||
|
||
a { | ||
color: #79b8ff; | ||
text-decoration: none; | ||
} | ||
|
||
.post-meta { | ||
font-size: 14px; | ||
color: #999; | ||
} | ||
|
||
.post-title { | ||
font-size: 2.625rem; | ||
} | ||
|
||
pre code { | ||
color: #d63384; | ||
} |
Oops, something went wrong.