<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rick West</title>
    <description>The latest articles on DEV Community by Rick West (@rickwest).</description>
    <link>https://dev.to/rickwest</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F103994%2F1c9e9e17-4ecf-4ae8-bbb7-bf8b75ef993c.jpeg</url>
      <title>DEV Community: Rick West</title>
      <link>https://dev.to/rickwest</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rickwest"/>
    <language>en</language>
    <item>
      <title>Jigsaw Clean Blog 📚</title>
      <dc:creator>Rick West</dc:creator>
      <pubDate>Sun, 21 Apr 2019 00:00:00 +0000</pubDate>
      <link>https://dev.to/rickwest/jigsaw-clean-blog-1pco</link>
      <guid>https://dev.to/rickwest/jigsaw-clean-blog-1pco</guid>
      <description>&lt;p&gt;Ok, so this isn't actually as exciting as it sounds. I basically just rebuilt my blog using Tightens Jigsaw static site generator and then packaged it up in to a starter template, making it available on &lt;a href="https://packagist.org/packages/rickwest/jigsaw-clean-blog"&gt;Packagist&lt;/a&gt; for others to use!&lt;/p&gt;




&lt;p&gt;Deciding I wanted to move my blog away from Wordpress and towards a more lightweight, developer oriented static site generator, Jigsaw was the obvious choice for so many reasons that I previously discussed &lt;a href="https://www.rickwest.co.uk/building-static-sites-with-jigsaw/"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;The only downside, moving to Jigsaw, was the initial 'development' of the blog itself. I say downside, but being an enthusiastic developer, I actually enjoyed the process. However, I can see how that initial hurdle and time commitment might put some people off making the switch. It's hard enough finding the time to actually write a blog post, never mind move the blog to a new platform and make it look pretty. We all lead busy lives after all!&lt;/p&gt;

&lt;p&gt;Not only that, but it's safe to say that we don't all have an eye for design, I certainly don't! However, I had recently stumbled across &lt;a href="https://nunomaduro.com/"&gt;Nuno Maduro's blog&lt;/a&gt;, and really liked the clean look of it, so I decided to port the &lt;a href="https://startbootstrap.com/themes/clean-blog/"&gt;Startbootstrap Clean Blog&lt;/a&gt; over to Jigsaw and use that myself, on this very website 😊.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Package
&lt;/h2&gt;

&lt;p&gt;When Tighten published a post about &lt;a href="https://tighten.co/blog/jigsaw-starter-templates"&gt;Jigsaw starter templates&lt;/a&gt;, this inspired me to package up my Jigsaw implementation of the Clean Blog theme and make it available to others. As a result the &lt;a href="https://github.com/rickwest/jigsaw-clean-blog"&gt;jigsaw-clean-blog&lt;/a&gt; starter was born! It's my first 'package', and I really enjoyed the process of putting it together. If it can help save one person from reinventing the wheel or lower the barrier of entry for someone wanting to try the awesome Jigsaw then it's a job well done 👌.&lt;/p&gt;

&lt;p&gt;Get the starter! - &lt;a href="https://github.com/rickwest/jigsaw-clean-blog"&gt;https://github.com/rickwest/jigsaw-clean-blog&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--BuaGXpWV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/rickwest/jigsaw-clean-blog/master/screenshot.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--BuaGXpWV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://raw.githubusercontent.com/rickwest/jigsaw-clean-blog/master/screenshot.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  What's Included
&lt;/h3&gt;

&lt;p&gt;This fully-responsive (based on &lt;a href="https://getbootstrap.com/"&gt;Bootstrap 4&lt;/a&gt;) starter template includes some sample pages and comes pre configured with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Syntax highlighting with &lt;a href="https://highlightjs.org/"&gt;highlight.js&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;A script that automatically generates a &lt;code&gt;sitemap.xml&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;A script that automatically generates a RSS feed&lt;/li&gt;
&lt;li&gt;A custom 404 page&lt;/li&gt;
&lt;li&gt;A contact form with &lt;a href="https://formspree.io/"&gt;formSpree&lt;/a&gt; integration&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Getting Started
&lt;/h3&gt;

&lt;p&gt;You can get up and running with this starter in 3 quick easy steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create the project directory&lt;/li&gt;
&lt;/ol&gt;



&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;mkdir my-clean-blog
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Install Jigsaw via Composer&lt;/li&gt;
&lt;/ol&gt;



&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cd my-clean-blog
composer require tightenco/jigsaw
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Initialize your project&lt;/li&gt;
&lt;/ol&gt;



&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;./vendor/bin/jigsaw init rickwest/jigsaw-clean-blog
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Once that you have everything installed, you can then serve the site using PHP &lt;code&gt;./vendor/bin/jigsaw serve&lt;/code&gt; or alternatively, using Browsersync &lt;code&gt;yarn run watch&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Over To You
&lt;/h2&gt;

&lt;p&gt;Although only a very simple project, just putting something out there has been a pretty big deal for me, but also a process that I've enjoyed wholeheartedly.&lt;/p&gt;

&lt;p&gt;With that said, I'd love to get your feedback on this Jigsaw starter, especially if you've decided to give it a try.&lt;/p&gt;

&lt;p&gt;I'm really pleased with how my new Jigsaw powered blog has turned out so it would be great to see what you've been working on. Maybe you've built your own Jigsaw starter? I'd love to hear about it!&lt;/p&gt;

&lt;p&gt;Get the starter! - &lt;a href="https://github.com/rickwest/jigsaw-clean-blog"&gt;https://github.com/rickwest/jigsaw-clean-blog&lt;/a&gt;&lt;/p&gt;

</description>
      <category>jigsaw</category>
      <category>staticsitegenerator</category>
      <category>laravel</category>
      <category>php</category>
    </item>
  </channel>
</rss>
