<?xml version="1.0" encoding="UTF-8"?>



<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Siteleaf</title>
    <description>Built for developers, Loved by everyone. Supports Jekyll, user collaboration, publishing to AWS S3, GitHub Pages, FTP, and more.</description>
    <link>https://www.siteleaf.com/</link>
    <atom:link href="https://www.siteleaf.com/feed.xml" rel="self" type="application/rss+xml"/>
    <pubDate>Thu, 12 Sep 2024 10:49:24 -0400</pubDate>
    <lastBuildDate>Thu, 12 Sep 2024 10:49:24 -0400</lastBuildDate>
    <generator>Siteleaf</generator>
    
      <item>
        <title>Cleaning unused assets from your static website</title>
        <description>&lt;p&gt;As websites and blogs continue to grow, so can the amount of user-uploaded content like images and videos — especially when your site has multiple team members and writers. Over time, it can be tricky to figure out what’s actually used and what’s just collecting dust.&lt;/p&gt;

&lt;p&gt;We recently helped a customer clean up 5 gigabytes(!!) of unused assets, and you might be surprised how much digital clutter is lurking on your site too.&lt;/p&gt;

&lt;p&gt;Let’s dive in and see how much data you can free from your Jekyll website (and speed up build time while you’re at it!).&lt;/p&gt;

&lt;p class=&quot;tip&quot;&gt;TL;DR You can now use the official &lt;a href=&quot;https://github.com/siteleaf/siteleaf-gem&quot;&gt;Siteleaf Ruby gem&lt;/a&gt; to check for unused uploads by running: &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;siteleaf clean&lt;/code&gt;. Skip to the &lt;a href=&quot;https://www.siteleaf.com/blog/cleaning-unused-uploads/#using-the-siteleaf-gem&quot;&gt;end of this post&lt;/a&gt; to learn more.&lt;/p&gt;

&lt;h3 id=&quot;how-to-check-for-unused-assets&quot;&gt;How to check for unused assets&lt;/h3&gt;

&lt;p&gt;While you can use the &lt;a href=&quot;https://github.com/siteleaf/siteleaf-gem&quot;&gt;Siteleaf gem&lt;/a&gt; to do this for you, follow along if you are interested in seeing how we got there (or want to write your own script).&lt;/p&gt;

&lt;p&gt;First, you’ll want to build your full site (including all drafts and unpublished documents) to get a picture of what assets are in use:&lt;/p&gt;

&lt;div class=&quot;language-sh highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bundle &lt;span class=&quot;nb&quot;&gt;exec &lt;/span&gt;jekyll serve &lt;span class=&quot;nt&quot;&gt;--unpublished&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;--drafts&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;--future&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Now we can search the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_site&lt;/code&gt; folder to verify if an asset (for example &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;/uploads/screenshot.png&lt;/code&gt;) is linked or embedded somewhere in its outputted HTML files:&lt;/p&gt;

&lt;div class=&quot;language-sh highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;grep&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-rl&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;/uploads/screenshot.png&quot;&lt;/span&gt; _site
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;This command will output a list of pages where the asset is either embedded using an &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;&amp;lt;img&amp;gt;&lt;/code&gt; tag or otherwise linked on a page.&lt;/p&gt;

&lt;p&gt;However Grep can be a little slow if you have a lot of content, so we can use &lt;a href=&quot;https://geoff.greer.fm/ag/&quot;&gt;The Silver Searcher&lt;/a&gt; to greatly speed things up.&lt;/p&gt;

