3 Commits f01e70fcc9 ... 9af5dc0393

Author SHA1 Message Date
  Kyle P Davis 9af5dc0393 fix: update where location 5 years ago
  Kyle P Davis 869c4a5897 fix: make sorted tags work again 5 years ago
  Kyle P Davis cf299c0289 build: add bundle config for more isolated local installs 5 years ago
4 changed files with 8 additions and 4 deletions
  1. 2 0
      .bundle/config
  2. 1 0
      .gitignore
  3. 1 1
      index.md
  4. 4 3
      tags.html

+ 2 - 0
.bundle/config

@@ -0,0 +1,2 @@
+---
+BUNDLE_PATH: ".bundle"

+ 1 - 0
.gitignore

@@ -8,4 +8,5 @@
 # build
 _site/
 Gemfile.lock
+.bundle/ruby
 

+ 1 - 1
index.md

@@ -36,7 +36,7 @@ title: Home
 
 - the Internet
 - I live here (practically)
-- also, Louisville, KY
+- also, Cupertino, CA
 
 
 ### why

+ 4 - 3
tags.html

@@ -3,17 +3,18 @@ layout: default
 title: Tags
 ---
 <div class="tags">
+	{% assign sorted_tags = site.tags | sort %}
 
 	<h2>Tags</h2>
 	<ul class="list-inline">
-		{% for tag in site.tags | sort %}
+		{% for tag in sorted_tags %}
 		<li><a href="/tags.html#{{ tag[0] }}-ref">#{{ tag[0] }}</a></li>
 		{% endfor %}
 	</ul>
 
-	<hr/>
+	<hr />
 
-	{% for tag in site.tags %}
+	{% for tag in sorted_tags %}
 	<h3 id="{{ tag[0] }}-ref">#{{ tag[0] }} <small>({{ tag[1].size }})</small></h3>
 	<div class="posts tag-posts">
 		<ul class="list-unstyled">