Skip to content

Commit

Permalink
Merge pull request #61 from wintermuted/alaska-and-eclipse
Browse files Browse the repository at this point in the history
New Posts
  • Loading branch information
wintermuted authored Nov 16, 2024
2 parents 85294a4 + 1cd2b03 commit 45e6bd3
Show file tree
Hide file tree
Showing 630 changed files with 2,317 additions and 185 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ GEM
execjs (2.9.1)
ffi (1.17.0)
forwardable-extended (2.6.0)
google-protobuf (3.25.5-x86_64-darwin)
google-protobuf (3.25.5-x86_64-linux)
google-protobuf (3.23.4-x86_64-darwin)
google-protobuf (3.23.4-x86_64-linux)
http_parser.rb (0.8.0)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
Expand Down
18 changes: 15 additions & 3 deletions _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<li class="nav-item">
<a class="nav-link" href="/projects">Projects</a>
</li>
{% endif %} -->
{% endif %}
{% if current[1] == 'wiki' %}
<li class="nav-item active">
<a class="nav-link active" href="/wiki">Wiki</a>
Expand All @@ -53,12 +53,24 @@
<li class="nav-item">
<a class="nav-link" href="/wiki">Wiki</a>
</li>
{% endif %}
{% endif %} -->
<!-- {% if current[1] == 'wiki/links' %}
<li class="nav-item active">
<a class="nav-link active" href="/wiki/links">Links</a>
</li>
{% else %}
<li class="nav-item">
<a class="nav-link" href="/wiki/links">Links</a>
</li>
{% endif %} -->
<li class="nav-item">
<a class="nav-link" href="/resume" target="_blank">CV</a>
</li>

</ul>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="https://twitter.com/jwnyeholt" target="_blank">
<a class="nav-link" href="https://www.linkedin.com/in/jwnyeholt" target="_blank">
<i class="fab fa-linkedin"></i>
<!-- <span>LinkedIN</span> -->
</a>
Expand Down
30 changes: 30 additions & 0 deletions _includes/post-title.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<li class="post_title">
{% if post.category == 'journal' %}
<i class="fas fa-journal-whills"></i>
{% elsif post.category == 'essay' %}
<i class="fas fa-file-alt"></i>
{% elsif post.category == 'essay' %}
<i class="fas fa-file-alt"></i>
{% elsif post.category == 'hiking' %}
<i class="fas fa-hiking"></i>
{% elsif post.category == 'foraging' %}
<i class="fas fa-leaf"></i>
{% elsif post.category == 'camping' %}
<i class="fas fa-campground"></i>
{% elsif post.category == 'talks' %}
<i class="fas fa-chalkboard"></i>
{% elsif post.category == 'travelogue' %}
<i class="fas fa-passport"></i>
{% elsif post.category == 'roadtrip' %}
<i class="fas fa-car-side"></i>
{% elsif post.category == 'changelog' %}
<i class="fas fa-list-alt"></i>
{% else %}
<i class="fas fa-folder"></i>
{% endif %}
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
-
<small class="text-muted">
<span class="date">{{ post.date | date: "%-d %b, %Y" }}</span>
</small>
</li>
33 changes: 33 additions & 0 deletions _includes/weblog-by-year.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

<br/>
<div class="container" id="weblog">
<div class="row">
<div class="col-sm-12 col-md-9 post_list">
{% include weblog-nav.html %}

{% assign posts = site.posts | where_exp:"post", "post.category != 'changelog'" %}
{% for post in posts %}
{% capture current_year %}{{ post.date | date: "%Y" }}{% endcapture %}
{% if current_year != previous_year %}
{% unless forloop.first %}
</ul>
{% endunless %}
<h2>{{ current_year }}</h2>
<ul class="list-unstyled posts">
{% assign previous_year = current_year %}
{% endif %}
{% include post-title.html %}
{% if forloop.last %}
</ul>
{% endif %}
{% endfor %}
</div>