&lt;p&gt;To install on a Mac, run the following (see &lt;a href=&quot;https://github.com/ggreer/the_silver_searcher&quot;&gt;GitHub&lt;/a&gt; for other platforms):&lt;/p&gt;

&lt;div class=&quot;language-sh highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;brew &lt;span class=&quot;nb&quot;&gt;install &lt;/span&gt;the_silver_searcher
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Now you can search using:&lt;/p&gt;

&lt;div class=&quot;language-sh highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;ag &lt;span class=&quot;nt&quot;&gt;-lQ&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;/uploads/screenshot.png&quot;&lt;/span&gt; _site
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Of course, you won’t want to search for each asset one-by-one, so we can write a simple shell script to loop through all the files in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_uploads&lt;/code&gt;:&lt;/p&gt;

&lt;script src=&quot;https://gist.github.com/sskylar/1008a0ab7d7aed5b75bd6f6f402b0ea6/6657b7b2a678fd9697132f534de1c84e64f864eb.js&quot;&gt;&lt;/script&gt;

&lt;p&gt;If you have files with spaces or other special characters, you’ll want to encode the filenames. We can use Jekyll’s &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;URL.escape_path&lt;/code&gt; method to &lt;a href=&quot;https://gist.github.com/sskylar/1008a0ab7d7aed5b75bd6f6f402b0ea6&quot;&gt;do just that&lt;/a&gt;.&lt;/p&gt;

&lt;h3 id=&quot;using-the-siteleaf-gem&quot;&gt;Using the Siteleaf gem&lt;/h3&gt;

&lt;p&gt;To save you the hassle of maintaining your own script, we decided to add a simple command to our (open source) &lt;a href=&quot;https://github.com/siteleaf/siteleaf-gem&quot;&gt;Siteleaf gem&lt;/a&gt;. It will automatically use The Silver Searcher if you have it installed, or otherwise fall back to Grep for searching.&lt;/p&gt;

&lt;p&gt;First, add the following to your &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Gemfile&lt;/code&gt; (if you haven’t already):&lt;/p&gt;

&lt;div class=&quot;language-rb highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;n&quot;&gt;source&lt;/span&gt; &lt;span class=&quot;s2&quot;&gt;&quot;https://rubygems.org&quot;&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;gem&lt;/span&gt; &lt;span class=&quot;s1&quot;&gt;'jekyll'&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;group&lt;/span&gt; &lt;span class=&quot;ss&quot;&gt;:development&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;do&lt;/span&gt;
  &lt;span class=&quot;n&quot;&gt;gem&lt;/span&gt; &lt;span class=&quot;s1&quot;&gt;'siteleaf'&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;After a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;bundle update&lt;/code&gt; you can now run:&lt;/p&gt;

&lt;div class=&quot;language-sh highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bundle &lt;span class=&quot;nb&quot;&gt;exec &lt;/span&gt;siteleaf clean _uploads
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;This command will build your site locally, check for any unused files, and prompt if you would like to remove them. Note: &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;_uploads&lt;/code&gt; is optional and used by default, you can also pass in a different folder such as &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;assets/images&lt;/code&gt;.&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Building Jekyll site...

Finding unused files...
_uploads/3D_slice.mp4
_uploads/Logo final final 2.svg
_uploads/Screen Shot 2020-09-16 at 9.42.59 AM.png
=&amp;gt; Delete above 3 file(s)? (y/n)
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;This all happens locally, and works with any Jekyll site — even if you don’t use Siteleaf. To fully remove the assets from Siteleaf and your published site, just commit and sync your changes with GitHub.&lt;/p&gt;

&lt;p&gt;Happy cleaning!&lt;/p&gt;
</description>
        <pubDate>Thu, 12 Sep 2024 10:49:00 -0400</pubDate>
        <link>https://www.siteleaf.com/blog/cleaning-unused-uploads/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/cleaning-unused-uploads/</guid>
        
        <category>tip</category>
        
        
      </item>
    
      <item>
        <title>Looking for a Forestry.io alternative?</title>
        <description>&lt;p&gt;Forestry.io, a fellow static site CMS, has announced it will be shutting down on April 21, 2023 (see &lt;a href=&quot;https://forestry.io/blog/forestry.io-end-of-life/&quot;&gt;Forestry.io’s End of Life announcement&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;While this news is definitely a pain for website owners and developers who support these sites, we welcome those looking for a Forestry.io replacement to migrate their static websites to Siteleaf for free (and we’re here to help!). Siteleaf is a content management system with many of the same features, so we think you’ll feel at home here.&lt;/p&gt;

&lt;h4 id=&quot;why-migrate-to-siteleaf-cms&quot;&gt;Why migrate to Siteleaf CMS?&lt;/h4&gt;

&lt;p&gt;Siteleaf has been trusted for over 10 years by companies like Microsoft, Kickstarter, Museum of Modern Art, and New York University. We are &lt;a href=&quot;https://www.siteleaf.com/purpose/&quot;&gt;purpose-driven&lt;/a&gt; and here for the long haul.&lt;/p&gt;

&lt;p&gt;Siteleaf has tight integration with &lt;a href=&quot;https://pages.github.com&quot;&gt;GitHub Pages&lt;/a&gt;, which hosts over a millions websites built with Jekyll. You can also publish static websites to Amazon S3 (or any hosting of your choice), automate tasks with &lt;a href=&quot;https://zapier.com/zapbook/siteleaf/&quot;&gt;Zapier&lt;/a&gt;, and access a fully-featured &lt;a href=&quot;https://learn.siteleaf.com/api/&quot;&gt;API&lt;/a&gt;.&lt;/p&gt;

&lt;h4 id=&quot;how-do-i-move-my-site-from-forestryio-to-siteleaf&quot;&gt;How do I move my site from Forestry.io to Siteleaf?&lt;/h4&gt;

&lt;p&gt;For websites built on &lt;a href=&quot;https://jekyllrb.com&quot;&gt;Jekyll&lt;/a&gt;, you can &lt;a href=&quot;https://manage.siteleaf.com/sites/new&quot;&gt;import your site&lt;/a&gt; from GitHub with just a couple clicks. We have a free plan for open source developers, as well as affordable plans for personal and businesses (&lt;a href=&quot;https://www.siteleaf.com/plans/&quot;&gt;see our plans&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;For complex sites or other static site generators (Next.js, Hugo, Gatsby, Eleventy, etc), our Enterprise team is happy to provide our white glove migration service (&lt;a href=&quot;mailto:enterprise@siteleaf.com?subject=Enterprise%20migration&quot;&gt;get in touch&lt;/a&gt;).&lt;/p&gt;

&lt;iframe src=&quot;https://player.vimeo.com/video/169542999?title=0&amp;amp;byline=0&amp;amp;portrait=0&quot; width=&quot;680&quot; height=&quot;383&quot; frameborder=&quot;0&quot; webkitallowfullscreen=&quot;&quot; mozallowfullscreen=&quot;&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;

&lt;p class=&quot;caption&quot;&gt;A quick tour of Siteleaf&lt;/p&gt;
</description>
        <pubDate>Tue, 07 Feb 2023 11:30:00 -0500</pubDate>
        <link>https://www.siteleaf.com/blog/forestryio-cms-alternatives/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/forestryio-cms-alternatives/</guid>
        
        <category>tip</category>
        
        
      </item>
    
      <item>
        <title>Join us on GitHub Discussions</title>
        <description>&lt;p&gt;The &lt;a href=&quot;https://community.siteleaf.com&quot;&gt;Siteleaf Community&lt;/a&gt; now has a new home on GitHub Discussions where you can get help, vote on new features, and share what you’re working on!&lt;/p&gt;

&lt;p&gt;To get started we created topics for:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;
    &lt;p&gt;❓ &lt;a href=&quot;https://github.com/siteleaf/community/discussions/categories/community-support&quot;&gt;Community Support&lt;/a&gt;: Ask the community for help.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;💡 &lt;a href=&quot;https://github.com/siteleaf/community/discussions/categories/feature-requests&quot;&gt;Feature Requests&lt;/a&gt;: Vote and share ideas for new features.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;🙌 &lt;a href=&quot;https://github.com/siteleaf/community/discussions/categories/show-tell&quot;&gt;Show &amp;amp; Tell&lt;/a&gt;: Show off something you’ve made.&lt;/p&gt;
  &lt;/li&gt;
  &lt;li&gt;
    &lt;p&gt;💬 &lt;a href=&quot;https://github.com/siteleaf/community/discussions/categories/general-discussion&quot;&gt;General Discussion&lt;/a&gt;: Everything else.&lt;/p&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;GitHub Discussions will replace our existing Slack community, and we look forward to building a more open, accessible, and searchable archive for questions that pop up often.&lt;/p&gt;

&lt;p&gt;We also hope to offer a greater level of transparency by opening up our roadmap and allowing the community to &lt;a href=&quot;https://github.com/siteleaf/community/discussions/categories/feature-requests&quot;&gt;vote on new features&lt;/a&gt;.&lt;/p&gt;

&lt;h3 id=&quot;most-helpful&quot;&gt;Most helpful&lt;/h3&gt;

&lt;p&gt;We’ll be rewarding the most helpful community members with exclusive perks:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/github-discussions-most-helpful.png&quot; alt=&quot;Screenshot of GitHub Discussions showing most helpful community members&quot; /&gt;&lt;/p&gt;

&lt;p&gt;GitHub will automatically recognize community members who contribute the most comments marked as answers within the past 30 days in the Community Support section. If you see your name in the leaderboard, we’ll be in touch to give you some exclusive perks as a thank you.&lt;/p&gt;

&lt;p&gt;Join us at: &lt;strong&gt;&lt;a href=&quot;https://community.siteleaf.com&quot;&gt;https://community.siteleaf.com&lt;/a&gt;&lt;/strong&gt; →&lt;/p&gt;
</description>
        <pubDate>Tue, 09 Mar 2021 14:07:00 -0500</pubDate>
        <link>https://www.siteleaf.com/blog/join-us-on-github-discussions/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/join-us-on-github-discussions/</guid>
        
        <category>community</category>
        
        <category>announcement</category>
        
        
      </item>
    
      <item>
        <title>Introducing Siteleaf VIP: our affiliate program</title>
        <description>&lt;p&gt;Today we are officially launching our much requested affiliate program: &lt;a href=&quot;https://vip.siteleaf.com/signup&quot;&gt;Siteleaf VIP&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We know a lot of our customers use Siteleaf with clients (and enjoy referring friends and colleagues), so we’re excited to say thanks and give back!&lt;/p&gt;

&lt;p&gt;For every new user who signs up with your unique VIP link, you’ll earn a 30% commission for any paid sites they create. Depending on the &lt;a href=&quot;https://www.siteleaf.com/plans&quot;&gt;plan&lt;/a&gt; chosen, you could earn over $1,000/year for a single referral — which recurs for as long as the site is active. For freelancers, this is a nice way to add a little recurring revenue to your income.&lt;/p&gt;

&lt;h3 id=&quot;how-it-works&quot;&gt;How it works&lt;/h3&gt;

&lt;p&gt;&lt;a href=&quot;https://vip.siteleaf.com/signup&quot;&gt;Sign up&lt;/a&gt; to create a unique referral link, and share this with your clients and colleagues. Feel free to add this link to your website footer and share it on social media. It looks something like this:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;https://www.siteleaf.com/?via=yourname
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p class=&quot;tip&quot;&gt;You can link to any page on siteleaf.com by adding &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;?via=yourname&lt;/code&gt; to the end of the URL.&lt;/p&gt;

&lt;p&gt;All you need to get started is a PayPal account, and you can keep track of your leads and conversions using the VIP dashboard at: &lt;br /&gt;
&lt;strong&gt;&lt;a href=&quot;https://vip.siteleaf.com&quot;&gt;https://vip.siteleaf.com&lt;/a&gt;&lt;/strong&gt; →&lt;/p&gt;

&lt;p&gt;Thanks for using Siteleaf and continuing to spread the word!&lt;/p&gt;
</description>
        <pubDate>Fri, 01 May 2020 10:30:00 -0400</pubDate>
        <link>https://www.siteleaf.com/blog/vip-affiliate-program/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/vip-affiliate-program/</guid>
        
        <category>announcement</category>
        
        <category>community</category>
        
        
      </item>
    
      <item>
        <title>Upgrading to Jekyll 4</title>
        <description>&lt;p&gt;Jekyll 4.0 is out in the world, and brings upon many improvements over 3.x.&lt;/p&gt;

&lt;p&gt;Notably, your site should build &lt;em&gt;much&lt;/em&gt; faster now thanks to super-powered caching and content transformations. You can see a &lt;a href=&quot;https://jekyllrb.com/news/2019/08/20/jekyll-4-0-0-released/&quot;&gt;full list of changes here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;While GitHub Pages is still pinned to &lt;a href=&quot;https://pages.github.com/versions/&quot;&gt;Jekyll 3.8.x&lt;/a&gt;, it’s possible to start using Jekyll 4 today with a little help from Siteleaf.&lt;/p&gt;

&lt;p&gt;Check out our upgrade guide to get started: &lt;br /&gt;
&lt;strong&gt;&lt;a href=&quot;https://learn.siteleaf.com/themes/upgrading-from-jekyll-3-to-4/&quot;&gt;Upgrading from Jekyll 3.x to 4.x&lt;/a&gt;&lt;/strong&gt; →&lt;/p&gt;

&lt;p&gt;Here’s to speedy rendering! 🍃&lt;/p&gt;
</description>
        <pubDate>Wed, 15 Apr 2020 10:41:00 -0400</pubDate>
        <link>https://www.siteleaf.com/blog/upgrading-to-jekyll-4/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/upgrading-to-jekyll-4/</guid>
        
        <category>jekyll</category>
        
        <category>github</category>
        
        
      </item>
    
      <item>
        <title>New sites in our gallery</title>
        <description>&lt;p&gt;We’re biased, but we think the best sites use Siteleaf. Some of our favorites include &lt;a href=&quot;http://www.antfood.com/&quot;&gt;Antfood&lt;/a&gt;, &lt;a href=&quot;https://capitolciderhouse.com/&quot;&gt;Capitol Cider House&lt;/a&gt;, and &lt;a href=&quot;https://thecreativeindependent.com//&quot;&gt;The Creative Independent&lt;/a&gt;. This week we added five new sites to our &lt;a href=&quot;https://www.siteleaf.com/gallery/&quot;&gt;gallery&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&quot;super-brewing-co&quot;&gt;Super Brewing Co.&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/super-brewing.jpg&quot; alt=&quot;Screenshot of Super Brewing Co.'s website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://superbrewing.co/&quot;&gt;Super Brewing Co.&lt;/a&gt; is an independent nano-brewery based in Oregon, who specialize making super beer. Their site is full of lovely design details &amp;amp; moments of joy.&lt;/p&gt;

&lt;h2 id=&quot;listen-up-biz&quot;&gt;Listen Up Biz&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/listen-up-f43ab5.jpg&quot; alt=&quot;Screenshot of Listen Up's website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.listen-up.biz/&quot;&gt;Listen Up Biz&lt;/a&gt; provides a bespoke 360 promotional service offering radio, club, streaming promotion and press campaigns globally. We love the hype video on their home page.&lt;/p&gt;

&lt;h2 id=&quot;bloomvale&quot;&gt;Bloomvale&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/bloomvale-ef3aec.jpg&quot; alt=&quot;Screenshot of Bloomvale's website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://bloomvale.com/&quot;&gt;Bloomvale&lt;/a&gt; work with CEOs and their senior management teams to drive growth and help technology and media companies. Their clean and simple website is a typographic delight.&lt;/p&gt;

&lt;h2 id=&quot;quinn-cantwell&quot;&gt;Quinn Cantwell&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/quinn-cantwell.jpg&quot; alt=&quot;Screenshot of Quinn's website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://quinncantwell.com/&quot;&gt;Quinn Cantwell&lt;/a&gt; is a San Francisco-based video director who has worked with the likes of Everlane, SoulCycle, and Opening Ceremony. The straightforward design allows her work to shine.&lt;/p&gt;

&lt;h2 id=&quot;dropmark&quot;&gt;Dropmark&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/Dropmark.jpg&quot; alt=&quot;Screenshot of Dropmark's website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Back with a fresh new design, &lt;a href=&quot;https://www.dropmark.com/&quot;&gt;Dropmark&lt;/a&gt; is a tool for teams and individuals to gather inspiration, share, and collaborate privately. The new ‘human-focussed’ look is an exciting step. &lt;em&gt;Full disclosure, Siteleaf and Dropmark are both made by &lt;a href=&quot;https://oak.is/&quot;&gt;Oak Studios&lt;/a&gt;.&lt;/em&gt;&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;small&gt;See all the other sites #builtwithsiteleaf on our &lt;a href=&quot;https://www.siteleaf.com/gallery/&quot;&gt;gallery&lt;/a&gt;. 
Want to see your website in our &lt;a href=&quot;https://www.siteleaf.com/gallery/&quot;&gt;gallery&lt;/a&gt;? Get in touch on &lt;a href=&quot;https://twitter.com/siteleaf&quot;&gt;Twitter&lt;/a&gt; or &lt;a href=&quot;mailto:support@siteleaf.com&quot;&gt;email us&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;
</description>
        <pubDate>Wed, 01 May 2019 12:18:00 -0400</pubDate>
        <link>https://www.siteleaf.com/blog/new-sites-in-our-gallery/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/new-sites-in-our-gallery/</guid>
        
        <category>inspiration</category>
        
        <category>community</category>
        
        
      </item>
    
      <item>
        <title>How to check your site for broken links</title>
        <description>&lt;p&gt;Clicking on links that are broken is a bad experience for users, and it can even affect your &lt;a href=&quot;https://www.siteleaf.com/blog/seo-with-jekyll-siteleaf/&quot;&gt;SEO&lt;/a&gt;. Thankfully, it’s really easy to automate the process of checking the links on your site using &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;html-proofer&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;You can install &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;html-proofer&lt;/code&gt; however you like, for the sake of argument we’ll use &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;bundle&lt;/code&gt; by adding the following to your &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;gemfile&lt;/code&gt;:&lt;/p&gt;

&lt;div class=&quot;language-sh highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;gem &lt;span class=&quot;s1&quot;&gt;'rake'&lt;/span&gt;
gem &lt;span class=&quot;s1&quot;&gt;'html-proofer'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;And then run &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;bundle install&lt;/code&gt;. Then you can get &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;html-proofer&lt;/code&gt; to check for any broken links using the following commands:&lt;/p&gt;

&lt;div class=&quot;language-sh highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;bundle &lt;span class=&quot;nb&quot;&gt;exec &lt;/span&gt;jekyll build
bundle &lt;span class=&quot;nb&quot;&gt;exec &lt;/span&gt;htmlproofer ./_site&lt;span class=&quot;sb&quot;&gt;`&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Then you’ll receive a breakdown of every external and internal link which is broken. Go forth and fix things! Hat’s off to &lt;a href=&quot;https://www.supertechcrew.com/jekyll-check-for-broken-links/&quot;&gt;Super Tech Crew&lt;/a&gt; for this tip. &lt;/p&gt;
</description>
        <pubDate>Tue, 09 Apr 2019 11:00:00 -0400</pubDate>
        <link>https://www.siteleaf.com/blog/how-to-check-your-site-for-broken-links/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/how-to-check-your-site-for-broken-links/</guid>
        
        <category>jekyll</category>
        
        <category>tip</category>
        
        
      </item>
    
      <item>
        <title>Antfood</title>
        <description>&lt;h3 id=&quot;antfood-is-a-creative-audio-studio-with-offices-in-brooklyn-amsterdam-and-são-paulo&quot;&gt;Antfood is a creative audio studio with offices in Brooklyn, Amsterdam, and São Paulo.&lt;/h3&gt;

&lt;p&gt;We are all about &lt;a href=&quot;https://www.antfood.com/&quot;&gt;Antfood’s website&lt;/a&gt;, which is built with Siteleaf. In particular, their loading animations inject a touch of humor to the site, which transforms a potentially boring wait into a moment of joy. This playful style translates directly into their work.&lt;/p&gt;

&lt;p&gt;It’s one of the only portfolios where exploring and finding hidden gems feels like an exciting quest and a considered part of the user journey, rather than an afterthought. This thoughtfulness is perhaps unsurprising as the site was designed by &lt;a href=&quot;https://www.xxix.co/&quot;&gt;XXIX&lt;/a&gt;, who make amazing treats for the internet.&lt;/p&gt;

&lt;h4 id=&quot;we-chatted-with-wilson-brown-ecd-and-partner-at-antfood-about-curiosity-collaboration-and-the-year-ahead&quot;&gt;We chatted with Wilson Brown, ECD and Partner at &lt;a href=&quot;https://www.antfood.com/&quot;&gt;Antfood&lt;/a&gt;, about curiosity, collaboration, and the year ahead.&lt;/h4&gt;

&lt;h3 id=&quot;can-you-tell-me-about-antfood-and-how-you-got-to-where-you-are-now&quot;&gt;Can you tell me about &lt;a href=&quot;https://www.antfood.com/&quot;&gt;Antfood&lt;/a&gt;, and how you got to where you are now?&lt;/h3&gt;

&lt;p&gt;We started &lt;a href=&quot;https://www.antfood.com/&quot;&gt;Antfood&lt;/a&gt; in 2007 and have grown slowly from there. I felt we had drive and some basic talent, but truthfully we were kids with little experience, no connections and zero capital. We got to where we are now by focusing on making great work and seeking out great collaborators, colleagues and projects.&lt;/p&gt;

&lt;p&gt;I feel very grateful for the successes that we’ve had, and I’m proud of the reputation that we’ve built, but it was achieved very slowly, by taking little steps to improve our craft, team, physical studio, instruments, equipment, and over the years our portfolio. Even now, we’re still trying to do the same thing every day, to take on new challenges, hone our craft and do things that no one has done before — or at least we haven’t tried yet!&lt;/p&gt;

&lt;iframe src=&quot;https://player.vimeo.com/video/273782257?color=ffffff&amp;amp;title=0&amp;amp;byline=0&amp;amp;portrait=0&quot; width=&quot;640&quot; height=&quot;360&quot; frameborder=&quot;0&quot; webkitallowfullscreen=&quot;&quot; mozallowfullscreen=&quot;&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;

&lt;h3 id=&quot;youve-collaborated-with-some-fantastic-companies-are-there-any-pieces-of-work-that-you-continue-to-look-back-on-and-think-damn-thats-great&quot;&gt;You’ve collaborated with some fantastic companies, are there any pieces of work that you continue to look back on and think ‘damn, that’s great’?&lt;/h3&gt;

&lt;p&gt;Thanks for the kind words. We take pride in building relationships and actively try to find like-minded creative collaborators, who we can help elevate their craft, and they can help elevate ours. &lt;a href=&quot;http://buck.tv/#/&quot;&gt;Buck Design&lt;/a&gt; has been a great collaborator over the years, and we’ve worked together on the number of pieces together since 2009, that have been seminal for Antfood regarding process and creative, and I hope the same is true for Buck too!&lt;/p&gt;

&lt;p&gt;I rarely look back at old work on a day-to-day basis, but often when we’re putting together talks for conferences or festivals, revamping our website or social presence, or just reflecting on our mission and values past and present, I love seeing the work we’ve done over the years. Sometimes these are big portfolio pieces, and sometimes they are forgotten or ignored projects, and I love seeing tiny strokes of genius, humor and artistry within the more generic projects, that you don’t necessarily appreciate at the time when you’re in the thick of production, approvals, and delivery.&lt;/p&gt;

&lt;iframe src=&quot;https://player.vimeo.com/video/38386297?color=ffffff&amp;amp;title=0&amp;amp;byline=0&amp;amp;portrait=0&quot; width=&quot;640&quot; height=&quot;360&quot; frameborder=&quot;0&quot; webkitallowfullscreen=&quot;&quot; mozallowfullscreen=&quot;&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;

&lt;p&gt;Pedro and I are putting together a talk for a conference in Amsterdam next week, and I came across a couple of pieces that I had pushed to the back of my mind, but still love &lt;a href=&quot;https://www.antfood.com/load/#freebord-8-bit&quot;&gt;&lt;em&gt;Freebord&lt;/em&gt;&lt;/a&gt; (2009), &lt;a href=&quot;https://www.antfood.com/load/#come-together&quot;&gt;&lt;em&gt;Sundance&lt;/em&gt;&lt;/a&gt; (2010), &lt;a href=&quot;https://www.antfood.com/load/#2017-show-opening-titles&quot;&gt;&lt;em&gt;AICP&lt;/em&gt;&lt;/a&gt; (2017). Also, a perennial favorite, that was played out back in 2012, but I still I love going back to is our deconstructed, and dingy Kafka-esque piece with Buck, &lt;em&gt;&lt;a href=&quot;https://www.antfood.com/load/#good-books-metamorphosis&quot;&gt;Metamorphosis&lt;/a&gt;&lt;/em&gt; for Good Books.&lt;/p&gt;

&lt;h3 id=&quot;what-does-your-creative-process-look-like&quot;&gt;What does your creative process look like?&lt;/h3&gt;

&lt;p&gt;In composition, I try to vary my process, to ensure that I’m coming up with new and different ideas sounds, harmonies and textures. That can influence what kind of instruments or structural form I begin with, and what I deem the central elements of the composition.&lt;/p&gt;

&lt;p&gt;For example, sometimes I’ll start with a beat or a harmonic framework and build everything up around that, other times I’ll start with the opinion, the voice or even a more abstract point of view and use what musical and arrangement tools I need to convey that idea best. Similarly, there are times where I start with a specific skeleton and fill it in, or other times I will start with more of an open palette and experiment until I find something that seems strong enough to inspire the rest of the compositional elements to fall into place around it.&lt;/p&gt;

&lt;iframe src=&quot;https://player.vimeo.com/video/260121225?color=ffffff&amp;amp;title=0&amp;amp;byline=0&amp;amp;portrait=0&quot; width=&quot;640&quot; height=&quot;360&quot; frameborder=&quot;0&quot; webkitallowfullscreen=&quot;&quot; mozallowfullscreen=&quot;&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;

&lt;p&gt;More broadly speaking, whether I’m composing music and sound design, making creative decisions regarding the broader scope of projects, selling through concepts and ideas, or even helping to steer our company’s entrepreneurial vision.&lt;/p&gt;

&lt;p&gt;I try to do simultaneously define some kind of North Star or guiding principle, that I can always go back and ask “are we getting closer to the goal, are we on track?” but at the same time, to encourage and welcome dissent, to stay curious and open-minded, and realize we often come across better solutions and better questions then we had in mind when we started the process.&lt;/p&gt;

&lt;p&gt;With all that said, I try to be pragmatic, and diligent at stepping forward rather than backward or sideways to actually get things done.&lt;/p&gt;

&lt;iframe src=&quot;https://player.vimeo.com/video/220858720?color=ffffff&amp;amp;title=0&amp;amp;byline=0&amp;amp;portrait=0&quot; width=&quot;640&quot; height=&quot;360&quot; frameborder=&quot;0&quot; webkitallowfullscreen=&quot;&quot; mozallowfullscreen=&quot;&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;

&lt;h3 id=&quot;when-was-the-last-time-you-were-afraid-of-making-a-work-related-decision&quot;&gt;When was the last time you were afraid of making a work-related decision?&lt;/h3&gt;

&lt;p&gt;I’m often afraid of work-related decisions. These can range from simple production questions like, “should I put a guitar in this track?”, to broader business decisions like personnel, visions for the future of the studio, and what kind of projects we should work on. But these are fears with a lowercase ‘f’, and I think fear is an important driving factor in my creative work.&lt;/p&gt;

&lt;p&gt;As artists, we often are consumed by self-doubt and question our choices. I think overcoming these fears, embracing them or just putting your head down and pushing through them, is what makes us better artists and stronger human beings, and gives our life and our work meaning.&lt;/p&gt;

&lt;p&gt;If I only worked on projects that were straightforward and didn’t require the need to doubt decisions, I’d likely just be making mindless and generic work, and I don’t think that would be a substantive professional existence. So, while excessive fear can be crippling, or at least counterproductive, personally I think it’s important to embrace and push through, rather than brushing it under the rug or avoiding it entirely.&lt;/p&gt;

&lt;iframe src=&quot;https://player.vimeo.com/video/285113069?color=ffffff&amp;amp;title=0&amp;amp;byline=0&amp;amp;portrait=0&quot; width=&quot;640&quot; height=&quot;360&quot; frameborder=&quot;0&quot; webkitallowfullscreen=&quot;&quot; mozallowfullscreen=&quot;&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;

&lt;h3 id=&quot;how-do-you-stay-curious&quot;&gt;How do you stay curious?&lt;/h3&gt;

&lt;p&gt;That’s a great question and a very important concept to me. Especially as we grow up, get consumed by work, routine, families, and the mundane aspects of modern life.&lt;/p&gt;

&lt;p&gt;I try to seek out new music, art and experience, that open my mind to different emotions, ideas, thought processes, and techniques. First, I try to keep an open mind and try new things, especially things that scare you or take you out of your comfort zone. Second, maintaining an interesting and diverse group of peers, that bring different perspectives and taste to help broaden my awareness of Art, culture and more. Finally, more specific to my work composing music and crafting sound, I find that using particular tools and techniques, or setting limits on how to structure the creative process, helps keep me curious by diving into new areas that I might overlook or remain ignorant of.&lt;/p&gt;

&lt;iframe src=&quot;https://player.vimeo.com/video/9499310?color=ffffff&amp;amp;title=0&amp;amp;byline=0&amp;amp;portrait=0&quot; width=&quot;640&quot; height=&quot;360&quot; frameborder=&quot;0&quot; webkitallowfullscreen=&quot;&quot; mozallowfullscreen=&quot;&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;

&lt;p&gt;I have the great luxury of working in a studio where we have all kinds of tools and toys, and I think when you have a lot of things at your fingertips, you can revert to common tricks and techniques that you’ve used before.  While this is one of the luxuries of having all kinds of fun gear and instruments, it’s also important to place limitations on yourself sometime so you can actually dive into a particular instrument or sound and find something new.&lt;/p&gt;

&lt;h3 id=&quot;what-are-you-most-excited-about-looking-at-the-year-ahead&quot;&gt;What are you most excited about looking at the year ahead?&lt;/h3&gt;

&lt;p&gt;First, we had a great year in 2018, we worked hard on building solid systems, and a fantastic team, so that we could focus on what we do best - the work. We celebrated our 10-year anniversary with all three studios (New York, São Paulo and Amsterdam) for a week in Mexico. There, we spent a lot of time patting ourselves on the back for making it this far, but focusing on about what the next 1/3/5/10 years will look like for Antfood and what we can do to remain relevant as well as continue to get better over the coming decade.&lt;/p&gt;

&lt;p&gt;Specifically for 2019, we are developing a couple of new means of production, both for the AR/VR space, and for nonlinear games and experiences, but also for mixing custom, multi-channel audio in physical spaces. We’ve developed some neat tools for playing with sound and space, and I’m hoping we can convince some clients and collaborators to help us bring them to a larger audience!&lt;/p&gt;

&lt;iframe src=&quot;https://player.vimeo.com/video/192041048?color=ffffff&amp;amp;title=0&amp;amp;byline=0&amp;amp;portrait=0&quot; width=&quot;640&quot; height=&quot;360&quot; frameborder=&quot;0&quot; webkitallowfullscreen=&quot;&quot; mozallowfullscreen=&quot;&quot; allowfullscreen=&quot;&quot;&gt;&lt;/iframe&gt;

&lt;p&gt;I’m looking forward to our amazing team to continuing to grow and evolve and be able to take on more unique projects and challenges. We’re building a new (and hopefully) fresh platform based on machine learning to help organize and repurpose our back catalog of work. Finally, I hope we have the chance to continue working with our favorite people and meet some new ones to craft amazing audio work that moves people and gives some meaning to those who helped create it!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;See more of Antfood’s work at &lt;a href=&quot;https://www.antfood.com/&quot;&gt;antfood.com&lt;/a&gt; on &lt;a href=&quot;https://www.instagram.com/antfood.music/&quot;&gt;Instagram&lt;/a&gt;, &lt;a href=&quot;https://twitter.com/antfood&quot;&gt;Twitter&lt;/a&gt;, and &lt;a href=&quot;https://vimeo.com/antfood&quot;&gt;Vimeo&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;
</description>
        <pubDate>Thu, 06 Dec 2018 11:33:00 -0500</pubDate>
        <link>https://www.siteleaf.com/blog/antfood-are-amazing/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/antfood-are-amazing/</guid>
        
        <category>inspiration</category>
        
        
      </item>
    
      <item>
        <title>Summer of Siteleaf</title>
        <description>&lt;p&gt;Summer is the time for sun, sea, and Siteleaf. No, really.&lt;/p&gt;

&lt;p&gt;Lots of festivals use Siteleaf to manage their sites. Siteleaf makes it easy for content creators to update static sites while still optimizing for site speed. Here are a few of our favorites.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/Outside-lands-1.jpg&quot; alt=&quot;Image of two women wearing backpacks climbing stairs at a festival&quot; /&gt;&lt;/p&gt;
&lt;h2 id=&quot;outside-lands&quot;&gt;Outside Lands&lt;/h2&gt;

&lt;p&gt;With sets from Janet Jackson, The Weekend, DJ Snake, Chvrches, Janelle Monáe, Carley Rae Jepson, and fifty more artists you can be sure that there’s something for you.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.sfoutsidelands.com/&quot;&gt;Outside Lands&lt;/a&gt; is a festival that takes it’s food as seriously as it’s beats. Featuring goodies from the top talent in the Bay Area including truffled grilled cheeses, arepas, Taiwanese snow cones, and liquid chocolate bars. We’re not even sure what a liquid chocolate bar is, but you can bet we want to try one.&lt;/p&gt;

&lt;p&gt;They still have &lt;a href=&quot;https://www.sfoutsidelands.com/passes/&quot;&gt;tickets&lt;/a&gt; available for the weekend, including VIP passes if you’re feeling fancy.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/Grandoozy-1.jpg&quot; alt=&quot;Image of white male singer holding a mic and addressing crowd&quot; /&gt;&lt;/p&gt;

&lt;h2 id=&quot;grandoozy&quot;&gt;Grandoozy&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;https://www.grandoozy.com/&quot;&gt;Grandoozy&lt;/a&gt; has a sweet line up including Kendrick Lemar, Florence and the Machine, as well as the legendary Stevie Wonder. You can also break it down in the all-day dance area, which takes inspiration from Berlin’s infamous club scene.&lt;/p&gt;

&lt;p&gt;Showcasing Denver’s craft brewery scene Grandoozy features 18 different breweries alongside Denver’s top distillers. Get involved and snap up &lt;a href=&quot;https://www.grandoozy.com/tickets/&quot;&gt;tickets&lt;/a&gt; for this September’s festival.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/Clusterfest-3.jpg&quot; alt=&quot;Image of African American woman holding mic doing stand up comedy&quot; /&gt;&lt;/p&gt;

&lt;h2 id=&quot;clusterfest&quot;&gt;Clusterfest&lt;/h2&gt;

&lt;p&gt;&lt;a href=&quot;https://www.clusterfest.com/&quot;&gt;Clusterfest&lt;/a&gt; is a comedy festival in San Fransisco, featuring comedians like Amy Schumer, Trevor Noah, and Tiffany Haddish alongside drag royalty Bianca Del Rio and Jinkx Monsoon.&lt;/p&gt;

&lt;p&gt;You could also step into some of your favorite comedy shows with Clusterfest’s unique experiences. Slip into Paddy’s Pub (from it’s Always Sunny in Philadelphia) for a pint, or munching down a Bluth’s Frozen Banana (from Arrested Development). Sadly Clusterfest is all out of bananas for 2018, but there’s always next June!&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/Bristol-Comedy-garden-1.jpg&quot; alt=&quot;Image of people in a park chatting and sipping beer&quot; /&gt;&lt;/p&gt;

&lt;h2 id=&quot;bristol-comedy-garden&quot;&gt;Bristol Comedy Garden&lt;/h2&gt;

&lt;p&gt;Over the pond in England is a comedy festival that’s taking the South West by storm. &lt;a href=&quot;https://www.bristolcomedygarden.co.uk/&quot;&gt;Bristol Comedy Garden&lt;/a&gt; allows you to catch the best British comedians like Josh Widdicombe, Shappi Korsandi, and Alan Davis in a relaxed environment.&lt;/p&gt;

&lt;p&gt;Bristol Comedy Garden is a bargain, with tickets for each evening ranging from £20-£25. So it’s no surprise that they sold out every show this year. Keep your eyes on their colorful &lt;a href=&quot;https://www.bristolcomedygarden.co.uk/&quot;&gt;site&lt;/a&gt; to see when next year’s line up gets announced.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/Grandoozy-2.jpg&quot; alt=&quot;Image of young women at the front of a festival stage excited&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Do you use Siteleaf for a festival, event, or conference? Let us know on &lt;a href=&quot;https://twitter.com/siteleaf&quot;&gt;Twitter&lt;/a&gt;.&lt;/p&gt;
</description>
        <pubDate>Fri, 13 Jul 2018 13:07:00 -0400</pubDate>
        <link>https://www.siteleaf.com/blog/summer-of-siteleaf/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/summer-of-siteleaf/</guid>
        
        <category>community</category>
        
        <category>inspiration</category>
        
        
      </item>
    
      <item>
        <title>New sites in Siteleaf's gallery</title>
        <description>&lt;p&gt;We’re probably a little biased, but we think the best sites use Siteleaf. Some of our favorites include &lt;a href=&quot;http://www.wadejeffree.com/&quot;&gt;Wade Jeffree&lt;/a&gt;, &lt;a href=&quot;http://girlsnightinclub.com/&quot;&gt;Girls’ Night In&lt;/a&gt;, and &lt;a href=&quot;https://upperquad.com/&quot;&gt;Upperquad&lt;/a&gt;. This week we added nine new sites to our &lt;a href=&quot;https://www.siteleaf.com/gallery/&quot;&gt;gallery&lt;/a&gt;.&lt;/p&gt;

&lt;h2 id=&quot;capitol-cider-house&quot;&gt;Capitol Cider House&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/Capitol-cider-house.jpg&quot; alt=&quot;Screenshot of Capitol Cider House website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://capitolciderhouse.com/&quot;&gt;Capitol Cider House&lt;/a&gt; is a new bar in Washington DC dedicated to showcasing cider producers within 200 miles of the Capitol building. They’ve even got a dog-friendly outside area.&lt;/p&gt;

&lt;h2 id=&quot;canlis&quot;&gt;Canlis&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/Canlis-image.jpg&quot; alt=&quot;Screenshot of Canlis website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Just looking at the James Beard award-winning restaurant &lt;a href=&quot;https://canlis.com/&quot;&gt;Canlis&lt;/a&gt;’ website makes us hungry. And sad that we don’t live in Seattle.&lt;/p&gt;

&lt;h2 id=&quot;dine&quot;&gt;Dine&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/dine-image.jpg&quot; alt=&quot;Screenshot of Dine website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://dinehq.com/&quot;&gt;Dine&lt;/a&gt; is a creative design studio based in Beijing, who focus on designing for startups.&lt;/p&gt;

&lt;h2 id=&quot;dipmat&quot;&gt;Dipmat&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/dipmat-image.jpg&quot; alt=&quot;Screenshot of Dipmat website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.dimpat.com.au/&quot;&gt;Dipmat&lt;/a&gt; is an Architectural Building company based in Melbourne set up by friends Adrian Poropat and Bevan Dimeck. The buildings they bring to life are #goals.&lt;/p&gt;

&lt;h2 id=&quot;earn-studios&quot;&gt;Earn Studios&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/earn-image.jpg&quot; alt=&quot;Screenshot of Earn Studios website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://www.earnstudios.com/&quot;&gt;Earn Studios&lt;/a&gt; are a team of strategists and inventors based in London who work with clients including Samsung, Univeral, and EE.&lt;/p&gt;

&lt;h2 id=&quot;light-and-shade-media&quot;&gt;Light and Shade Media&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/light-shade-image.jpg&quot; alt=&quot;Screenshot of Light and Shade Media website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://lightandshademedia.com/&quot;&gt;Light and Shade Media&lt;/a&gt; are an Australian production house specializing in commercial production, documentaries, and online advertising.&lt;/p&gt;

&lt;h2 id=&quot;single-double&quot;&gt;Single Double&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/single-double-image.jpg&quot; alt=&quot;Screenshot of Single Double website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://singledouble.co/&quot;&gt;Single Double&lt;/a&gt; is an independent content agency in Melbourne. They are passionate about turning brands into publishers and making content people love.&lt;/p&gt;

&lt;h2 id=&quot;south-california-craft-coffee&quot;&gt;South California Craft Coffee&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/south-cali-image.jpg&quot; alt=&quot;Screenshot of South California Craft Coffee website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Built by coffee and Siteleaf aficionado John Choura Jr., &lt;a href=&quot;http://socal.coffee/&quot;&gt;South California Craft Coffee&lt;/a&gt; is a curated list of great spots for your next caffeine fix.&lt;/p&gt;

&lt;h2 id=&quot;welcome-conference&quot;&gt;Welcome Conference&lt;/h2&gt;

&lt;p&gt;&lt;img src=&quot;https://www.siteleaf.com/uploads/welcome-image.jpg&quot; alt=&quot;Screenshot of Welcome Conference website&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The &lt;a href=&quot;http://thewelcomeconference.com/&quot;&gt;Welcome Conference&lt;/a&gt; is a place for hospitality professionals to come together in New York City. Their June conference line up includes Seth Meyers, Victoria Arlen, and Alan Mulally.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;&lt;small&gt;See all the other sites #builtwithsiteleaf on our &lt;a href=&quot;https://www.siteleaf.com/gallery/&quot;&gt;gallery&lt;/a&gt;. 
Want to see your website in our &lt;a href=&quot;https://www.siteleaf.com/gallery/&quot;&gt;gallery&lt;/a&gt;? Get in touch on &lt;a href=&quot;https://twitter.com/siteleaf&quot;&gt;Twitter&lt;/a&gt; or &lt;a href=&quot;mailto:support@siteleaf.com&quot;&gt;email us&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;
</description>
        <pubDate>Wed, 30 May 2018 13:08:00 -0400</pubDate>
        <link>https://www.siteleaf.com/blog/new-sites-in-siteleafs-gallery/</link>
        <guid isPermaLink="true">https://www.siteleaf.com/blog/new-sites-in-siteleafs-gallery/</guid>
        
        <category>community</category>
        
        <category>inspiration</category>
        
        
      </item>
    
  </channel>
</rss>
