<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.4">Jekyll</generator><link href="https://tylorstech.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://tylorstech.com/" rel="alternate" type="text/html" /><updated>2026-05-08T22:21:27+00:00</updated><id>https://tylorstech.com/feed.xml</id><title type="html">tylorstech.com</title><subtitle>Industry 4.0 Software Engineer · .NET Developer · Automation Enthusiast</subtitle><author><name>Tylor Pater</name><email>tylor@tylorstech.com</email></author><entry><title type="html">Getting Started with Your Portfolio Site</title><link href="https://tylorstech.com/technical/2026/01/15/getting-started.html" rel="alternate" type="text/html" title="Getting Started with Your Portfolio Site" /><published>2026-01-15T00:00:00+00:00</published><updated>2026-01-15T00:00:00+00:00</updated><id>https://tylorstech.com/technical/2026/01/15/getting-started</id><content type="html" xml:base="https://tylorstech.com/technical/2026/01/15/getting-started.html"><![CDATA[<p>Welcome to your new Jekyll-powered portfolio! This is a sample blog post to help you get started.</p>

<h2 id="why-jekyll">Why Jekyll?</h2>

<p>Jekyll is perfect for developers because it:</p>
<ul>
  <li>Generates static sites (fast, secure, cheap to host)</li>
  <li>Works seamlessly with GitHub Pages</li>
  <li>Lets you write in Markdown</li>
  <li>Doesn’t require a database</li>
  <li>Plays nicely with version control</li>
</ul>

<h2 id="getting-started">Getting Started</h2>

<p>To start the development server:</p>

<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>bundle <span class="nb">exec </span>jekyll serve
</code></pre></div></div>

<p>Then visit <code class="language-plaintext highlighter-rouge">http://localhost:4000</code> in your browser.</p>

<h2 id="writing-blog-posts">Writing Blog Posts</h2>

<p>Blog posts live in the <code class="language-plaintext highlighter-rouge">_posts/</code> directory with the filename format: <code class="language-plaintext highlighter-rouge">YYYY-MM-DD-slug.md</code></p>

<p>Each post starts with front matter:</p>

<div class="language-yaml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nn">---</span>
<span class="na">layout</span><span class="pi">:</span> <span class="s">post</span>
<span class="na">title</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Your</span><span class="nv"> </span><span class="s">Post</span><span class="nv"> </span><span class="s">Title"</span>
<span class="na">description</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Brief</span><span class="nv"> </span><span class="s">description</span><span class="nv"> </span><span class="s">for</span><span class="nv"> </span><span class="s">SEO"</span>
<span class="na">category</span><span class="pi">:</span> <span class="s">technical</span>
<span class="na">tags</span><span class="pi">:</span>
  <span class="pi">-</span> <span class="s">tag1</span>
  <span class="pi">-</span> <span class="s">tag2</span>
<span class="na">date</span><span class="pi">:</span> <span class="s">2026-01-15</span>
<span class="nn">---</span>
</code></pre></div></div>

<h3 id="front-matter-fields">Front Matter Fields</h3>

<ul>
  <li><strong>title</strong>: The post title</li>
  <li><strong>description</strong>: SEO meta description</li>
  <li><strong>category</strong>: e.g., “technical”, “home-lab”, “career”</li>
  <li><strong>tags</strong>: Array of tags for filtering</li>
  <li><strong>date</strong>: Publication date (YYYY-MM-DD)</li>
</ul>

<h2 id="markdown-tips">Markdown Tips</h2>

<h3 id="code-blocks">Code Blocks</h3>

<div class="language-python highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="k">def</span> <span class="nf">hello_world</span><span class="p">():</span>
    <span class="nf">print</span><span class="p">(</span><span class="sh">"</span><span class="s">Hello, World!</span><span class="sh">"</span><span class="p">)</span>
</code></pre></div></div>

<h3 id="lists">Lists</h3>

<ul>
  <li>Item 1</li>
  <li>Item 2</li>
  <li>Item 3</li>
</ul>

<p>Numbers lists:</p>

<ol>
  <li>First</li>
  <li>Second</li>
  <li>Third</li>
</ol>

<h3 id="emphasis">Emphasis</h3>

<p><strong>Bold text</strong> and <em>italic text</em> and <del>strikethrough</del>.</p>

<h3 id="links">Links</h3>

<p><a href="https://example.com">Link text</a></p>

<h3 id="images">Images</h3>

<p><img src="/assets/images/photo.jpg" alt="Alt text" /></p>

<h2 id="next-steps">Next Steps</h2>

<ol>
  <li>Delete this post when you’re ready</li>
  <li>Create your own posts in <code class="language-plaintext highlighter-rouge">_posts/</code></li>
  <li>Update the author information in <code class="language-plaintext highlighter-rouge">_config.yml</code></li>
  <li>Customize colors in <code class="language-plaintext highlighter-rouge">assets/css/style.scss</code></li>
  <li>Deploy to GitHub Pages</li>
</ol>

<p>Happy blogging! 🚀</p>]]></content><author><name>Tylor Pater</name><email>tylor@tylorstech.com</email></author><category term="technical" /><category term="jekyll" /><category term="portfolio" /><category term="blogging" /><summary type="html"><![CDATA[A guide to setting up and maintaining your new Jekyll-powered portfolio]]></summary></entry></feed>