<div class="col-md-3 col-sm-12">
{% include sidebar.html %}
</div>
</div>
</div>



13 changes: 13 additions & 0 deletions _includes/weblog-nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,19 @@
</a>
{% endif %}
</li>
<li class="nav-item">
{% if current[1] == 'weblog-by-year' %}
<a class="nav-link active" href="/weblog-by-year">
<i class="fas fa-calendar"></i>
By Year
</a>
{% else %}
<a class="nav-link" href="/weblog-by-year">
<i class="fas fa-calendar"></i>
By Year
</a>
{% endif %}
</li>
<li class="nav-item">
{% if current[1] == 'weblog-gallery' %}
<a class="nav-link active" href="/weblog-gallery">
Expand Down
5 changes: 1 addition & 4 deletions _layouts/page-about.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,12 @@ <h1 class="post-title">{{ page.title }}</h1>
</div>
</div>
<div class="row">
<div class="col-sm-12 col-md-9">
<div class="col-sm-12 col-md-12">
<article class="body-content post">
<div class="article-content">
{{ content }}
</div>
</article>
</div>
<div class="col-sm-12 col-md-3">
{% include sidebar-about.html %}
</div>
</div>
</div>
4 changes: 2 additions & 2 deletions _layouts/page-wiki-hub.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
<div class="row">
<div class="col">
<header class="post-header">
<nav class="navbar-dark bg-dark" aria-label="breadcrumb">
<!-- <nav class="navbar-dark bg-dark" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/wiki">Wiki</a></li>
<li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
</ol>
</nav>
</nav> -->
<h1 class="post-title">{{ page.title }}</h1>
</header>
<hr/>
Expand Down
4 changes: 2 additions & 2 deletions _layouts/page-wiki.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
<div class="row">
<div class="col">
<header class="post-header">
<nav class="navbar-dark bg-dark" aria-label="breadcrumb">
<!-- <nav class="navbar-dark bg-dark" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/wiki">Wiki</a></li>
<li class="breadcrumb-item"><a href="/wiki/{{ page.hub }}/">{{ page.hub-label }}</a></li>
<li class="breadcrumb-item active" aria-current="page">{{ page.title }}</li>
</ol>
</nav>
</nav> -->
<h1 class="post-title">{{ page.title }}</h1>
</header>
<hr/>
Expand Down
15 changes: 6 additions & 9 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,14 @@ permalink: /about
---

<p class="lead">
Hello, I'm Jameson Nyeholt, and I live in Portland, Oregon.
Hi, I'm Jameson Nyeholt. I'm a Software Engineer living and working in <a href="https://en.wikipedia.org/wiki/Portland,_Oregon" target="_blank">Portland, Oregon</a>.
</p>

<p class="lead">
I currently work in at <a href="https://www.microsoft.com">Microsoft</a> as a Principal Software Engineer.<br/>
I spend my free time with my family exploring the <a href="/wiki/cascadia/">Pacific Northwest</a>.<br/>
When I'm not doing that, I have some hobbies, which includes maintaining this weblog.
</p>

<!-- <p class="lead">
</p> -->
💼 I currently work at <a target="_blank" href="https://ads.microsoft.com">Microsoft Advertising</a> as a Principal Software Engineer, where I work on Ad Monetization. You can read my CV <a target="_blank" href="/resume">here</a>.
<br/>
🌲 I spend my free time with my family exploring the outdoors of the Pacific Northwest. Camping, hiking, biking, kayaking, foraging, etc.
<br/>
📫 You can reach me via email at <a href="mailto:jnyeholt@hey.com">jnyeholt@hey.com</a>

<img src="/assets/img/family_edited.jpeg" width="100%" height="auto" />

Expand Down
Binary file added assets/img/beach2 copy.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/beach2.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/family_edited copy.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/family_edited.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/img/posts/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2016/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2016/aug/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2016/aug/kauai/1.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/10.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/11.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/12.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/13.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/14.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/15.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/16.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/17.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/18.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/19.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/20.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/21.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/22.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/23.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/24.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/25.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/26.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/27.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/28.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/posts/2016/aug/kauai/29.jpeg
Binary file added assets/img/posts/2016/aug/kauai/3.jpeg
Binary file added assets/img/posts/2016/aug/kauai/30.jpeg
Binary file added assets/img/posts/2016/aug/kauai/31.jpeg
Binary file added assets/img/posts/2016/aug/kauai/32.jpeg
Binary file added assets/img/posts/2016/aug/kauai/33.jpeg
Binary file added assets/img/posts/2016/aug/kauai/34.jpeg
Binary file added assets/img/posts/2016/aug/kauai/35.mov
Binary file not shown.
Binary file added assets/img/posts/2016/aug/kauai/36.jpeg
Binary file added assets/img/posts/2016/aug/kauai/37.jpeg
Binary file added assets/img/posts/2016/aug/kauai/38.jpeg
Binary file added assets/img/posts/2016/aug/kauai/39.jpeg
Binary file added assets/img/posts/2016/aug/kauai/4.jpeg
Binary file added assets/img/posts/2016/aug/kauai/5.jpeg
Binary file added assets/img/posts/2016/aug/kauai/6.jpeg
Binary file added assets/img/posts/2016/aug/kauai/7.jpeg
Binary file added assets/img/posts/2016/aug/kauai/8.jpeg
Binary file added assets/img/posts/2016/aug/kauai/9.jpeg
Binary file not shown.
Binary file added assets/img/posts/2016/feb/lunar-new-year/1.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/10.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/11.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/12.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/13.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/14.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/15.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/16.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/17.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/18.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/19.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/2.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/20.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/21.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/22.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/23.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/24.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/25.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/3.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/4.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/5.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/6.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/7.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/8.jpeg
Binary file added assets/img/posts/2016/feb/lunar-new-year/9.jpeg
Binary file added assets/img/posts/2016/jul/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2016/jul/seattle/1.jpeg
Binary file added assets/img/posts/2016/jul/seattle/10.jpeg
Binary file added assets/img/posts/2016/jul/seattle/11.jpeg
Binary file added assets/img/posts/2016/jul/seattle/12.jpeg
Binary file added assets/img/posts/2016/jul/seattle/13.jpeg
Binary file added assets/img/posts/2016/jul/seattle/2.jpeg
Binary file added assets/img/posts/2016/jul/seattle/3.jpeg
Binary file added assets/img/posts/2016/jul/seattle/4.jpeg
Binary file added assets/img/posts/2016/jul/seattle/5.jpeg
Binary file added assets/img/posts/2016/jul/seattle/6.jpeg
Binary file added assets/img/posts/2016/jul/seattle/7.jpeg
Binary file added assets/img/posts/2016/jul/seattle/8.jpeg
Binary file added assets/img/posts/2016/jul/seattle/9.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/1.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/10.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/11.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/12.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/13.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/14.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/15.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/16.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/17.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/18.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/19.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/2.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/20.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/21.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/22.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/23.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/24.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/25.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/26.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/27.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/28.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/3.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/4.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/5.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/6.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/7.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/8.jpeg
Binary file added assets/img/posts/2016/jul/whalen-island/9.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/1.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/10.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/11.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/12.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/13.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/14.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/15.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/2.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/3.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/4.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/5.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/6.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/7.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/8.jpeg
Binary file added assets/img/posts/2016/jun/timothy-lake/9.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/1.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/10.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/11.mov
Binary file not shown.
Binary file added assets/img/posts/2017/aug/eclipse/2.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/3.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/4.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/5.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/6.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/7.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/8.jpeg
Binary file added assets/img/posts/2017/aug/eclipse/9.jpeg
Binary file added assets/img/posts/2017/july/alaska/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2017/july/alaska/1.jpeg
Binary file added assets/img/posts/2017/july/alaska/10.jpeg
Binary file added assets/img/posts/2017/july/alaska/12.jpeg
Binary file added assets/img/posts/2017/july/alaska/13.jpeg
Binary file added assets/img/posts/2017/july/alaska/14.jpeg
Binary file added assets/img/posts/2017/july/alaska/15.jpeg
Binary file added assets/img/posts/2017/july/alaska/16.jpeg
Binary file added assets/img/posts/2017/july/alaska/19.jpeg
Binary file added assets/img/posts/2017/july/alaska/2.jpeg
Binary file added assets/img/posts/2017/july/alaska/20.jpeg
Binary file added assets/img/posts/2017/july/alaska/21.jpeg
Binary file added assets/img/posts/2017/july/alaska/22.jpeg
Binary file added assets/img/posts/2017/july/alaska/23.jpeg
Binary file added assets/img/posts/2017/july/alaska/24.jpeg
Binary file added assets/img/posts/2017/july/alaska/25.jpeg
Binary file added assets/img/posts/2017/july/alaska/26.jpeg
Binary file added assets/img/posts/2017/july/alaska/27.jpeg
Binary file added assets/img/posts/2017/july/alaska/28.jpeg
Binary file added assets/img/posts/2017/july/alaska/29.jpeg
Binary file added assets/img/posts/2017/july/alaska/3.jpeg
Binary file added assets/img/posts/2017/july/alaska/30.jpeg
Binary file added assets/img/posts/2017/july/alaska/31.jpeg
Binary file added assets/img/posts/2017/july/alaska/32.jpeg
Binary file added assets/img/posts/2017/july/alaska/4.jpeg
Binary file added assets/img/posts/2017/july/alaska/5.jpeg
Binary file added assets/img/posts/2017/july/alaska/6.jpeg
Binary file added assets/img/posts/2017/july/alaska/7.jpeg
Binary file added assets/img/posts/2017/july/alaska/8.jpeg
Binary file added assets/img/posts/2017/july/alaska/9.jpeg
Binary file added assets/img/posts/2017/september/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file added assets/img/posts/2017/september/norway/1.jpeg
Binary file added assets/img/posts/2017/september/norway/10.jpeg
Binary file added assets/img/posts/2017/september/norway/11.jpeg
Binary file added assets/img/posts/2017/september/norway/12.jpeg
Binary file added assets/img/posts/2017/september/norway/13.jpeg
Binary file added assets/img/posts/2017/september/norway/14.jpeg
Binary file added assets/img/posts/2017/september/norway/15.jpeg
Binary file added assets/img/posts/2017/september/norway/16.jpeg
Binary file added assets/img/posts/2017/september/norway/17.jpeg
Binary file added assets/img/posts/2017/september/norway/18.jpeg
Binary file added assets/img/posts/2017/september/norway/19.jpeg
Binary file added assets/img/posts/2017/september/norway/2.jpeg
Binary file added assets/img/posts/2017/september/norway/20.jpeg
Binary file added assets/img/posts/2017/september/norway/21.jpeg
Binary file added assets/img/posts/2017/september/norway/22.jpeg
Binary file added assets/img/posts/2017/september/norway/23.jpeg
Binary file added assets/img/posts/2017/september/norway/24.jpeg
Binary file added assets/img/posts/2017/september/norway/25.jpeg
Binary file added assets/img/posts/2017/september/norway/26.jpeg
Binary file added assets/img/posts/2017/september/norway/27.jpeg
Binary file added assets/img/posts/2017/september/norway/28.jpeg
Binary file added assets/img/posts/2017/september/norway/29.jpeg
Binary file added assets/img/posts/2017/september/norway/3.jpeg
Binary file added assets/img/posts/2017/september/norway/30.jpeg
Binary file added assets/img/posts/2017/september/norway/31.jpeg
Binary file added assets/img/posts/2017/september/norway/32.jpeg
Binary file added assets/img/posts/2017/september/norway/33.jpeg
Binary file added assets/img/posts/2017/september/norway/34.jpeg
Binary file added assets/img/posts/2017/september/norway/35.jpeg
Binary file added assets/img/posts/2017/september/norway/36.jpeg
Binary file added assets/img/posts/2017/september/norway/37.jpeg
Binary file added assets/img/posts/2017/september/norway/38.mov
Binary file not shown.
Binary file added assets/img/posts/2017/september/norway/39.mov
Binary file not shown.
Binary file added assets/img/posts/2017/september/norway/4.jpeg
Binary file added assets/img/posts/2017/september/norway/40.jpeg
Binary file added assets/img/posts/2017/september/norway/41.mov
Binary file not shown.
Binary file added assets/img/posts/2017/september/norway/42.jpeg
Binary file added assets/img/posts/2017/september/norway/43.jpeg
Binary file added assets/img/posts/2017/september/norway/44.jpeg
Binary file added assets/img/posts/2017/september/norway/45.jpeg
Binary file added assets/img/posts/2017/september/norway/46.jpeg
Binary file added assets/img/posts/2017/september/norway/47.jpeg
Binary file added assets/img/posts/2017/september/norway/48.jpeg
Binary file added assets/img/posts/2017/september/norway/49.jpeg
Binary file added assets/img/posts/2017/september/norway/5.jpeg
Binary file added assets/img/posts/2017/september/norway/50.jpeg
Binary file added assets/img/posts/2017/september/norway/51.jpeg
Binary file added assets/img/posts/2017/september/norway/52.jpeg
Binary file added assets/img/posts/2017/september/norway/53.jpeg
Binary file added assets/img/posts/2017/september/norway/54.jpeg
Binary file added assets/img/posts/2017/september/norway/55.mov
Binary file not shown.
Binary file added assets/img/posts/2017/september/norway/56.jpeg
Binary file added assets/img/posts/2017/september/norway/57.jpeg
Binary file added assets/img/posts/2017/september/norway/58.jpeg
Binary file added assets/img/posts/2017/september/norway/59.jpeg
Binary file added assets/img/posts/2017/september/norway/6.jpeg
Binary file added assets/img/posts/2017/september/norway/60.jpeg
Binary file added assets/img/posts/2017/september/norway/61.jpeg
Binary file added assets/img/posts/2017/september/norway/62.jpeg
Binary file added assets/img/posts/2017/september/norway/63.jpeg
Binary file added assets/img/posts/2017/september/norway/7.jpeg
Binary file added assets/img/posts/2017/september/norway/8.jpeg
Binary file added assets/img/posts/2017/september/norway/9.jpeg
Binary file modified assets/img/posts/2018/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2018/aug/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2018/may/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2018/may/central-oregon/1.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/10.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/11.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/12.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/13.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/14.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/15.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/16.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/17.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/18.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/19.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/2.mov
Binary file not shown.
Binary file added assets/img/posts/2018/may/central-oregon/20.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/21.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/22.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/23.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/25.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/26.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/27.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/3.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/4.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/5.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/6.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/7.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/8.jpeg
Binary file added assets/img/posts/2018/may/central-oregon/9.jpeg
Binary file added assets/img/posts/2018/nov/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2018/nov/kauai/.DS_Store
Binary file not shown.
Binary file added assets/img/posts/2018/nov/kauai/1.jpeg
Binary file added assets/img/posts/2018/nov/kauai/10.jpeg
Binary file added assets/img/posts/2018/nov/kauai/11.jpeg
Binary file added assets/img/posts/2018/nov/kauai/12.jpeg
Binary file added assets/img/posts/2018/nov/kauai/13.jpeg
Binary file added assets/img/posts/2018/nov/kauai/14.jpeg
Binary file added assets/img/posts/2018/nov/kauai/15.jpeg
Binary file added assets/img/posts/2018/nov/kauai/16.jpeg
Binary file added assets/img/posts/2018/nov/kauai/17.jpeg
Binary file added assets/img/posts/2018/nov/kauai/18.jpeg
Loading

0 comments on commit 45e6bd3

Please sign in to comment.