diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 00000000..53bdefe1
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "themes/Bleach"]
+ path = themes/Bleach
+ url = https://github.com/digivend/bleach-theme
diff --git a/__init__.py b/__init__.py
deleted file mode 100644
index fd7e25d7..00000000
--- a/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# Plugin modules go here.
\ No newline at end of file
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644
index 00000000..00e77bd7
--- /dev/null
+++ b/archetypes/default.md
@@ -0,0 +1,6 @@
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+draft: true
+---
+
diff --git a/conf.py b/conf.py
deleted file mode 100644
index dc88d7b4..00000000
--- a/conf.py
+++ /dev/null
@@ -1,121 +0,0 @@
-from __future__ import unicode_literals
-import time
-BLOG_AUTHOR = "Donald Harper"
-BLOG_TITLE = "Donald Harper Photographs"
-SITE_URL = "http://www.donaldharper.com/"
-#BASE_URL = "http://localhost:8000/"
-BASE_URL = "https://www.donaldharper.com/"
-BLOG_EMAIL = "don@donaldharper.com"
-BLOG_DESCRIPTION = "Photos, sometimes daily, from Donald Harper"
-DEFAULT_LANG = "en"
-TRANSLATIONS = {
- DEFAULT_LANG: "",
-}
-TRANSLATIONS_PATTERN = "{path}.{lang}.{ext}"
-NAVIGATION_LINKS = {
- DEFAULT_LANG: (
- ('/', 'Home'),
- ('/stories/about.html', 'About me'),
- ('https://www.duckland.org', 'My Personal and Tech Blog'),
- #(
- #(
- #('http://www.donaldharper.com', 'My Photo Blog'),
- #('http://p365.donaldharper.com', 'My Attempt at a Project 365'),
- #('http://www.duckland.org', 'My Personal and Tech Blog'),
- #),
- #'My Sites'
- #),
- ('https://twitter.com/duckunix', 'My Twitter'),
- ('https://flickr.com/photos/duckunix', 'My Flickr'),
- #(
- #(
- #('https://twitter.com/duckunix', 'My Twitter'),
- #('http://www.linkedin.com/in/donaldharper/', 'My LinkedIN'),
- #),
- #'Social Sites'
- #),
- ("/archive.html", "Archive"),
- ("/categories/", "Tags"),
- ("/stories/privacy.html", "Privacy/GDPR"),
- ('/rss.xml', 'RSS'),
- ),
-}
-#THEME = "hyde"
-#GLOBAL_CONTEXT = {'HACK_VARIANT': 'dark'}
-GLOBAL_CONTEXT_FILLER = []
-THEME = 'canterville'
-LOGO_URL = 'https://getnikola.com/assets/img/logo.svg'
-GLOBAL_CONTEXT = {
- 'TWITTER_URL': 'https://twitter.com/duckunix',
- 'FLICKR_URL': 'https://www.flickr.com/photos/duckunix/',
- 'BANNER_URL': '/assets/img/road.jpg'
- #'BANNER_URL': '/assets/img/silk-road.jpg'
-}
-TIMEZONE = "America/Chicago"
-#DATE_FORMAT = "YYYY-MM-dd"
-#DATE_FORMAT = 'short'
-#JS_DATE_FORMAT = 'YYYY-MM-dd HH:mm'
-DATE_FANCINESS = 0
-POSTS = (
- ("posts/*.md", "posts", "post.tmpl"),
- ("posts/*.rst", "posts", "post.tmpl"),
- ("posts/*.html", "posts", "post.tmpl"),
- ("posts/*.wp", "posts", "post.tmpl"),
-)
-PAGES = (
- ("stories/*.md", "stories", "story.tmpl"),
- ("stories/*.rst", "stories", "story.tmpl"),
- ("stories/*.txt", "stories", "story.tmpl"),
-)
-COMPILERS = {
- "markdown": ('.md', '.mdown', '.markdown'),
- "rest": ('.rst', '.txt'),
- "html": ('.html', '.htm', '.wp'),
-}
-SHOW_BLOG_TITLE = True
-FEED_LENGTH = 10
-REDIRECTIONS = []
-DEPLOY_COMMANDS = {
- 'default': [
- "nikola build",
- "nikola check -f",
- "chmod -R a+rX output/",
- "/usr/bin/rsync -a --delete -e 'ssh -x -l duck' output/ www.donaldharper.com:/home/duck/httpd/donaldharper.com/nikola",
- #"nikola check -fl",
- #"/usr/bin/rsync -a --delete -e 'ssh -x -i /home/duckunix/.ssh/http -l don' output/ don@web.duckland.org:/srv/http/work/blog/output",
- #"/usr/bin/rsync -a --delete -e 'ssh -x -i /home/duckunix/.ssh/http -l duck' output/ duck@www.duckland.org:/home/duck/httpd/donaldharper.com/nikola",
- ]
-}
-INDEX_READ_MORE_LINK = '
{read_more}...
'
-FEED_READ_MORE_LINK = '{read_more}... ({min_remaining_read})
'
-LICENSE = ""
-CONTENT_FOOTER = 'Contents © {date} {author} {license}'
-CONTENT_FOOTER_FORMATS = {
- DEFAULT_LANG: (
- (),
- {
- "email": BLOG_EMAIL,
- "author": BLOG_AUTHOR,
- "date": time.gmtime().tm_year,
- "license": LICENSE
- }
- )
-}
-COMMENT_SYSTEM = ""
-COMMENT_SYSTEM_ID = ""
-FUTURE_IS_NOW = False
-DEPLOY_DRAFTS = False
-SCHEDULE_ALL = True
-SHOW_SOURCELINK = False
-COPY_SOURCES = False
-INDEX_DISPLAY_POST_COUNT = 3
-FILE_METADATA_UNSLUGIFY_TITLES = True
-LOGGING_HANDLERS = {
- 'stderr': {'loglevel': 'INFO', 'bubble': True},
- 'smtp': { 'from_addr': 'www.donaldharper.com@duckland.org', 'recipients': ('duck@duckland.org'), 'server_addr': ('127.0.0.1',25), 'secure': (), 'level': 'WARNING', 'bubble': False
- }
-}
-CREATE_MONTHLY_ARCHIVE = True
-WRITE_TAG_CLOUD = False
-CATEGORY_PAGES_ARE_INDEXES = True
-INDEX_DISPLAY_POST_COUNT = 10
diff --git a/config.toml b/config.toml
new file mode 100644
index 00000000..57443613
--- /dev/null
+++ b/config.toml
@@ -0,0 +1,38 @@
+baseURL = "https://www.donaldharper.com/"
+languageCode = "en-us"
+title = "Donald Harper Photographs"
+paginate = 5
+Copyright = "All Rights Reserved - 2006 -"
+canonifyurls = true
+theme = "Bleach"
+
+[author]
+ name = "don"
+
+[params]
+ paginate = 5
+ copyright = "All Rights Reserved - 2006 -"
+ email = "don@donaldharper.com"
+ description = "Donald Harper Photographs"
+ cover = "/images/user.jpg"
+ author = "don"
+ authorlocation = ""
+ authorwebsite = "https://www.duckland.org"
+ logo = "/images/user.png"
+ # Optional RSS-Link, if not provided it defaults to the standard index.xml
+ RSSLink = "rss.xml"
+ githubName = "duckunix"
+ twitterName = "duckunix"
+ # set true if you are not proud of using Hugo (true will hide the footer note "Proudly published with HUGO.....")
+ hideHUGOSupport = false
+ showtoc = false
+[params.footer]
+ company = "Donald Harper Photographs"
+
+[outputs]
+ home = [ "RSS", "HTML"]
+
+[outputFormats]
+ [outputFormats.RSS]
+ mediatype = "application/rss"
+ path = "feed"
diff --git a/content/images/logo.jpg b/content/images/logo.jpg
new file mode 100644
index 00000000..e69de29b
diff --git a/content/images/logo.png b/content/images/logo.png
new file mode 100644
index 00000000..e69de29b
diff --git a/content/images/user.jpg b/content/images/user.jpg
new file mode 100644
index 00000000..e69de29b
diff --git a/content/images/user.png b/content/images/user.png
new file mode 100644
index 00000000..e69de29b
diff --git a/content/posts/2007/01/31/welcome.md b/content/posts/2007/01/31/welcome.md
new file mode 100644
index 00000000..c2078e4c
--- /dev/null
+++ b/content/posts/2007/01/31/welcome.md
@@ -0,0 +1,11 @@
++++
+date = "2007-01-31T00:31:52-07:00"
+title = "Welcome"
+image = ""
++++
+
+
+Welcome...I hope to be posting some picture here. I also will need to
+work on the look and feel of the site. Hope you like it. Enjoy. I am
+sorry if you want to leave a comment on this site, but I do not want to
+deal with them.
diff --git a/content/posts/2007/02/01/pretty-sunset.md b/content/posts/2007/02/01/pretty-sunset.md
new file mode 100644
index 00000000..f2b4c4bb
--- /dev/null
+++ b/content/posts/2007/02/01/pretty-sunset.md
@@ -0,0 +1,10 @@
++++
+date = "2007-02-01T01:11:50-07:00"
+title = "Pretty Sunset"
+image = "http://farm1.static.flickr.com/130/365222193_c827cca803.jpg"
++++
+
+
+Taken with the camera in the phone:
+
+peace out.
diff --git a/content/posts/2007/02/03/devil-toy.md b/content/posts/2007/02/03/devil-toy.md
new file mode 100644
index 00000000..1cf4aa79
--- /dev/null
+++ b/content/posts/2007/02/03/devil-toy.md
@@ -0,0 +1,8 @@
++++
+date = "2007-02-03T01:35:24-07:00"
+title = "devil toy?"
+image = "http://www.flickr.com/photos/duckunix/378040420"
++++
+
+
+
diff --git a/content/posts/2007/02/03/expermiment-with-gimp.md b/content/posts/2007/02/03/expermiment-with-gimp.md
new file mode 100644
index 00000000..f6dee2be
--- /dev/null
+++ b/content/posts/2007/02/03/expermiment-with-gimp.md
@@ -0,0 +1,8 @@
++++
+date = "2007-02-03T01:33:10-07:00"
+title = "Expermiment with gimp"
+image = "http://farm1.static.flickr.com/177/378040425_b0c70887d8.jpg"
++++
+
+
+
diff --git a/content/posts/2007/02/11/study-in-repetition.md b/content/posts/2007/02/11/study-in-repetition.md
new file mode 100644
index 00000000..9d8bbceb
--- /dev/null
+++ b/content/posts/2007/02/11/study-in-repetition.md
@@ -0,0 +1,8 @@
++++
+date = "2007-02-11T16:55:49-07:00"
+title = "study in repetition"
+image = "/wp-content/uploads/2007/02/P2069947.JPG"
++++
+
+
+
diff --git a/content/posts/2007/02/15/color-or-the-lack-of.md b/content/posts/2007/02/15/color-or-the-lack-of.md
new file mode 100644
index 00000000..e334b960
--- /dev/null
+++ b/content/posts/2007/02/15/color-or-the-lack-of.md
@@ -0,0 +1,8 @@
++++
+date = "2007-02-15T11:32:18-07:00"
+title = "color, or the lack of..."
+image = "http://picasaweb.google.com/duckunix/Test/photo#5031737538989686706"
++++
+
+
+
diff --git a/content/posts/2007/02/23/birds.md b/content/posts/2007/02/23/birds.md
new file mode 100644
index 00000000..8cde6a92
--- /dev/null
+++ b/content/posts/2007/02/23/birds.md
@@ -0,0 +1,12 @@
++++
+date = "2007-02-23T01:31:49-07:00"
+title = "Birds!"
+image = "http://picasaweb.google.com/duckunix/Birds/photo#5034596556984713266"
++++
+
+
+There are some really cool birds near the house. Here is a visitor who
+was only about 1.5 miles from the house...nice to know they are doing
+well enough to be caught in suburban-hell....
+
+
diff --git a/content/posts/2007/02/25 b/content/posts/2007/02/25
new file mode 100644
index 00000000..d171bdb6
--- /dev/null
+++ b/content/posts/2007/02/25
@@ -0,0 +1,8 @@
++++
+date = "2007-02-05T00:19:21-07:00"
+title = "Un-devil toy"
+image = "/wp-content/uploads/2007/02/devil-toy-1.JPG"
++++
+
+
+
diff --git a/content/posts/2007/03/15/storm-clouds.md b/content/posts/2007/03/15/storm-clouds.md
new file mode 100644
index 00000000..9c5c12a4
--- /dev/null
+++ b/content/posts/2007/03/15/storm-clouds.md
@@ -0,0 +1,10 @@
++++
+date = "2007-03-15T00:33:35-07:00"
+title = "Storm Clouds"
+image = "/wp-content/uploads/2007/03/P31405001.jpg"
++++
+
+
+A storm was blowing through tonight.....
+
+
diff --git a/content/posts/2007/03/21/new-files.md b/content/posts/2007/03/21/new-files.md
new file mode 100644
index 00000000..38d14337
--- /dev/null
+++ b/content/posts/2007/03/21/new-files.md
@@ -0,0 +1,9 @@
++++
+date = "2007-03-21T18:47:23-07:00"
+title = "New Files."
++++
+
+
+So, I have been slow putting files up because the three sites I have photos up on (Flickr, Zooomr, and Picasa, links to the right) have not really had a good Linux client. Until now. Enter ! It talks to Flickr and Zooomr, and I can upload the exact same thing to both, with the exact same tags and public/private settings. About as future proof as I can get. So, my pictures now live on my laptop hard drive, my server hard drive, and my removable hard drive. And soon, they will also live on Flickr and Zooomr. Once Picasa fixes its lack of Linux love, I will probably start using it more, although it will cost some $$ there.
+
+**Edit 2018-12-26** Yeah, me and words. zooomr is gone, and so is Picasa. Well, Picasa moved to [Google Photos](https://photos.google.com) a while back. And the link to jUploader points to Source Forge. 11 years is a long time. Some pictures are broken, and I may or may not be able to fix the links.
diff --git a/content/posts/2007/03/21/texas-state-flower.md b/content/posts/2007/03/21/texas-state-flower.md
new file mode 100644
index 00000000..230dc211
--- /dev/null
+++ b/content/posts/2007/03/21/texas-state-flower.md
@@ -0,0 +1,12 @@
++++
+date = "2007-03-21T23:21:32-07:00"
+title = "Texas State Flower"
+image = "http://static.zooomr.com/images/842911_1807f1959a_m.jpg"
++++
+
+
+
+
+
+
+
diff --git a/content/posts/2007/03/22/sunflowers.md b/content/posts/2007/03/22/sunflowers.md
new file mode 100644
index 00000000..127e3bc2
--- /dev/null
+++ b/content/posts/2007/03/22/sunflowers.md
@@ -0,0 +1,9 @@
++++
+date = "2007-03-22T23:19:26-07:00"
+title = "Sunflowers"
+image = "http://www.flickr.com/photos/duckunix/337721819/"
++++
+
+
+\
+Shot at Dewberry Farms, west of town.
diff --git a/content/posts/2007/03/23/mutli-colored-sunflowers.md b/content/posts/2007/03/23/mutli-colored-sunflowers.md
new file mode 100644
index 00000000..25e953df
--- /dev/null
+++ b/content/posts/2007/03/23/mutli-colored-sunflowers.md
@@ -0,0 +1,9 @@
++++
+date = "2007-03-23T10:17:03-07:00"
+title = "Mutli-colored Sunflowers"
+image = "http://www.flickr.com/photos/duckunix/431378513/"
++++
+
+
+\
+More from Dewberry Farms.
diff --git a/content/posts/2007/03/24/reaching-for-the-sun.md b/content/posts/2007/03/24/reaching-for-the-sun.md
new file mode 100644
index 00000000..d1a0e089
--- /dev/null
+++ b/content/posts/2007/03/24/reaching-for-the-sun.md
@@ -0,0 +1,9 @@
++++
+date = "2007-03-24T10:01:16-07:00"
+title = "Reaching for the sun"
+image = "http://www.flickr.com/photos/duckunix/431389541/"
++++
+
+
+\
+More from Dewberry Farm.
diff --git a/content/posts/2007/03/25/big-and-orange.md b/content/posts/2007/03/25/big-and-orange.md
new file mode 100644
index 00000000..d1f79155
--- /dev/null
+++ b/content/posts/2007/03/25/big-and-orange.md
@@ -0,0 +1,9 @@
++++
+date = "2007-03-25T23:18:49-07:00"
+title = "Big and Orange"
+image = "http://www.flickr.com/photos/duckunix/431380749/"
++++
+
+
+\
+More from Dewberry Farms
diff --git a/content/posts/2007/03/26/flowers-and-sky.md b/content/posts/2007/03/26/flowers-and-sky.md
new file mode 100644
index 00000000..389eab88
--- /dev/null
+++ b/content/posts/2007/03/26/flowers-and-sky.md
@@ -0,0 +1,9 @@
++++
+date = "2007-03-26T20:12:09-07:00"
+title = "Flowers and Sky"
+image = "http://www.flickr.com/photos/duckunix/431391898/"
++++
+
+
+\
+Final shot from Dewberry farms for now.
diff --git a/content/posts/2007/03/28/sunset.md b/content/posts/2007/03/28/sunset.md
new file mode 100644
index 00000000..6ca95e25
--- /dev/null
+++ b/content/posts/2007/03/28/sunset.md
@@ -0,0 +1,9 @@
++++
+date = "2007-03-28T05:52:56-07:00"
+title = "Sunset"
+image = "http://www.flickr.com/photos/duckunix/337713741/"
++++
+
+
+\
+
diff --git a/content/posts/2007/03/29/ray-of-lights.md b/content/posts/2007/03/29/ray-of-lights.md
new file mode 100644
index 00000000..a557c3a7
--- /dev/null
+++ b/content/posts/2007/03/29/ray-of-lights.md
@@ -0,0 +1,9 @@
++++
+date = "2007-03-29T07:45:53-07:00"
+title = "Ray of Lights"
+image = "http://www.flickr.com/photos/duckunix/435895300/"
++++
+
+
+\
+This was taken out of the window of my car as I was driving one evening.
diff --git a/content/posts/2007/03/30/windmill.md b/content/posts/2007/03/30/windmill.md
new file mode 100644
index 00000000..3306ca3c
--- /dev/null
+++ b/content/posts/2007/03/30/windmill.md
@@ -0,0 +1,9 @@
++++
+date = "2007-03-30T08:00:40-07:00"
+title = "Windmill"
+image = "http://www.flickr.com/photos/duckunix/435972144/"
++++
+
+
+\
+
diff --git a/content/posts/2007/03/31/old-car.md b/content/posts/2007/03/31/old-car.md
new file mode 100644
index 00000000..35614c0b
--- /dev/null
+++ b/content/posts/2007/03/31/old-car.md
@@ -0,0 +1,11 @@
++++
+date = "2007-03-31T18:50:47-07:00"
+title = "Old car"
+image = "http://www.flickr.com/photos/duckunix/440373693/"
++++
+
+
+\
+I found this when I was looking for an old building to shot. I only took
+a few shots because it was on the side of a very busy road, and I did
+not want to take too many chances.
diff --git a/content/posts/2007/04/01/i-am-not-a-rambler-no-more.md b/content/posts/2007/04/01/i-am-not-a-rambler-no-more.md
new file mode 100644
index 00000000..3741b626
--- /dev/null
+++ b/content/posts/2007/04/01/i-am-not-a-rambler-no-more.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-01T20:52:19-07:00"
+title = "I am not a Rambler no more"
+image = "http://www.flickr.com/photos/duckunix/440374035/"
++++
+
+
+\
+Detail on the grill, and the grass.
diff --git a/content/posts/2007/04/02/no-more-good-times.md b/content/posts/2007/04/02/no-more-good-times.md
new file mode 100644
index 00000000..aa8bfa09
--- /dev/null
+++ b/content/posts/2007/04/02/no-more-good-times.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-02T10:01:25-07:00"
+title = "No more good times"
+image = "http://www.flickr.com/photos/duckunix/440374411/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/03/lizard-2.md b/content/posts/2007/04/03/lizard-2.md
new file mode 100644
index 00000000..5d3cfdee
--- /dev/null
+++ b/content/posts/2007/04/03/lizard-2.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-03T05:57:10-07:00"
+title = "Lizard!"
+image = "http://www.flickr.com/photos/duckunix/444815275/"
++++
+
+
+\
+He was checking me out while I was checking him out.
diff --git a/content/posts/2007/04/04/lizard.md b/content/posts/2007/04/04/lizard.md
new file mode 100644
index 00000000..ce99e902
--- /dev/null
+++ b/content/posts/2007/04/04/lizard.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-04T05:57:06-07:00"
+title = "Lizard"
+image = "http://www.flickr.com/photos/duckunix/444815019/"
++++
+
+
+\
+I do not think he liked me.
diff --git a/content/posts/2007/04/05/don-juan.md b/content/posts/2007/04/05/don-juan.md
new file mode 100644
index 00000000..1a838614
--- /dev/null
+++ b/content/posts/2007/04/05/don-juan.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-05T05:57:17-07:00"
+title = "Don Juan"
+image = "http://www.flickr.com/photos/duckunix/444809796/"
++++
+
+
+\
+This is the rose on the front of the house...more to come
diff --git a/content/posts/2007/04/06/sunflower.md b/content/posts/2007/04/06/sunflower.md
new file mode 100644
index 00000000..0dd69a35
--- /dev/null
+++ b/content/posts/2007/04/06/sunflower.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-06T06:03:09-07:00"
+title = "sunflower"
+image = "http://www.flickr.com/photos/duckunix/435938240/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/07/purple-flower.md b/content/posts/2007/04/07/purple-flower.md
new file mode 100644
index 00000000..5cbea25c
--- /dev/null
+++ b/content/posts/2007/04/07/purple-flower.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-07T13:04:02-07:00"
+title = "purple flower"
+image = "http://www.flickr.com/photos/duckunix/435933066/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/08/two-purple-flowers.md b/content/posts/2007/04/08/two-purple-flowers.md
new file mode 100644
index 00000000..621f825f
--- /dev/null
+++ b/content/posts/2007/04/08/two-purple-flowers.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-08T13:04:58-07:00"
+title = "two purple flowers"
+image = "http://www.flickr.com/photos/duckunix/435934937/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/09/paper-whites.md b/content/posts/2007/04/09/paper-whites.md
new file mode 100644
index 00000000..7a2c097c
--- /dev/null
+++ b/content/posts/2007/04/09/paper-whites.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-09T13:05:44-07:00"
+title = "paper-whites"
+image = "http://www.flickr.com/photos/duckunix/430634957/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/10/5-flowers.md b/content/posts/2007/04/10/5-flowers.md
new file mode 100644
index 00000000..1b633039
--- /dev/null
+++ b/content/posts/2007/04/10/5-flowers.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-10T13:06:17-07:00"
+title = "5 flowers"
+image = "http://www.flickr.com/photos/duckunix/429719834/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/11/rose-bud-1.md b/content/posts/2007/04/11/rose-bud-1.md
new file mode 100644
index 00000000..3938cab6
--- /dev/null
+++ b/content/posts/2007/04/11/rose-bud-1.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-11T13:07:04-07:00"
+title = "Rose Bud 1"
+image = "http://www.flickr.com/photos/duckunix/59322292/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/12/pansy.md b/content/posts/2007/04/12/pansy.md
new file mode 100644
index 00000000..3907348c
--- /dev/null
+++ b/content/posts/2007/04/12/pansy.md
@@ -0,0 +1,11 @@
++++
+date = "2007-04-12T06:17:48-07:00"
+title = "Pansy"
+image = "http://www.flickr.com/photos/duckunix/448463590/"
++++
+
+
+\
+This is from a walk around the property last week. The flowers were in
+full bloom, and I wanted to see what I could get. This was taken with my
+Sigma 55-200/4f.
diff --git a/content/posts/2007/04/13/new-growthand-a-visitor.md b/content/posts/2007/04/13/new-growthand-a-visitor.md
new file mode 100644
index 00000000..24bd5049
--- /dev/null
+++ b/content/posts/2007/04/13/new-growthand-a-visitor.md
@@ -0,0 +1,10 @@
++++
+date = "2007-04-13T06:19:24-07:00"
+title = "New growth...and a visitor"
+image = "http://www.flickr.com/photos/duckunix/448463842/"
++++
+
+
+\
+The bug was a nice addition to shot. This was taken with my Sigma
+55-200/4f.
diff --git a/content/posts/2007/04/14/volunteers.md b/content/posts/2007/04/14/volunteers.md
new file mode 100644
index 00000000..ee204708
--- /dev/null
+++ b/content/posts/2007/04/14/volunteers.md
@@ -0,0 +1,10 @@
++++
+date = "2007-04-14T06:20:40-07:00"
+title = "volunteers"
+image = "http://www.flickr.com/photos/duckunix/448467597/"
++++
+
+
+\
+These blue bonnets are in the middle of my front lawn. They seeded from
+the plants we had last year. This was taken with my Sigma 55-200/4f.
diff --git a/content/posts/2007/04/15/aurora.md b/content/posts/2007/04/15/aurora.md
new file mode 100644
index 00000000..b166566c
--- /dev/null
+++ b/content/posts/2007/04/15/aurora.md
@@ -0,0 +1,10 @@
++++
+date = "2007-04-15T06:21:42-07:00"
+title = "Aurora"
+image = "http://www.flickr.com/photos/duckunix/448467843/"
++++
+
+
+\
+This is one of the three beautiful flowers from this bulb. This was
+taken with my Sigma 55-200/4f.
diff --git a/content/posts/2007/04/16/blue-iris.md b/content/posts/2007/04/16/blue-iris.md
new file mode 100644
index 00000000..273c55b2
--- /dev/null
+++ b/content/posts/2007/04/16/blue-iris.md
@@ -0,0 +1,10 @@
++++
+date = "2007-04-16T06:23:00-07:00"
+title = "Blue Iris"
+image = "http://www.flickr.com/photos/duckunix/448468137/"
++++
+
+
+\
+This lovely is coming up by our deck. It also has some yellow and pink
+friends. This was taken with my Sigma 55-200/4f.
diff --git a/content/posts/2007/04/18/wild-oninon.md b/content/posts/2007/04/18/wild-oninon.md
new file mode 100644
index 00000000..57960d9d
--- /dev/null
+++ b/content/posts/2007/04/18/wild-oninon.md
@@ -0,0 +1,10 @@
++++
+date = "2007-04-18T06:26:27-07:00"
+title = "Wild Oninon"
+image = "http://www.flickr.com/photos/duckunix/448469459/"
++++
+
+
+\
+I think they have very nice flowers, when you can see them. This was
+taken with my Sigma 55-200/4f.
diff --git a/content/posts/2007/04/19/yellow-flowers.md b/content/posts/2007/04/19/yellow-flowers.md
new file mode 100644
index 00000000..d274a81c
--- /dev/null
+++ b/content/posts/2007/04/19/yellow-flowers.md
@@ -0,0 +1,10 @@
++++
+date = "2007-04-19T06:27:29-07:00"
+title = "Yellow flowers"
+image = "http://www.flickr.com/photos/duckunix/448466112/"
++++
+
+
+\
+I did no color correction on this one...this is the real color. This was
+taken with my Sigma 55-200/4f.
diff --git a/content/posts/2007/04/20/last-bloom.md b/content/posts/2007/04/20/last-bloom.md
new file mode 100644
index 00000000..c3f2b062
--- /dev/null
+++ b/content/posts/2007/04/20/last-bloom.md
@@ -0,0 +1,10 @@
++++
+date = "2007-04-20T06:28:44-07:00"
+title = "Last bloom"
+image = "http://www.flickr.com/photos/duckunix/448466318/"
++++
+
+
+\
+This is the last is this series. I forget which these are. Wild
+Hawthorn, I think...This was taken with my Sigma 55-200/4f.
diff --git a/content/posts/2007/04/21/new-beginings.md b/content/posts/2007/04/21/new-beginings.md
new file mode 100644
index 00000000..e5c17be1
--- /dev/null
+++ b/content/posts/2007/04/21/new-beginings.md
@@ -0,0 +1,8 @@
++++
+date = "2007-04-17T06:24:28-07:00"
+title = "New beginnings"
+image = "http://www.flickr.com/photos/duckunix/448468531/"
++++
+
+
+ This will be a yellow iris, growing on the other side of the deck from . This was taken with my Sigma 55-200/4f.
diff --git a/content/posts/2007/04/21/pretty-windows.md b/content/posts/2007/04/21/pretty-windows.md
new file mode 100644
index 00000000..5394dfa4
--- /dev/null
+++ b/content/posts/2007/04/21/pretty-windows.md
@@ -0,0 +1,10 @@
++++
+date = "2007-04-21T08:06:11-07:00"
+title = "Pretty Windows"
+image = "http://www.flickr.com/photos/duckunix/440376511/"
++++
+
+
+\
+This is the now Chase Bank lobby in downtown Houston. I do not remember
+all the banks names, but it is one of the older bank lobbies in Houston.
diff --git a/content/posts/2007/04/22/gilded-ceiling.md b/content/posts/2007/04/22/gilded-ceiling.md
new file mode 100644
index 00000000..f50d4893
--- /dev/null
+++ b/content/posts/2007/04/22/gilded-ceiling.md
@@ -0,0 +1,10 @@
++++
+date = "2007-04-22T08:08:54-07:00"
+title = "Gilded ceiling."
+image = "http://www.flickr.com/photos/duckunix/440376209/"
++++
+
+
+\
+This is the now Chase Bank lobby in downtown Houston. I do not remember
+all the banks names, but it is one of the older bank lobbies in Houston.
diff --git a/content/posts/2007/04/23/beach-view.md b/content/posts/2007/04/23/beach-view.md
new file mode 100644
index 00000000..b7a95d1f
--- /dev/null
+++ b/content/posts/2007/04/23/beach-view.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-23T08:10:24-07:00"
+title = "Beach view"
+image = "http://www.flickr.com/photos/duckunix/75283426/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/24/rock-out-crop.md b/content/posts/2007/04/24/rock-out-crop.md
new file mode 100644
index 00000000..5130ce71
--- /dev/null
+++ b/content/posts/2007/04/24/rock-out-crop.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-24T08:11:07-07:00"
+title = "Rock out crop"
+image = "http://www.flickr.com/photos/duckunix/75282996/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/25/long-rocky-beach-view.md b/content/posts/2007/04/25/long-rocky-beach-view.md
new file mode 100644
index 00000000..c4d76fb0
--- /dev/null
+++ b/content/posts/2007/04/25/long-rocky-beach-view.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-25T08:11:51-07:00"
+title = "Long Rocky beach view"
+image = "http://www.flickr.com/photos/duckunix/75283105/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/26/don-juan-revisited.md b/content/posts/2007/04/26/don-juan-revisited.md
new file mode 100644
index 00000000..716544d3
--- /dev/null
+++ b/content/posts/2007/04/26/don-juan-revisited.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-26T08:12:53-07:00"
+title = "Don Juan, revisited"
+image = "http://www.flickr.com/photos/duckunix/445647148/"
++++
+
+
+\
+So far, this has been the biggest hit on my Flickr account.
diff --git a/content/posts/2007/04/27/mutablis-reaching.md b/content/posts/2007/04/27/mutablis-reaching.md
new file mode 100644
index 00000000..864178de
--- /dev/null
+++ b/content/posts/2007/04/27/mutablis-reaching.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-27T08:13:37-07:00"
+title = "Mutablis reaching"
+image = "http://www.flickr.com/photos/duckunix/435817195/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/28/single-rose.md b/content/posts/2007/04/28/single-rose.md
new file mode 100644
index 00000000..32b664c2
--- /dev/null
+++ b/content/posts/2007/04/28/single-rose.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-28T08:14:25-07:00"
+title = "Single rose"
+image = "http://www.flickr.com/photos/duckunix/445647422/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/29/two-roses.md b/content/posts/2007/04/29/two-roses.md
new file mode 100644
index 00000000..e0998528
--- /dev/null
+++ b/content/posts/2007/04/29/two-roses.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-29T08:14:58-07:00"
+title = "Two roses"
+image = "http://www.flickr.com/photos/duckunix/445647042/"
++++
+
+
+\
+
diff --git a/content/posts/2007/04/30/cluster-blooms.md b/content/posts/2007/04/30/cluster-blooms.md
new file mode 100644
index 00000000..5eae4866
--- /dev/null
+++ b/content/posts/2007/04/30/cluster-blooms.md
@@ -0,0 +1,9 @@
++++
+date = "2007-04-30T08:15:43-07:00"
+title = "Cluster blooms"
+image = "http://www.flickr.com/photos/duckunix/445650593/"
++++
+
+
+\
+
diff --git a/content/posts/2007/05/01/mutablis-and-sky.md b/content/posts/2007/05/01/mutablis-and-sky.md
new file mode 100644
index 00000000..136081b8
--- /dev/null
+++ b/content/posts/2007/05/01/mutablis-and-sky.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-01T08:16:29-07:00"
+title = "Mutablis and sky"
+image = "http://www.flickr.com/photos/duckunix/435817664/"
++++
+
+
+\
+
diff --git a/content/posts/2007/05/02/enter-the-duck.md b/content/posts/2007/05/02/enter-the-duck.md
new file mode 100644
index 00000000..219f1231
--- /dev/null
+++ b/content/posts/2007/05/02/enter-the-duck.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-02T01:35:32-07:00"
+title = "Enter The Duck"
+image = "http://farm1.static.flickr.com/176/430622717_407db6986d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/03/thinking-cap.md b/content/posts/2007/05/03/thinking-cap.md
new file mode 100644
index 00000000..14a1bc64
--- /dev/null
+++ b/content/posts/2007/05/03/thinking-cap.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-03T10:36:14-07:00"
+title = "Thinking Cap?"
+image = "http://farm1.static.flickr.com/183/430620172_e51d8b13b5.jpg"
++++
+
+
+
+He kinda looks like he has a hat on....
diff --git a/content/posts/2007/05/04/duck.md b/content/posts/2007/05/04/duck.md
new file mode 100644
index 00000000..955bacf0
--- /dev/null
+++ b/content/posts/2007/05/04/duck.md
@@ -0,0 +1,10 @@
++++
+date = "2007-05-04T10:38:33-07:00"
+title = "Duck!"
+image = "http://farm1.static.flickr.com/147/430587887_31a2e77132.jpg"
++++
+
+
+
+
+One of my favorites from the outing...
diff --git a/content/posts/2007/05/04/make-way-for-the-duck.md b/content/posts/2007/05/04/make-way-for-the-duck.md
new file mode 100644
index 00000000..4647d203
--- /dev/null
+++ b/content/posts/2007/05/04/make-way-for-the-duck.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-04T09:41:20-07:00"
+title = "Make way for the duck!"
+image = "http://farm1.static.flickr.com/162/430586238_a9fde8578d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/05/pretty-malard.md b/content/posts/2007/05/05/pretty-malard.md
new file mode 100644
index 00000000..ec7c5a83
--- /dev/null
+++ b/content/posts/2007/05/05/pretty-malard.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-05T08:41:47-07:00"
+title = "Pretty Mallard"
+image = "http://farm1.static.flickr.com/146/430626784_f2898f57bd.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/06/goose-coming-through.md b/content/posts/2007/05/06/goose-coming-through.md
new file mode 100644
index 00000000..e57153ac
--- /dev/null
+++ b/content/posts/2007/05/06/goose-coming-through.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-06T06:43:53-07:00"
+title = "Goose coming through!"
+image = "http://farm1.static.flickr.com/147/431372014_643d37b859.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/07/views-from-colorado.md b/content/posts/2007/05/07/views-from-colorado.md
new file mode 100644
index 00000000..219c6d85
--- /dev/null
+++ b/content/posts/2007/05/07/views-from-colorado.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-07T05:53:49-07:00"
+title = "Views from Colorado"
+image = "http://farm1.static.flickr.com/186/429814072_6765f57fb1.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/08/rocky-mountain-sky.md b/content/posts/2007/05/08/rocky-mountain-sky.md
new file mode 100644
index 00000000..7bfde86c
--- /dev/null
+++ b/content/posts/2007/05/08/rocky-mountain-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-08T05:53:50-07:00"
+title = "Rocky Mountain Sky"
+image = "http://farm1.static.flickr.com/184/429797408_77f0c23e01.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/09/mountain-lake.md b/content/posts/2007/05/09/mountain-lake.md
new file mode 100644
index 00000000..ad6fcf2c
--- /dev/null
+++ b/content/posts/2007/05/09/mountain-lake.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-09T06:32:06-07:00"
+title = "Mountain Lake"
+image = "http://farm1.static.flickr.com/174/429793638_a153976dd7.jpg"
++++
+
+
+
+Not your normal view
diff --git a/content/posts/2007/05/10/waterfall.md b/content/posts/2007/05/10/waterfall.md
new file mode 100644
index 00000000..1b50443b
--- /dev/null
+++ b/content/posts/2007/05/10/waterfall.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-10T06:32:07-07:00"
+title = "Waterfall"
+image = "http://farm1.static.flickr.com/166/429775006_b4dc7cdd85.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/11/rocky-peak.md b/content/posts/2007/05/11/rocky-peak.md
new file mode 100644
index 00000000..3c3307ee
--- /dev/null
+++ b/content/posts/2007/05/11/rocky-peak.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-11T06:33:26-07:00"
+title = "Rocky peak"
+image = "http://farm1.static.flickr.com/184/429779010_45e7ccb8df.jpg"
++++
+
+
+
+This could be one reason why they are called the Rockies!
diff --git a/content/posts/2007/05/12/stop.md b/content/posts/2007/05/12/stop.md
new file mode 100644
index 00000000..19205d39
--- /dev/null
+++ b/content/posts/2007/05/12/stop.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-12T06:34:10-07:00"
+title = "Stop!"
+image = "http://farm1.static.flickr.com/156/429744092_cd6290545e.jpg"
++++
+
+
+
+I just like it. :)
diff --git a/content/posts/2007/05/13/paper-whites-2.md b/content/posts/2007/05/13/paper-whites-2.md
new file mode 100644
index 00000000..5909de41
--- /dev/null
+++ b/content/posts/2007/05/13/paper-whites-2.md
@@ -0,0 +1,11 @@
++++
+date = "2007-05-13T06:35:01-07:00"
+title = "Paper-whites"
+image = "http://farm1.static.flickr.com/183/430634255_f423d6f92b.jpg"
++++
+
+
+
+I love the color on these flowers, and I also love the way the depth of
+field worked out. This is my most viewed photo on
+.
diff --git a/content/posts/2007/05/14/field-of-sunflowers.md b/content/posts/2007/05/14/field-of-sunflowers.md
new file mode 100644
index 00000000..516923ac
--- /dev/null
+++ b/content/posts/2007/05/14/field-of-sunflowers.md
@@ -0,0 +1,10 @@
++++
+date = "2007-05-14T06:35:04-07:00"
+title = "Field of Sunflowers"
+image = "http://farm1.static.flickr.com/147/431379692_270d4a4754.jpg"
++++
+
+
+
+I really love the multi-colored sunflowers. These are from Dewberry
+Farms, just west of Houston, TX.
diff --git a/content/posts/2007/05/15/rose-bud.md b/content/posts/2007/05/15/rose-bud.md
new file mode 100644
index 00000000..ed0db815
--- /dev/null
+++ b/content/posts/2007/05/15/rose-bud.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-15T06:40:06-07:00"
+title = "Rose bud"
+image = "http://farm1.static.flickr.com/162/435845479_4ab8f0dc3a.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/16/red-rose.md b/content/posts/2007/05/16/red-rose.md
new file mode 100644
index 00000000..626776dc
--- /dev/null
+++ b/content/posts/2007/05/16/red-rose.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-16T06:42:11-07:00"
+title = "Red Rose"
+image = "http://farm1.static.flickr.com/240/445647422_f4af8a5327.jpg"
++++
+
+
+
+More of the Don Juan rose.
diff --git a/content/posts/2007/05/17/triple-don.md b/content/posts/2007/05/17/triple-don.md
new file mode 100644
index 00000000..caa80b1d
--- /dev/null
+++ b/content/posts/2007/05/17/triple-don.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-17T06:43:32-07:00"
+title = "Triple Don"
+image = "http://farm1.static.flickr.com/188/445647148_3d9a126b7d.jpg"
++++
+
+
+
+This rose bush was fantastic. It just stays like this.
diff --git a/content/posts/2007/05/18/field-of-flowers-or-cool-sky.md b/content/posts/2007/05/18/field-of-flowers-or-cool-sky.md
new file mode 100644
index 00000000..d5310e34
--- /dev/null
+++ b/content/posts/2007/05/18/field-of-flowers-or-cool-sky.md
@@ -0,0 +1,10 @@
++++
+date = "2007-05-18T06:44:52-07:00"
+title = "Field of flowers, or cool sky?"
+image = "http://farm1.static.flickr.com/150/337723575_dfa6a9cca4.jpg"
++++
+
+
+
+Both elements compete in this picture, but I think that they work
+together very nicely.
diff --git a/content/posts/2007/05/19/sunflowers-2.md b/content/posts/2007/05/19/sunflowers-2.md
new file mode 100644
index 00000000..95368b0d
--- /dev/null
+++ b/content/posts/2007/05/19/sunflowers-2.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-19T06:47:18-07:00"
+title = "Sunflowers!"
+image = "http://farm1.static.flickr.com/157/431376403_0c76e918bc.jpg"
++++
+
+
+
+Lots of sunflowers from Dewberry Farms.
diff --git a/content/posts/2007/05/20/end-of-the-day.md b/content/posts/2007/05/20/end-of-the-day.md
new file mode 100644
index 00000000..4774acce
--- /dev/null
+++ b/content/posts/2007/05/20/end-of-the-day.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-20T06:48:22-07:00"
+title = "End of the day"
+image = "http://farm1.static.flickr.com/175/431378878_55d5f58806.jpg"
++++
+
+
+
+And the flowers all look sad.....from Dewberry Farms.
diff --git a/content/posts/2007/05/21/yellow-orange-yellow.md b/content/posts/2007/05/21/yellow-orange-yellow.md
new file mode 100644
index 00000000..2c8dfcb8
--- /dev/null
+++ b/content/posts/2007/05/21/yellow-orange-yellow.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-21T06:49:20-07:00"
+title = "Yellow, Orange, Yellow."
+image = "http://farm1.static.flickr.com/157/431380417_42de98cfd5.jpg"
++++
+
+
+
+Can you guess? Yup, Dewberry Farms.
diff --git a/content/posts/2007/05/22/pretty-face.md b/content/posts/2007/05/22/pretty-face.md
new file mode 100644
index 00000000..8adaee3c
--- /dev/null
+++ b/content/posts/2007/05/22/pretty-face.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-22T06:50:31-07:00"
+title = "Pretty Face"
+image = "http://farm1.static.flickr.com/188/431381076_b75d7851d4.jpg"
++++
+
+
+
+And you thought I was talking about something else? From Dewberry Farms.
diff --git a/content/posts/2007/05/23/duck-race.md b/content/posts/2007/05/23/duck-race.md
new file mode 100644
index 00000000..894c090a
--- /dev/null
+++ b/content/posts/2007/05/23/duck-race.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-23T06:00:40-07:00"
+title = "Duck Race"
+image = "http://farm1.static.flickr.com/180/432029768_10cb62e48c.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/24/horns-anyone.md b/content/posts/2007/05/24/horns-anyone.md
new file mode 100644
index 00000000..fa748883
--- /dev/null
+++ b/content/posts/2007/05/24/horns-anyone.md
@@ -0,0 +1,10 @@
++++
+date = "2007-05-24T06:02:07-07:00"
+title = "Horns, Anyone?"
+image = "http://farm1.static.flickr.com/126/337716986_2857d85888.jpg"
++++
+
+
+
+
+Taken at the Ft. Worth Stock Yards
diff --git a/content/posts/2007/05/25/sky-at-lady-birds-place.md b/content/posts/2007/05/25/sky-at-lady-birds-place.md
new file mode 100644
index 00000000..850565b2
--- /dev/null
+++ b/content/posts/2007/05/25/sky-at-lady-birds-place.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-25T06:03:17-07:00"
+title = "Sky at Lady Bird's Place"
+image = "http://farm1.static.flickr.com/24/59065355_9c92b83dfe.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/26/rails-at-sunset.md b/content/posts/2007/05/26/rails-at-sunset.md
new file mode 100644
index 00000000..f40ceec0
--- /dev/null
+++ b/content/posts/2007/05/26/rails-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-26T06:04:52-07:00"
+title = "Rails at sunset"
+image = "http://farm1.static.flickr.com/154/429717906_98297c28b3.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/27/tall-building.md b/content/posts/2007/05/27/tall-building.md
new file mode 100644
index 00000000..df1ef192
--- /dev/null
+++ b/content/posts/2007/05/27/tall-building.md
@@ -0,0 +1,9 @@
++++
+date = "2007-05-27T06:04:53-07:00"
+title = "Tall Building"
+image = "http://farm1.static.flickr.com/201/469891235_925bed6273.jpg"
++++
+
+
+
+This is the Exxon Building in down-town Houston
diff --git a/content/posts/2007/05/28/stop-2.md b/content/posts/2007/05/28/stop-2.md
new file mode 100644
index 00000000..76603089
--- /dev/null
+++ b/content/posts/2007/05/28/stop-2.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-28T06:06:37-07:00"
+title = "STOP!"
+image = "http://farm1.static.flickr.com/181/429744511_34d423cd46.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/29/water-foutain.md b/content/posts/2007/05/29/water-foutain.md
new file mode 100644
index 00000000..d7d26f49
--- /dev/null
+++ b/content/posts/2007/05/29/water-foutain.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-29T05:47:09-07:00"
+title = "Water foutain"
+image = "http://farm1.static.flickr.com/172/435928768_e35832f557.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/30/end-of-play.md b/content/posts/2007/05/30/end-of-play.md
new file mode 100644
index 00000000..ec1b4c91
--- /dev/null
+++ b/content/posts/2007/05/30/end-of-play.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-30T05:47:41-07:00"
+title = "End of Play"
+image = "http://farm1.static.flickr.com/214/469882961_2ec34c4186.jpg"
++++
+
+
+
diff --git a/content/posts/2007/05/31/steel-gate.md b/content/posts/2007/05/31/steel-gate.md
new file mode 100644
index 00000000..9eae13ca
--- /dev/null
+++ b/content/posts/2007/05/31/steel-gate.md
@@ -0,0 +1,8 @@
++++
+date = "2007-05-31T05:48:27-07:00"
+title = "Steel Gate"
+image = "http://farm1.static.flickr.com/187/440375923_c895b53c5e.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/01/beach-flower.md b/content/posts/2007/06/01/beach-flower.md
new file mode 100644
index 00000000..7a4ee7e0
--- /dev/null
+++ b/content/posts/2007/06/01/beach-flower.md
@@ -0,0 +1,9 @@
++++
+date = "2007-06-01T05:49:05-07:00"
+title = "Beach Flower"
+image = "http://farm1.static.flickr.com/228/486482414_abec88f268.jpg"
++++
+
+
+
+From just in front of the Seawall in Galveston, TX.
diff --git a/content/posts/2007/06/02/beach-flower-and-rope.md b/content/posts/2007/06/02/beach-flower-and-rope.md
new file mode 100644
index 00000000..d8572c90
--- /dev/null
+++ b/content/posts/2007/06/02/beach-flower-and-rope.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-02T05:50:23-07:00"
+title = "Beach Flower and Rope"
+image = "http://farm1.static.flickr.com/210/486478850_68323ba287.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/03/happy-dog-at-beach.md b/content/posts/2007/06/03/happy-dog-at-beach.md
new file mode 100644
index 00000000..a1c16e53
--- /dev/null
+++ b/content/posts/2007/06/03/happy-dog-at-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-03T05:51:30-07:00"
+title = "Happy Dog at Beach"
+image = "http://farm1.static.flickr.com/216/486456030_e293899df5.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/04/sailboats-off-the-beach.md b/content/posts/2007/06/04/sailboats-off-the-beach.md
new file mode 100644
index 00000000..fbcc9e9e
--- /dev/null
+++ b/content/posts/2007/06/04/sailboats-off-the-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-04T05:52:21-07:00"
+title = "Sailboats off the beach"
+image = "http://farm1.static.flickr.com/191/486480849_c0cd9bc3a7.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/05/a-rose-is-still-a-rose.md b/content/posts/2007/06/05/a-rose-is-still-a-rose.md
new file mode 100644
index 00000000..5998fb12
--- /dev/null
+++ b/content/posts/2007/06/05/a-rose-is-still-a-rose.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-05T16:36:51-07:00"
+title = "A rose is still a rose..."
+image = "http://farm1.static.flickr.com/250/445650593_6ab01d8dd3.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/08/coral-bean.md b/content/posts/2007/06/08/coral-bean.md
new file mode 100644
index 00000000..551d52c1
--- /dev/null
+++ b/content/posts/2007/06/08/coral-bean.md
@@ -0,0 +1,10 @@
++++
+date = "2007-06-08T05:12:29-07:00"
+title = "Coral Bean"
+image = "http://farm2.static.flickr.com/1415/534973278_dfbcda784d.jpg"
++++
+
+
+
+Sorry I have not posted in a few days...we put our house on the market
+yesterday, and it has been a little crazy.
diff --git a/content/posts/2007/06/09/coral-beans.md b/content/posts/2007/06/09/coral-beans.md
new file mode 100644
index 00000000..bc3be73d
--- /dev/null
+++ b/content/posts/2007/06/09/coral-beans.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-09T05:12:29-07:00"
+title = "Coral Beans"
+image = "http://farm2.static.flickr.com/1234/534965240_7f27656927.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/10/last-coral-bean.md b/content/posts/2007/06/10/last-coral-bean.md
new file mode 100644
index 00000000..90b237a9
--- /dev/null
+++ b/content/posts/2007/06/10/last-coral-bean.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-10T05:13:08-07:00"
+title = "Last Coral Bean"
+image = "http://farm2.static.flickr.com/1104/534969200_382cba39aa.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/11/childs-bench.md b/content/posts/2007/06/11/childs-bench.md
new file mode 100644
index 00000000..1da96627
--- /dev/null
+++ b/content/posts/2007/06/11/childs-bench.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-11T05:02:34-07:00"
+title = "Child's Bench"
+image = "http://farm2.static.flickr.com/1033/536682401_93100055f3.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/12/reaching-for-sunset.md b/content/posts/2007/06/12/reaching-for-sunset.md
new file mode 100644
index 00000000..a3862da4
--- /dev/null
+++ b/content/posts/2007/06/12/reaching-for-sunset.md
@@ -0,0 +1,9 @@
++++
+date = "2007-06-12T05:02:35-07:00"
+title = "Reaching for sunset"
+image = "http://farm2.static.flickr.com/1196/536567000_7f37c1ba28.jpg"
++++
+
+
+
+The flare was intentional....
diff --git a/content/posts/2007/06/13/not-painted-rose.md b/content/posts/2007/06/13/not-painted-rose.md
new file mode 100644
index 00000000..6a85b1c1
--- /dev/null
+++ b/content/posts/2007/06/13/not-painted-rose.md
@@ -0,0 +1,10 @@
++++
+date = "2007-06-13T05:03:49-07:00"
+title = "Not painted rose"
+image = "http://farm2.static.flickr.com/1189/536565196_65fc159ac6.jpg"
++++
+
+
+
+
+This is just one of the ways this rose's blooms change colors...
diff --git a/content/posts/2007/06/14/detail-of-not-painted-rose.md b/content/posts/2007/06/14/detail-of-not-painted-rose.md
new file mode 100644
index 00000000..2e811692
--- /dev/null
+++ b/content/posts/2007/06/14/detail-of-not-painted-rose.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-14T05:04:59-07:00"
+title = "Detail of Not Painted Rose"
+image = "http://farm2.static.flickr.com/1001/536676729_fc4f766699.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/15/sunset-lit-rose.md b/content/posts/2007/06/15/sunset-lit-rose.md
new file mode 100644
index 00000000..35db1c20
--- /dev/null
+++ b/content/posts/2007/06/15/sunset-lit-rose.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-15T05:05:31-07:00"
+title = "Sunset lit Rose"
+image = "http://farm2.static.flickr.com/1370/536559004_23ce5ee041.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/16/mother-of-the-don.md b/content/posts/2007/06/16/mother-of-the-don.md
new file mode 100644
index 00000000..84e53f49
--- /dev/null
+++ b/content/posts/2007/06/16/mother-of-the-don.md
@@ -0,0 +1,11 @@
++++
+date = "2007-06-16T05:06:15-07:00"
+title = "Mother of the Don"
+image = "http://farm2.static.flickr.com/1371/536556716_3ed9e33598.jpg"
++++
+
+
+
+
+This rose, called a *New Dawn* , is the parent to the *Don Juan* seen
+here before. And, it smells wonderful.
diff --git a/content/posts/2007/06/17/seeds-on-the-rail.md b/content/posts/2007/06/17/seeds-on-the-rail.md
new file mode 100644
index 00000000..0bf53653
--- /dev/null
+++ b/content/posts/2007/06/17/seeds-on-the-rail.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-17T05:07:48-07:00"
+title = "Seeds on the Rail"
+image = "http://farm2.static.flickr.com/1168/536554096_cc5aa57017.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/18/you-say-tomato-i-say-tomato.md b/content/posts/2007/06/18/you-say-tomato-i-say-tomato.md
new file mode 100644
index 00000000..4491f73d
--- /dev/null
+++ b/content/posts/2007/06/18/you-say-tomato-i-say-tomato.md
@@ -0,0 +1,10 @@
++++
+date = "2007-06-18T05:08:24-07:00"
+title = "You say tomato, I say tomato"
+image = "http://farm2.static.flickr.com/1115/536665477_c27ffab57a.jpg"
++++
+
+
+
+
+Well, the bloom, anyway...
diff --git a/content/posts/2007/06/19/we-are-all-just-dust-er-dandelions-in-the-wind.md b/content/posts/2007/06/19/we-are-all-just-dust-er-dandelions-in-the-wind.md
new file mode 100644
index 00000000..56adb991
--- /dev/null
+++ b/content/posts/2007/06/19/we-are-all-just-dust-er-dandelions-in-the-wind.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-19T05:09:14-07:00"
+title = "We are all just dust, er, dandelions in the wind..."
+image = "http://farm2.static.flickr.com/1329/536547924_7f3693705c.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/20/sunflower-from-the-birds.md b/content/posts/2007/06/20/sunflower-from-the-birds.md
new file mode 100644
index 00000000..aded6ede
--- /dev/null
+++ b/content/posts/2007/06/20/sunflower-from-the-birds.md
@@ -0,0 +1,11 @@
++++
+date = "2007-06-20T05:10:01-07:00"
+title = "Sunflower from the birds"
+image = "http://farm2.static.flickr.com/1296/536544080_70abf7a229.jpg"
++++
+
+
+
+
+I do not know what type of sunflower this is, as it was a volunteer from
+the bird seed we feed the birds.
diff --git a/content/posts/2007/06/21/long-and-winding-path.md b/content/posts/2007/06/21/long-and-winding-path.md
new file mode 100644
index 00000000..b1e6262b
--- /dev/null
+++ b/content/posts/2007/06/21/long-and-winding-path.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-21T05:11:16-07:00"
+title = "Long and winding path"
+image = "http://farm2.static.flickr.com/1194/536653199_74c2d71976.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/22/face-in-the-flowers.md b/content/posts/2007/06/22/face-in-the-flowers.md
new file mode 100644
index 00000000..d895be97
--- /dev/null
+++ b/content/posts/2007/06/22/face-in-the-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-22T05:11:44-07:00"
+title = "Face in the flowers."
+image = "http://farm2.static.flickr.com/1006/536641649_c08cfb71ec.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/23/little-flowers.md b/content/posts/2007/06/23/little-flowers.md
new file mode 100644
index 00000000..b40d77bf
--- /dev/null
+++ b/content/posts/2007/06/23/little-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-23T05:12:24-07:00"
+title = "Little flowers"
+image = "http://farm2.static.flickr.com/1232/536517164_450827e9b0.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/24/windmill-at-sunset.md b/content/posts/2007/06/24/windmill-at-sunset.md
new file mode 100644
index 00000000..fc892b21
--- /dev/null
+++ b/content/posts/2007/06/24/windmill-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-24T06:08:59-07:00"
+title = "WIndmill at sunset"
+image = "http://farm1.static.flickr.com/149/435972045_7a090aa06e.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/25/sunflower-at-sunset.md b/content/posts/2007/06/25/sunflower-at-sunset.md
new file mode 100644
index 00000000..845a88ab
--- /dev/null
+++ b/content/posts/2007/06/25/sunflower-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-25T06:10:18-07:00"
+title = "Sunflower at sunset"
+image = "http://farm1.static.flickr.com/150/435938643_e4c7605efc.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/26/white-flower.md b/content/posts/2007/06/26/white-flower.md
new file mode 100644
index 00000000..83a2b2b9
--- /dev/null
+++ b/content/posts/2007/06/26/white-flower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-26T06:10:54-07:00"
+title = "White Flower"
+image = "http://farm1.static.flickr.com/179/435934493_7535efda65.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/27/windmill-2.md b/content/posts/2007/06/27/windmill-2.md
new file mode 100644
index 00000000..6470e6b2
--- /dev/null
+++ b/content/posts/2007/06/27/windmill-2.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-27T06:11:42-07:00"
+title = "Windmill"
+image = "http://farm1.static.flickr.com/181/431369477_a59e4ddea1.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/28/old-steam-shovel.md b/content/posts/2007/06/28/old-steam-shovel.md
new file mode 100644
index 00000000..bd281601
--- /dev/null
+++ b/content/posts/2007/06/28/old-steam-shovel.md
@@ -0,0 +1,9 @@
++++
+date = "2007-06-28T06:12:38-07:00"
+title = "Old Steam Shovel"
+image = "http://farm1.static.flickr.com/175/429794299_1532095d6e.jpg"
++++
+
+
+
+This was on the side of the road in the middle of the Rockies.
diff --git a/content/posts/2007/06/29/spanish-dagger.md b/content/posts/2007/06/29/spanish-dagger.md
new file mode 100644
index 00000000..420d055d
--- /dev/null
+++ b/content/posts/2007/06/29/spanish-dagger.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-29T06:14:01-07:00"
+title = "Spanish Dagger"
+image = "http://farm1.static.flickr.com/171/429721423_86713b25f6.jpg"
++++
+
+
+
diff --git a/content/posts/2007/06/30/business-end-of-the-spanish-dagger.md b/content/posts/2007/06/30/business-end-of-the-spanish-dagger.md
new file mode 100644
index 00000000..ec8b9ddc
--- /dev/null
+++ b/content/posts/2007/06/30/business-end-of-the-spanish-dagger.md
@@ -0,0 +1,8 @@
++++
+date = "2007-06-30T06:15:22-07:00"
+title = "Business end of the Spanish Dagger"
+image = "http://farm1.static.flickr.com/185/429721323_b9b0b3a13a.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/01/long-horns.md b/content/posts/2007/07/01/long-horns.md
new file mode 100644
index 00000000..a5a502e2
--- /dev/null
+++ b/content/posts/2007/07/01/long-horns.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-01T06:16:44-07:00"
+title = "Long Horns!"
+image = "http://farm1.static.flickr.com/153/337716478_3f92d16639.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/03/sunset-at-local-park.md b/content/posts/2007/07/03/sunset-at-local-park.md
new file mode 100644
index 00000000..f64f33bc
--- /dev/null
+++ b/content/posts/2007/07/03/sunset-at-local-park.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-03T06:17:58-07:00"
+title = "Sunset at local park"
+image = "http://farm1.static.flickr.com/145/435961703_c7b99bedc0.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/04/happy-231st-birthday-america.md b/content/posts/2007/07/04/happy-231st-birthday-america.md
new file mode 100644
index 00000000..4f8b7033
--- /dev/null
+++ b/content/posts/2007/07/04/happy-231st-birthday-america.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-04T04:28:19-07:00"
+title = "Happy 231st birthday, America!"
+image = "http://farm1.static.flickr.com/151/435857824_0d97c8326c.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/05/flowers-in-the-rocks.md b/content/posts/2007/07/05/flowers-in-the-rocks.md
new file mode 100644
index 00000000..ede6fd03
--- /dev/null
+++ b/content/posts/2007/07/05/flowers-in-the-rocks.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-05T06:18:45-07:00"
+title = "Flowers in the Rocks"
+image = "http://farm1.static.flickr.com/33/59065356_596d2484c1.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/06/flowers-from-behind.md b/content/posts/2007/07/06/flowers-from-behind.md
new file mode 100644
index 00000000..88dab268
--- /dev/null
+++ b/content/posts/2007/07/06/flowers-from-behind.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-06T06:19:34-07:00"
+title = "Flowers, from behind"
+image = "http://farm1.static.flickr.com/158/337726324_1f177a29ef.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/07/field-o-puprle-flowers.md b/content/posts/2007/07/07/field-o-puprle-flowers.md
new file mode 100644
index 00000000..9cd1c9ee
--- /dev/null
+++ b/content/posts/2007/07/07/field-o-puprle-flowers.md
@@ -0,0 +1,9 @@
++++
+date = "2007-07-07T06:20:19-07:00"
+title = "Field o Puprle Flowers"
+image = "http://farm1.static.flickr.com/56/337724739_6ba4a2cb2d.jpg"
++++
+
+
+
+o Purople
diff --git a/content/posts/2007/07/08/children-on-the-beach.md b/content/posts/2007/07/08/children-on-the-beach.md
new file mode 100644
index 00000000..6384be24
--- /dev/null
+++ b/content/posts/2007/07/08/children-on-the-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-08T06:22:10-07:00"
+title = "Children on the beach"
+image = "http://farm1.static.flickr.com/141/337719276_5ba4a1197a.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/09/art-deco-building-at-night.md b/content/posts/2007/07/09/art-deco-building-at-night.md
new file mode 100644
index 00000000..ea5f6776
--- /dev/null
+++ b/content/posts/2007/07/09/art-deco-building-at-night.md
@@ -0,0 +1,9 @@
++++
+date = "2007-07-09T06:22:53-07:00"
+title = "Art-Deco Building at night"
+image = "http://farm1.static.flickr.com/147/337715285_36c3755c39.jpg"
++++
+
+
+
+Taken in downtown Ft. Worth, TX.
diff --git a/content/posts/2007/07/10/hotel-galvez.md b/content/posts/2007/07/10/hotel-galvez.md
new file mode 100644
index 00000000..49081a2d
--- /dev/null
+++ b/content/posts/2007/07/10/hotel-galvez.md
@@ -0,0 +1,9 @@
++++
+date = "2007-07-10T06:23:51-07:00"
+title = "Hotel Galvez"
+image = "http://farm1.static.flickr.com/135/337718710_29ada59a21.jpg"
++++
+
+
+
+This is our current favorite vacation spot.
diff --git a/content/posts/2007/07/11/coast-of-san-deigo.md b/content/posts/2007/07/11/coast-of-san-deigo.md
new file mode 100644
index 00000000..fe40e116
--- /dev/null
+++ b/content/posts/2007/07/11/coast-of-san-deigo.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-11T06:24:45-07:00"
+title = "Coast of San Deigo"
+image = "http://farm1.static.flickr.com/40/75283048_6e592037b0.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/12/ligth-poll-and-clouds.md b/content/posts/2007/07/12/ligth-poll-and-clouds.md
new file mode 100644
index 00000000..e58de35e
--- /dev/null
+++ b/content/posts/2007/07/12/ligth-poll-and-clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-12T06:25:26-07:00"
+title = "Ligth Poll and Clouds"
+image = "http://farm1.static.flickr.com/35/64231698_41761614f6.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/13/waterspout.md b/content/posts/2007/07/13/waterspout.md
new file mode 100644
index 00000000..58fb35bd
--- /dev/null
+++ b/content/posts/2007/07/13/waterspout.md
@@ -0,0 +1,9 @@
++++
+date = "2007-07-13T06:26:01-07:00"
+title = "Waterspout"
+image = "http://farm1.static.flickr.com/32/59322297_ad8f8a48e5.jpg"
++++
+
+
+
+This has been my computer's background for a while now
diff --git a/content/posts/2007/07/14/butterfly-on-flowers.md b/content/posts/2007/07/14/butterfly-on-flowers.md
new file mode 100644
index 00000000..53b5fac2
--- /dev/null
+++ b/content/posts/2007/07/14/butterfly-on-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-14T06:27:01-07:00"
+title = "Butterfly on flowers"
+image = "http://farm1.static.flickr.com/24/59065362_ae1138fda0.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/15/water-flowers.md b/content/posts/2007/07/15/water-flowers.md
new file mode 100644
index 00000000..996feb70
--- /dev/null
+++ b/content/posts/2007/07/15/water-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-15T06:27:34-07:00"
+title = "Water Flowers"
+image = "http://farm1.static.flickr.com/25/59065360_80e96a1bd6.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/16/alright-who-called-this-meeting.md b/content/posts/2007/07/16/alright-who-called-this-meeting.md
new file mode 100644
index 00000000..44246fd8
--- /dev/null
+++ b/content/posts/2007/07/16/alright-who-called-this-meeting.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-16T15:54:07-07:00"
+title = "Alright, who called this meeting?"
+image = "http://farm1.static.flickr.com/172/430589003_418be82344.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/17/lines-again.md b/content/posts/2007/07/17/lines-again.md
new file mode 100644
index 00000000..a2cb0bdb
--- /dev/null
+++ b/content/posts/2007/07/17/lines-again.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-17T15:55:00-07:00"
+title = "Lines, again"
+image = "http://farm1.static.flickr.com/183/430642734_7ea3fc18dc.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/18/red-red-don.md b/content/posts/2007/07/18/red-red-don.md
new file mode 100644
index 00000000..f2d1070b
--- /dev/null
+++ b/content/posts/2007/07/18/red-red-don.md
@@ -0,0 +1,9 @@
++++
+date = "2007-07-18T15:56:01-07:00"
+title = "Red, red Don"
+image = "http://farm1.static.flickr.com/181/448463484_ed640f7e27.jpg"
++++
+
+
+
+This is one of the pictures my wife chose for staging the house.
diff --git a/content/posts/2007/07/19/what-is-going-on-here.md b/content/posts/2007/07/19/what-is-going-on-here.md
new file mode 100644
index 00000000..b80b4b02
--- /dev/null
+++ b/content/posts/2007/07/19/what-is-going-on-here.md
@@ -0,0 +1,9 @@
++++
+date = "2007-07-19T15:58:12-07:00"
+title = "What is going on here?"
+image = "http://farm1.static.flickr.com/232/448463842_c95324c45f.jpg"
++++
+
+
+
+This is another picture my wife used to stage the house.
diff --git a/content/posts/2007/07/20/dawn-in-full-bloom.md b/content/posts/2007/07/20/dawn-in-full-bloom.md
new file mode 100644
index 00000000..7580856e
--- /dev/null
+++ b/content/posts/2007/07/20/dawn-in-full-bloom.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-20T15:59:36-07:00"
+title = "Dawn, in full bloom"
+image = "http://farm1.static.flickr.com/203/469916045_cd0d6a8f10.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/21/green-and-white-paperwhites.md b/content/posts/2007/07/21/green-and-white-paperwhites.md
new file mode 100644
index 00000000..6735d6d6
--- /dev/null
+++ b/content/posts/2007/07/21/green-and-white-paperwhites.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-21T16:00:17-07:00"
+title = "Green and White Paperwhites"
+image = "http://farm1.static.flickr.com/182/435824667_f41b01925c.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/22/sun-rays.md b/content/posts/2007/07/22/sun-rays.md
new file mode 100644
index 00000000..c480697d
--- /dev/null
+++ b/content/posts/2007/07/22/sun-rays.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-22T16:01:14-07:00"
+title = "Sun rays..."
+image = "http://farm1.static.flickr.com/152/435892783_274b52c211.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/23/flutter-by-butterfly.md b/content/posts/2007/07/23/flutter-by-butterfly.md
new file mode 100644
index 00000000..3b60c7c7
--- /dev/null
+++ b/content/posts/2007/07/23/flutter-by-butterfly.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-23T16:01:57-07:00"
+title = "Flutter-by, butterfly!"
+image = "http://farm1.static.flickr.com/152/435892783_274b52c211.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/24/run-water-run.md b/content/posts/2007/07/24/run-water-run.md
new file mode 100644
index 00000000..20cc9aa8
--- /dev/null
+++ b/content/posts/2007/07/24/run-water-run.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-24T16:02:37-07:00"
+title = "Run, water, run"
+image = "http://farm1.static.flickr.com/172/435928768_e35832f557.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/25/pine-flowers.md b/content/posts/2007/07/25/pine-flowers.md
new file mode 100644
index 00000000..8d444b65
--- /dev/null
+++ b/content/posts/2007/07/25/pine-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-25T06:16:06-07:00"
+title = "Pine Flowers"
+image = "http://farm1.static.flickr.com/161/429721512_abadc3affa.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/26/girl-in-field-of-sunflowers.md b/content/posts/2007/07/26/girl-in-field-of-sunflowers.md
new file mode 100644
index 00000000..94b39235
--- /dev/null
+++ b/content/posts/2007/07/26/girl-in-field-of-sunflowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-26T06:21:31-07:00"
+title = "Girl in field of sunflowers"
+image = "http://farm1.static.flickr.com/147/337722471_e586191a70.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/27/sunset-2.md b/content/posts/2007/07/27/sunset-2.md
new file mode 100644
index 00000000..ee985466
--- /dev/null
+++ b/content/posts/2007/07/27/sunset-2.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-27T05:58:17-07:00"
+title = "Sunset"
+image = "http://farm2.static.flickr.com/1303/750706649_f1c30dc186.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/28/sunset-after-storm.md b/content/posts/2007/07/28/sunset-after-storm.md
new file mode 100644
index 00000000..c59de5cb
--- /dev/null
+++ b/content/posts/2007/07/28/sunset-after-storm.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-28T05:59:01-07:00"
+title = "Sunset after Storm"
+image = "http://farm2.static.flickr.com/1269/751557696_89eac84688.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/29/sunset-before-storm.md b/content/posts/2007/07/29/sunset-before-storm.md
new file mode 100644
index 00000000..fbbd7b97
--- /dev/null
+++ b/content/posts/2007/07/29/sunset-before-storm.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-29T06:00:44-07:00"
+title = "Sunset before Storm"
+image = "http://farm1.static.flickr.com/185/435812603_6db2ffa781.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/30/rose-in-the-sky.md b/content/posts/2007/07/30/rose-in-the-sky.md
new file mode 100644
index 00000000..e54b0adf
--- /dev/null
+++ b/content/posts/2007/07/30/rose-in-the-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-30T06:04:24-07:00"
+title = "Rose in the Sky"
+image = "http://farm1.static.flickr.com/147/435816649_ffe79d57a0.jpg"
++++
+
+
+
diff --git a/content/posts/2007/07/31/fluffy-white-clouds.md b/content/posts/2007/07/31/fluffy-white-clouds.md
new file mode 100644
index 00000000..5cf9686a
--- /dev/null
+++ b/content/posts/2007/07/31/fluffy-white-clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2007-07-31T06:01:57-07:00"
+title = "Fluffy White Clouds"
+image = "http://farm1.static.flickr.com/156/429721786_f2701d80dc.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/01/wispy-white-clouds.md b/content/posts/2007/08/01/wispy-white-clouds.md
new file mode 100644
index 00000000..39ab7638
--- /dev/null
+++ b/content/posts/2007/08/01/wispy-white-clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-01T06:02:57-07:00"
+title = "Wispy White Clouds"
+image = "http://farm1.static.flickr.com/158/435934736_107fc63433.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/02/downspout-and-clouds.md b/content/posts/2007/08/02/downspout-and-clouds.md
new file mode 100644
index 00000000..4c9ee2b2
--- /dev/null
+++ b/content/posts/2007/08/02/downspout-and-clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-02T06:03:24-07:00"
+title = "Downspout and Clouds"
+image = "http://farm1.static.flickr.com/181/431374534_0c702ad3b2.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/03/boy-on-beach.md b/content/posts/2007/08/03/boy-on-beach.md
new file mode 100644
index 00000000..a6e9b497
--- /dev/null
+++ b/content/posts/2007/08/03/boy-on-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-03T04:57:22-07:00"
+title = "Boy on Beach"
+image = "http://farm1.static.flickr.com/199/486484985_38edfc9894.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/04/sailing-away.md b/content/posts/2007/08/04/sailing-away.md
new file mode 100644
index 00000000..a5a42034
--- /dev/null
+++ b/content/posts/2007/08/04/sailing-away.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-04T04:58:51-07:00"
+title = "Sailing Away"
+image = "http://farm1.static.flickr.com/175/486479153_529246f663.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/05/boy-looking-out-window.md b/content/posts/2007/08/05/boy-looking-out-window.md
new file mode 100644
index 00000000..9c308d7a
--- /dev/null
+++ b/content/posts/2007/08/05/boy-looking-out-window.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-05T04:59:42-07:00"
+title = "Boy Looking Out Window"
+image = "http://farm2.static.flickr.com/1027/900318506_c4a249b318.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/06/sunset-from-phone-camera.md b/content/posts/2007/08/06/sunset-from-phone-camera.md
new file mode 100644
index 00000000..ab412734
--- /dev/null
+++ b/content/posts/2007/08/06/sunset-from-phone-camera.md
@@ -0,0 +1,9 @@
++++
+date = "2007-08-06T05:00:25-07:00"
+title = "Sunset from Phone Camera"
+image = "http://farm2.static.flickr.com/1383/841319577_0f02b56b13.jpg"
++++
+
+
+
+Sometime, these silly cameras do work. Taken from my Motorola V3xx.
diff --git a/content/posts/2007/08/07/new-dawn-cluster.md b/content/posts/2007/08/07/new-dawn-cluster.md
new file mode 100644
index 00000000..f429b612
--- /dev/null
+++ b/content/posts/2007/08/07/new-dawn-cluster.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-07T05:02:18-07:00"
+title = "New Dawn Cluster"
+image = "http://farm2.static.flickr.com/1010/536670323_1cc6823224.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/08/small-blue-flowers.md b/content/posts/2007/08/08/small-blue-flowers.md
new file mode 100644
index 00000000..36d4750e
--- /dev/null
+++ b/content/posts/2007/08/08/small-blue-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-08T05:02:47-07:00"
+title = "Small Blue Flowers"
+image = "http://farm1.static.flickr.com/203/469908133_7b087abc16.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/09/sunflower-2.md b/content/posts/2007/08/09/sunflower-2.md
new file mode 100644
index 00000000..45c0f9e3
--- /dev/null
+++ b/content/posts/2007/08/09/sunflower-2.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-09T05:03:30-07:00"
+title = "Sunflower!"
+image = "http://farm1.static.flickr.com/199/486484985_38edfc9894.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/10/lots-of-sunflowers.md b/content/posts/2007/08/10/lots-of-sunflowers.md
new file mode 100644
index 00000000..23cbc82d
--- /dev/null
+++ b/content/posts/2007/08/10/lots-of-sunflowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-10T05:04:05-07:00"
+title = "Lots of Sunflowers!"
+image = "http://farm1.static.flickr.com/157/431378124_f5d4e1d15d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/11/duck-butt.md b/content/posts/2007/08/11/duck-butt.md
new file mode 100644
index 00000000..e9f9a920
--- /dev/null
+++ b/content/posts/2007/08/11/duck-butt.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-11T05:04:49-07:00"
+title = "Duck Butt!"
+image = "http://farm1.static.flickr.com/174/431370604_28e1920dd7.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/12/marching-duck.md b/content/posts/2007/08/12/marching-duck.md
new file mode 100644
index 00000000..e5223bbc
--- /dev/null
+++ b/content/posts/2007/08/12/marching-duck.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-12T05:05:28-07:00"
+title = "Marching Duck"
+image = "http://farm1.static.flickr.com/149/430622444_5e28db3f27.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/13/you-looking-at-me.md b/content/posts/2007/08/13/you-looking-at-me.md
new file mode 100644
index 00000000..c3b33fa1
--- /dev/null
+++ b/content/posts/2007/08/13/you-looking-at-me.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-13T05:06:57-07:00"
+title = "You looking at me?"
+image = "http://farm1.static.flickr.com/184/430586846_392696ec67.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/14/bluebonnets.md b/content/posts/2007/08/14/bluebonnets.md
new file mode 100644
index 00000000..d0f4e0a4
--- /dev/null
+++ b/content/posts/2007/08/14/bluebonnets.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-14T05:07:43-07:00"
+title = "Bluebonnets"
+image = "http://farm1.static.flickr.com/165/429721180_c4e673f6d6.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/15/more-bluebonnets.md b/content/posts/2007/08/15/more-bluebonnets.md
new file mode 100644
index 00000000..0e1f2eb6
--- /dev/null
+++ b/content/posts/2007/08/15/more-bluebonnets.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-15T05:08:33-07:00"
+title = "More Bluebonnets"
+image = "http://farm1.static.flickr.com/162/429721034_fa19b6ac1d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/16/proud-birds.md b/content/posts/2007/08/16/proud-birds.md
new file mode 100644
index 00000000..4b4fd42a
--- /dev/null
+++ b/content/posts/2007/08/16/proud-birds.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-16T06:05:03-07:00"
+title = "Proud Birds"
+image = "http://farm2.static.flickr.com/1094/1125353397_79049d9454.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/17/deer-deer.md b/content/posts/2007/08/17/deer-deer.md
new file mode 100644
index 00000000..5b288d81
--- /dev/null
+++ b/content/posts/2007/08/17/deer-deer.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-17T06:06:20-07:00"
+title = "Deer, deer"
+image = "http://farm2.static.flickr.com/1199/1126192584_58d1005fcc.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/18/hey.md b/content/posts/2007/08/18/hey.md
new file mode 100644
index 00000000..9efe29fc
--- /dev/null
+++ b/content/posts/2007/08/18/hey.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-18T06:08:20-07:00"
+title = "Hey!"
+image = "http://farm2.static.flickr.com/1211/1126190906_c1b4953ba4.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/19/who-are-you-looking-at.md b/content/posts/2007/08/19/who-are-you-looking-at.md
new file mode 100644
index 00000000..7be721c1
--- /dev/null
+++ b/content/posts/2007/08/19/who-are-you-looking-at.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-19T06:13:35-07:00"
+title = "Who are you looking at?"
+image = "http://farm2.static.flickr.com/1165/1125348083_9c7d6f6675.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/20/big-kitty.md b/content/posts/2007/08/20/big-kitty.md
new file mode 100644
index 00000000..a4ac2179
--- /dev/null
+++ b/content/posts/2007/08/20/big-kitty.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-20T06:14:07-07:00"
+title = "Big Kitty"
+image = "http://farm2.static.flickr.com/1262/1126187898_30df91b119.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/21/nice-stripes.md b/content/posts/2007/08/21/nice-stripes.md
new file mode 100644
index 00000000..ee8be65d
--- /dev/null
+++ b/content/posts/2007/08/21/nice-stripes.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-21T06:14:36-07:00"
+title = "Nice stripes..."
+image = "http://farm2.static.flickr.com/1243/1125344219_9613fdfde6.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/22/turtle-well-tortes.md b/content/posts/2007/08/22/turtle-well-tortes.md
new file mode 100644
index 00000000..257ef4ee
--- /dev/null
+++ b/content/posts/2007/08/22/turtle-well-tortes.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-22T06:15:15-07:00"
+title = "Turtle (well, tortoise)"
+image = "http://farm2.static.flickr.com/1067/1126183404_0f29bd245d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/23/same-thing-every-night-pinky.md b/content/posts/2007/08/23/same-thing-every-night-pinky.md
new file mode 100644
index 00000000..b564a977
--- /dev/null
+++ b/content/posts/2007/08/23/same-thing-every-night-pinky.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-23T06:16:12-07:00"
+title = "Same thing every night, Pinky..."
+image = "http://farm2.static.flickr.com/1328/1125337939_e6df88c400.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/24/sitting-pretty.md b/content/posts/2007/08/24/sitting-pretty.md
new file mode 100644
index 00000000..f7d181c1
--- /dev/null
+++ b/content/posts/2007/08/24/sitting-pretty.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-24T06:17:05-07:00"
+title = "Sitting Pretty"
+image = "http://farm2.static.flickr.com/1155/1126178392_239cb0bebf.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/25/sing-a-song.md b/content/posts/2007/08/25/sing-a-song.md
new file mode 100644
index 00000000..58138aa6
--- /dev/null
+++ b/content/posts/2007/08/25/sing-a-song.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-25T05:47:40-07:00"
+title = "Sing a Song"
+image = "http://farm2.static.flickr.com/1071/1212314943_a319237ea5.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/26/is-this-my-baaaaad-side.md b/content/posts/2007/08/26/is-this-my-baaaaad-side.md
new file mode 100644
index 00000000..22a3f702
--- /dev/null
+++ b/content/posts/2007/08/26/is-this-my-baaaaad-side.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-26T05:51:05-07:00"
+title = "Is this my baaaaad side?"
+image = "http://farm2.static.flickr.com/1277/1212315797_6b24b27555.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/27/pondering.md b/content/posts/2007/08/27/pondering.md
new file mode 100644
index 00000000..bd755364
--- /dev/null
+++ b/content/posts/2007/08/27/pondering.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-27T05:52:09-07:00"
+title = "Pondering..."
+image = "http://farm2.static.flickr.com/1114/1212339783_6f074f77f4.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/28/reach-for-the-sky.md b/content/posts/2007/08/28/reach-for-the-sky.md
new file mode 100644
index 00000000..7e293d6b
--- /dev/null
+++ b/content/posts/2007/08/28/reach-for-the-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-28T05:52:59-07:00"
+title = "Reach for the sky"
+image = "http://farm2.static.flickr.com/1385/1212338297_9db491c30e.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/29/lots-of-flowers.md b/content/posts/2007/08/29/lots-of-flowers.md
new file mode 100644
index 00000000..4325c9ed
--- /dev/null
+++ b/content/posts/2007/08/29/lots-of-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-29T05:54:38-07:00"
+title = "lots of flowers"
+image = "http://farm2.static.flickr.com/1118/1213202030_337c571d57.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/30/blue-flowers.md b/content/posts/2007/08/30/blue-flowers.md
new file mode 100644
index 00000000..0e41f0ae
--- /dev/null
+++ b/content/posts/2007/08/30/blue-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-30T05:55:37-07:00"
+title = "Blue Flowers"
+image = "http://farm2.static.flickr.com/1212/1213201068_78b6f7e4a4.jpg"
++++
+
+
+
diff --git a/content/posts/2007/08/31/bet-you-cannot-guess.md b/content/posts/2007/08/31/bet-you-cannot-guess.md
new file mode 100644
index 00000000..dfc47c54
--- /dev/null
+++ b/content/posts/2007/08/31/bet-you-cannot-guess.md
@@ -0,0 +1,8 @@
++++
+date = "2007-08-31T05:56:13-07:00"
+title = "bet you cannot guess..."
+image = "http://farm2.static.flickr.com/1377/1213199652_ecbde2d43b.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/01/dragonfly.md b/content/posts/2007/09/01/dragonfly.md
new file mode 100644
index 00000000..d5d8a9da
--- /dev/null
+++ b/content/posts/2007/09/01/dragonfly.md
@@ -0,0 +1,9 @@
++++
+date = "2007-09-01T05:56:58-07:00"
+title = "Dragonfly!"
+image = "http://farm2.static.flickr.com/1307/1213198856_6c1291a7af.jpg"
++++
+
+
+
+This was the best I got this outing...these guess are shy.
diff --git a/content/posts/2007/09/02/a-rose-is-still-a-rose-2.md b/content/posts/2007/09/02/a-rose-is-still-a-rose-2.md
new file mode 100644
index 00000000..dc488e24
--- /dev/null
+++ b/content/posts/2007/09/02/a-rose-is-still-a-rose-2.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-02T05:57:59-07:00"
+title = "A rose is still a rose..."
+image = "http://farm2.static.flickr.com/1058/1212333559_bbda8da303.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/03/oh-bee-have.md b/content/posts/2007/09/03/oh-bee-have.md
new file mode 100644
index 00000000..74c23279
--- /dev/null
+++ b/content/posts/2007/09/03/oh-bee-have.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-03T05:58:34-07:00"
+title = "Oh, bee-have..."
+image = "http://farm2.static.flickr.com/1185/1212332881_ca3f23c408.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/04/contemplation.md b/content/posts/2007/09/04/contemplation.md
new file mode 100644
index 00000000..3a375d06
--- /dev/null
+++ b/content/posts/2007/09/04/contemplation.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-04T05:59:12-07:00"
+title = "Contemplation"
+image = "http://farm2.static.flickr.com/1080/1212332235_cf73f213e6.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/05/brown-butterfly-on-flowers.md b/content/posts/2007/09/05/brown-butterfly-on-flowers.md
new file mode 100644
index 00000000..29c814d0
--- /dev/null
+++ b/content/posts/2007/09/05/brown-butterfly-on-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-05T05:59:53-07:00"
+title = "Brown butterfly on flowers"
+image = "http://farm2.static.flickr.com/1031/1213196130_fde5ab8c49.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/06/windmill-3.md b/content/posts/2007/09/06/windmill-3.md
new file mode 100644
index 00000000..56f6c721
--- /dev/null
+++ b/content/posts/2007/09/06/windmill-3.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-06T06:00:29-07:00"
+title = "Windmill"
+image = "http://farm2.static.flickr.com/1152/1213195128_5ba19fac20.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/07/purple.md b/content/posts/2007/09/07/purple.md
new file mode 100644
index 00000000..fb151a9f
--- /dev/null
+++ b/content/posts/2007/09/07/purple.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-07T06:01:00-07:00"
+title = "purple"
+image = "http://farm2.static.flickr.com/1309/1212329705_94e52c916a.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/08/passion-of-the-flower.md b/content/posts/2007/09/08/passion-of-the-flower.md
new file mode 100644
index 00000000..ddb815d0
--- /dev/null
+++ b/content/posts/2007/09/08/passion-of-the-flower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-08T06:02:03-07:00"
+title = "Passion of the flower"
+image = "http://farm2.static.flickr.com/1056/1213193660_0ad85b360b.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/09/a-lone-star.md b/content/posts/2007/09/09/a-lone-star.md
new file mode 100644
index 00000000..2e0bdd17
--- /dev/null
+++ b/content/posts/2007/09/09/a-lone-star.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-09T06:02:46-07:00"
+title = "A Lone Star?"
+image = "http://farm2.static.flickr.com/1035/1213189110_fca385b15b.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/10/holy-bantam-batman.md b/content/posts/2007/09/10/holy-bantam-batman.md
new file mode 100644
index 00000000..8931ce04
--- /dev/null
+++ b/content/posts/2007/09/10/holy-bantam-batman.md
@@ -0,0 +1,10 @@
++++
+date = "2007-09-10T06:03:24-07:00"
+title = "Holy Bantam, Batman!"
+image = "http://farm2.static.flickr.com/1295/1212323049_ed0f7a40d5.jpg"
++++
+
+
+
+This is the first in a series of a very interesting planter I found at
+the Richmod Farmers Market.
diff --git a/content/posts/2007/09/11/cracked-window.md b/content/posts/2007/09/11/cracked-window.md
new file mode 100644
index 00000000..1b5f5a28
--- /dev/null
+++ b/content/posts/2007/09/11/cracked-window.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-11T06:06:11-07:00"
+title = "Cracked Window"
+image = "http://farm2.static.flickr.com/1149/1212319967_039f0294e2.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/12/0299gal.md b/content/posts/2007/09/12/0299gal.md
new file mode 100644
index 00000000..0cce0005
--- /dev/null
+++ b/content/posts/2007/09/12/0299gal.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-12T06:06:55-07:00"
+title = "$0.299/gal?"
+image = "http://farm2.static.flickr.com/1231/1212327493_4588f38c27.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/13/truckin-with-the-plants.md b/content/posts/2007/09/13/truckin-with-the-plants.md
new file mode 100644
index 00000000..ef465d6b
--- /dev/null
+++ b/content/posts/2007/09/13/truckin-with-the-plants.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-13T06:07:46-07:00"
+title = "Truckin' with the plants"
+image = "http://farm2.static.flickr.com/1059/1213185990_312f5ceb9a.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/14/tea-er-plant-time.md b/content/posts/2007/09/14/tea-er-plant-time.md
new file mode 100644
index 00000000..0cf32e78
--- /dev/null
+++ b/content/posts/2007/09/14/tea-er-plant-time.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-14T06:08:50-07:00"
+title = "Tea, er, plant time?"
+image = "http://farm2.static.flickr.com/1329/1212317537_153217a7e6.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/15/that-truck-has-a-big-horn.md b/content/posts/2007/09/15/that-truck-has-a-big-horn.md
new file mode 100644
index 00000000..c01e695d
--- /dev/null
+++ b/content/posts/2007/09/15/that-truck-has-a-big-horn.md
@@ -0,0 +1,11 @@
++++
+date = "2007-09-15T04:37:05-07:00"
+title = "That truck has a big horn..."
+image = "http://farm2.static.flickr.com/1381/1365852259_b684960fd4.jpg"
++++
+
+
+
+
+
+From the Richmond Farmers Market...
diff --git a/content/posts/2007/09/16/pink-rose.md b/content/posts/2007/09/16/pink-rose.md
new file mode 100644
index 00000000..f7352926
--- /dev/null
+++ b/content/posts/2007/09/16/pink-rose.md
@@ -0,0 +1,9 @@
++++
+date = "2007-09-16T09:36:19-07:00"
+title = "Pink Rose"
+image = "http://farm2.static.flickr.com/1096/1366516652_7cb27231d2.jpg"
++++
+
+
+
+
diff --git a/content/posts/2007/09/17/horny-cow.md b/content/posts/2007/09/17/horny-cow.md
new file mode 100644
index 00000000..78d76c57
--- /dev/null
+++ b/content/posts/2007/09/17/horny-cow.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-17T04:41:04-07:00"
+title = "Horny Cow"
+image = "http://farm2.static.flickr.com/1410/1366748298_8c99d485e6.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/18/wood-star.md b/content/posts/2007/09/18/wood-star.md
new file mode 100644
index 00000000..8d98500c
--- /dev/null
+++ b/content/posts/2007/09/18/wood-star.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-18T04:41:48-07:00"
+title = "Wood Star"
+image = "http://farm2.static.flickr.com/1259/1365854849_b7c52015be.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/19/the-door-to.md b/content/posts/2007/09/19/the-door-to.md
new file mode 100644
index 00000000..7358ee78
--- /dev/null
+++ b/content/posts/2007/09/19/the-door-to.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-19T04:42:42-07:00"
+title = "The Door to..."
+image = "http://farm2.static.flickr.com/1157/1365854011_e3ba3d8a0a.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/20/windmill-small.md b/content/posts/2007/09/20/windmill-small.md
new file mode 100644
index 00000000..5be56e9c
--- /dev/null
+++ b/content/posts/2007/09/20/windmill-small.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-20T04:43:51-07:00"
+title = "Windmill, Small"
+image = "http://farm2.static.flickr.com/1320/1365853157_c586a71645.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/21/air-plant.md b/content/posts/2007/09/21/air-plant.md
new file mode 100644
index 00000000..839e4cb7
--- /dev/null
+++ b/content/posts/2007/09/21/air-plant.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-21T04:44:53-07:00"
+title = "Air plant"
+image = "http://farm2.static.flickr.com/1380/1366751498_11b07663de.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/22/small-flowers.md b/content/posts/2007/09/22/small-flowers.md
new file mode 100644
index 00000000..2a969ed4
--- /dev/null
+++ b/content/posts/2007/09/22/small-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-22T04:45:30-07:00"
+title = "Small Flowers"
+image = "http://farm2.static.flickr.com/1083/1366750392_38fdbb95fe.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/23/small-flowers-different-view.md b/content/posts/2007/09/23/small-flowers-different-view.md
new file mode 100644
index 00000000..baa73a7f
--- /dev/null
+++ b/content/posts/2007/09/23/small-flowers-different-view.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-23T04:46:04-07:00"
+title = "Small Flowers, Different View"
+image = "http://farm2.static.flickr.com/1180/1365856321_ee1cc911d3.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/24/bw-dragonfly.md b/content/posts/2007/09/24/bw-dragonfly.md
new file mode 100644
index 00000000..76121312
--- /dev/null
+++ b/content/posts/2007/09/24/bw-dragonfly.md
@@ -0,0 +1,9 @@
++++
+date = "2007-09-24T04:46:59-07:00"
+title = "B&W Dragonfly"
+image = "http://farm2.static.flickr.com/1020/1366522138_00ae51b38b.jpg"
++++
+
+
+![B[]W Dragonfly](http://farm2.static.flickr.com/1020/1366522138_00ae51b38b.jpg)
+First a small group of Dragonflies from the backyard.
diff --git a/content/posts/2007/09/25/rust-dragonfly.md b/content/posts/2007/09/25/rust-dragonfly.md
new file mode 100644
index 00000000..91bedcfd
--- /dev/null
+++ b/content/posts/2007/09/25/rust-dragonfly.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-25T04:49:43-07:00"
+title = "Rust Dragonfly"
+image = "http://farm2.static.flickr.com/1222/1366523178_0e9d27c6d4.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/26/green-dragonfly-on-a-rose.md b/content/posts/2007/09/26/green-dragonfly-on-a-rose.md
new file mode 100644
index 00000000..5e8de66b
--- /dev/null
+++ b/content/posts/2007/09/26/green-dragonfly-on-a-rose.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-26T04:50:37-07:00"
+title = "Green Dragonfly on a Rose"
+image = "http://farm2.static.flickr.com/1083/1366523912_b3499685d3.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/27/brown-dragonfly.md b/content/posts/2007/09/27/brown-dragonfly.md
new file mode 100644
index 00000000..3f36e179
--- /dev/null
+++ b/content/posts/2007/09/27/brown-dragonfly.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-27T04:51:41-07:00"
+title = "Brown Dragonfly"
+image = "http://farm2.static.flickr.com/1226/1366524300_afe9db712b.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/28/sunset-from-the-phone.md b/content/posts/2007/09/28/sunset-from-the-phone.md
new file mode 100644
index 00000000..4faaaf40
--- /dev/null
+++ b/content/posts/2007/09/28/sunset-from-the-phone.md
@@ -0,0 +1,9 @@
++++
+date = "2007-09-28T04:52:48-07:00"
+title = "Sunset from the Phone..."
+image = "http://farm2.static.flickr.com/1269/1333331850_57c7379bf4.jpg"
++++
+
+
+
+Taken with the camera on my phone...not bad, eh?
diff --git a/content/posts/2007/09/29/corner-of-americana.md b/content/posts/2007/09/29/corner-of-americana.md
new file mode 100644
index 00000000..87d372c9
--- /dev/null
+++ b/content/posts/2007/09/29/corner-of-americana.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-29T05:10:35-07:00"
+title = "Corner of Americana"
+image = "http://farm2.static.flickr.com/1342/1393340697_3bd85fe47b.jpg"
++++
+
+
+
diff --git a/content/posts/2007/09/30/pretty-annuals.md b/content/posts/2007/09/30/pretty-annuals.md
new file mode 100644
index 00000000..55d874df
--- /dev/null
+++ b/content/posts/2007/09/30/pretty-annuals.md
@@ -0,0 +1,8 @@
++++
+date = "2007-09-30T05:13:20-07:00"
+title = "Pretty Annuals"
+image = "http://farm1.static.flickr.com/57/429720812_87733a1927.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/01/lilies-of-the-deck.md b/content/posts/2007/10/01/lilies-of-the-deck.md
new file mode 100644
index 00000000..222b9529
--- /dev/null
+++ b/content/posts/2007/10/01/lilies-of-the-deck.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-01T05:14:04-07:00"
+title = "Lilies of the Deck"
+image = "http://farm1.static.flickr.com/207/469894795_ad06877fc4.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/02/mooo.md b/content/posts/2007/10/02/mooo.md
new file mode 100644
index 00000000..671ac466
--- /dev/null
+++ b/content/posts/2007/10/02/mooo.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-02T05:15:08-07:00"
+title = "Mooo"
+image = "http://farm1.static.flickr.com/180/435962667_fd42f6fa7e.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/03/sunflow-in-sun-flare.md b/content/posts/2007/10/03/sunflow-in-sun-flare.md
new file mode 100644
index 00000000..3410de1f
--- /dev/null
+++ b/content/posts/2007/10/03/sunflow-in-sun-flare.md
@@ -0,0 +1,9 @@
++++
+date = "2007-10-03T22:22:39-07:00"
+title = "Sunflow in sun flare"
+image = "http://farm1.static.flickr.com/179/435939866_27522fce7f.jpg"
++++
+
+
+
+Sorry this is late
diff --git a/content/posts/2007/10/04/pretty-purple.md b/content/posts/2007/10/04/pretty-purple.md
new file mode 100644
index 00000000..d3aa8166
--- /dev/null
+++ b/content/posts/2007/10/04/pretty-purple.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-04T06:00:59-07:00"
+title = "pretty purple"
+image = "http://farm2.static.flickr.com/1045/536630141_4de08faa6e.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/05/more-purple-flowers.md b/content/posts/2007/10/05/more-purple-flowers.md
new file mode 100644
index 00000000..e9f2c6fd
--- /dev/null
+++ b/content/posts/2007/10/05/more-purple-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-05T15:54:57-07:00"
+title = "More purple flowers"
+image = "http://farm1.static.flickr.com/180/469895656_3c14560f3e.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/06/again-with-the-purple-flowers.md b/content/posts/2007/10/06/again-with-the-purple-flowers.md
new file mode 100644
index 00000000..e431f502
--- /dev/null
+++ b/content/posts/2007/10/06/again-with-the-purple-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-06T05:54:58-07:00"
+title = "Again with the purple flowers?"
+image = "http://farm1.static.flickr.com/196/469896720_d4e6f59de8.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/08/rose-pt-i.md b/content/posts/2007/10/08/rose-pt-i.md
new file mode 100644
index 00000000..7964f027
--- /dev/null
+++ b/content/posts/2007/10/08/rose-pt-i.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-08T12:35:40-07:00"
+title = "Rose, pt I"
+image = "http://farm2.static.flickr.com/1214/1366514154_804abb5a0a.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/09/rose-pt-ii.md b/content/posts/2007/10/09/rose-pt-ii.md
new file mode 100644
index 00000000..a098026b
--- /dev/null
+++ b/content/posts/2007/10/09/rose-pt-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-09T12:35:43-07:00"
+title = "Rose, pt II"
+image = "http://farm2.static.flickr.com/1116/1365623025_de960d1bea.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/10/rose-pt-iii.md b/content/posts/2007/10/10/rose-pt-iii.md
new file mode 100644
index 00000000..43d6c6a6
--- /dev/null
+++ b/content/posts/2007/10/10/rose-pt-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-10T12:36:23-07:00"
+title = "Rose, pt III"
+image = "http://farm2.static.flickr.com/1171/1366515892_797ed55ccd.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/11/rose-pt-iv.md b/content/posts/2007/10/11/rose-pt-iv.md
new file mode 100644
index 00000000..57b30c92
--- /dev/null
+++ b/content/posts/2007/10/11/rose-pt-iv.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-11T12:37:08-07:00"
+title = "Rose, pt IV"
+image = "http://farm2.static.flickr.com/1096/1366516652_7cb27231d2.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/13/southwest-side-of-downtown.md b/content/posts/2007/10/13/southwest-side-of-downtown.md
new file mode 100644
index 00000000..64c1584b
--- /dev/null
+++ b/content/posts/2007/10/13/southwest-side-of-downtown.md
@@ -0,0 +1,9 @@
++++
+date = "2007-10-13T05:19:00-07:00"
+title = "Southwest side of Downtown"
+image = "http://farm3.static.flickr.com/2293/1523658916_fbd67fe845.jpg"
++++
+
+
+
+From a experiential shot I did decently.
diff --git a/content/posts/2007/10/14/downtown-behind-a-field.md b/content/posts/2007/10/14/downtown-behind-a-field.md
new file mode 100644
index 00000000..423487e6
--- /dev/null
+++ b/content/posts/2007/10/14/downtown-behind-a-field.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-14T05:21:06-07:00"
+title = "Downtown behind a field"
+image = "http://farm3.static.flickr.com/2359/1522792791_8558237ded.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/15/sunset-from-campus.md b/content/posts/2007/10/15/sunset-from-campus.md
new file mode 100644
index 00000000..fb2e74b4
--- /dev/null
+++ b/content/posts/2007/10/15/sunset-from-campus.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-15T05:22:03-07:00"
+title = "Sunset from Campus"
+image = "http://farm3.static.flickr.com/2149/1522792029_a68e8067a8.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/16/moody-towers-at-sunset.md b/content/posts/2007/10/16/moody-towers-at-sunset.md
new file mode 100644
index 00000000..7ca38b8b
--- /dev/null
+++ b/content/posts/2007/10/16/moody-towers-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-16T05:22:57-07:00"
+title = "Moody Towers at sunset"
+image = "http://farm3.static.flickr.com/2187/1523656688_c2d39afdc4.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/17/channel-8-at-sunset.md b/content/posts/2007/10/17/channel-8-at-sunset.md
new file mode 100644
index 00000000..3e01e8d3
--- /dev/null
+++ b/content/posts/2007/10/17/channel-8-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-17T05:23:43-07:00"
+title = "Channel 8 at sunset"
+image = "http://farm3.static.flickr.com/2389/1523656076_e61d0b1cfe.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/18/southeast-side-of-downtown.md b/content/posts/2007/10/18/southeast-side-of-downtown.md
new file mode 100644
index 00000000..2d27670e
--- /dev/null
+++ b/content/posts/2007/10/18/southeast-side-of-downtown.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-18T05:24:23-07:00"
+title = "Southeast side of Downtown"
+image = "http://farm3.static.flickr.com/2056/1522790077_339f903898.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/19/downtown-at-sunset.md b/content/posts/2007/10/19/downtown-at-sunset.md
new file mode 100644
index 00000000..98531423
--- /dev/null
+++ b/content/posts/2007/10/19/downtown-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-19T05:25:33-07:00"
+title = "Downtown at sunset"
+image = "http://farm3.static.flickr.com/2015/1522788987_011b2ab146.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/20/i-10-at-sunset.md b/content/posts/2007/10/20/i-10-at-sunset.md
new file mode 100644
index 00000000..4298bf24
--- /dev/null
+++ b/content/posts/2007/10/20/i-10-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-20T05:26:13-07:00"
+title = "I-10 at sunset"
+image = "http://farm3.static.flickr.com/2085/1523653606_c0be60c2f8.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/21/building-and-cranes-at-sunset.md b/content/posts/2007/10/21/building-and-cranes-at-sunset.md
new file mode 100644
index 00000000..4bfe84e9
--- /dev/null
+++ b/content/posts/2007/10/21/building-and-cranes-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-21T05:27:06-07:00"
+title = "Building and cranes at sunset"
+image = "http://farm3.static.flickr.com/2321/1522787389_1b833cd199.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/22/fairies.md b/content/posts/2007/10/22/fairies.md
new file mode 100644
index 00000000..3dea11ba
--- /dev/null
+++ b/content/posts/2007/10/22/fairies.md
@@ -0,0 +1,9 @@
++++
+date = "2007-10-22T05:28:29-07:00"
+title = "Fairies!"
+image = "http://farm3.static.flickr.com/2043/1632814209_5ec37e822b.jpg"
++++
+
+
+
+Fairy weekend at TRF 2007
diff --git a/content/posts/2007/10/23/fairy-wings-pt-i.md b/content/posts/2007/10/23/fairy-wings-pt-i.md
new file mode 100644
index 00000000..8e14b27d
--- /dev/null
+++ b/content/posts/2007/10/23/fairy-wings-pt-i.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-23T06:11:01-07:00"
+title = "Fairy Wings, Pt I"
+image = "http://farm3.static.flickr.com/2075/1632817093_fbf9c8caf4.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/24/fairy-wings-pt-ii.md b/content/posts/2007/10/24/fairy-wings-pt-ii.md
new file mode 100644
index 00000000..8eeb5a07
--- /dev/null
+++ b/content/posts/2007/10/24/fairy-wings-pt-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-24T06:18:17-07:00"
+title = "Fairy Wings, Pt II"
+image = "http://farm3.static.flickr.com/2156/1632795243_fdf88a2d06.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/25/fairy-wings-pt-iii.md b/content/posts/2007/10/25/fairy-wings-pt-iii.md
new file mode 100644
index 00000000..ef934ba9
--- /dev/null
+++ b/content/posts/2007/10/25/fairy-wings-pt-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-25T06:18:55-07:00"
+title = "Fairy Wings, Pt III"
+image = "http://farm3.static.flickr.com/2153/1632790165_933b13f3c1.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/26/fairy-wings-pt-iv.md b/content/posts/2007/10/26/fairy-wings-pt-iv.md
new file mode 100644
index 00000000..05ab9156
--- /dev/null
+++ b/content/posts/2007/10/26/fairy-wings-pt-iv.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-26T06:19:27-07:00"
+title = "Fairy Wings, Pt IV"
+image = "http://farm3.static.flickr.com/2181/1633669242_b44f02a681.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/27/fairy-wings-pt-v.md b/content/posts/2007/10/27/fairy-wings-pt-v.md
new file mode 100644
index 00000000..3f6940b9
--- /dev/null
+++ b/content/posts/2007/10/27/fairy-wings-pt-v.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-27T06:19:59-07:00"
+title = "Fairy Wings, Pt V"
+image = "http://farm3.static.flickr.com/2296/1633667748_bcf0787721.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/28/fairy-wings-pt-vi.md b/content/posts/2007/10/28/fairy-wings-pt-vi.md
new file mode 100644
index 00000000..6d855c6d
--- /dev/null
+++ b/content/posts/2007/10/28/fairy-wings-pt-vi.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-28T06:20:36-07:00"
+title = "Fairy Wings, Pt VI"
+image = "http://farm3.static.flickr.com/2215/1632783979_b2f7cdfa6d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/29/fairy-wings-pt-vii.md b/content/posts/2007/10/29/fairy-wings-pt-vii.md
new file mode 100644
index 00000000..6363a9cf
--- /dev/null
+++ b/content/posts/2007/10/29/fairy-wings-pt-vii.md
@@ -0,0 +1,9 @@
++++
+date = "2007-10-29T06:21:14-07:00"
+title = "Fairy Wings, Pt VII"
+image = "http://farm3.static.flickr.com/2326/1633664218_26c2fb2fa3.jpg"
++++
+
+
+
+These are my favorite from this year. Last of the wings...
diff --git a/content/posts/2007/10/30/dancing-nymph.md b/content/posts/2007/10/30/dancing-nymph.md
new file mode 100644
index 00000000..b9895d2c
--- /dev/null
+++ b/content/posts/2007/10/30/dancing-nymph.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-30T06:28:05-07:00"
+title = "Dancing Nymph"
+image = "http://farm3.static.flickr.com/2215/1633686982_61dd6d133a.jpg"
++++
+
+
+
diff --git a/content/posts/2007/10/31/happy-halloween.md b/content/posts/2007/10/31/happy-halloween.md
new file mode 100644
index 00000000..ec67be90
--- /dev/null
+++ b/content/posts/2007/10/31/happy-halloween.md
@@ -0,0 +1,8 @@
++++
+date = "2007-10-31T04:24:41-07:00"
+title = "Happy Halloween!"
+image = "http://farm3.static.flickr.com/2226/1802751353_ec604392d0.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/01/row-of-saddles.md b/content/posts/2007/11/01/row-of-saddles.md
new file mode 100644
index 00000000..e52b32e5
--- /dev/null
+++ b/content/posts/2007/11/01/row-of-saddles.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-01T06:22:38-07:00"
+title = "Row of saddles"
+image = "http://farm3.static.flickr.com/2154/1633671014_24c8ff77a8.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/02/parasols-in-the-sun.md b/content/posts/2007/11/02/parasols-in-the-sun.md
new file mode 100644
index 00000000..9a987a1d
--- /dev/null
+++ b/content/posts/2007/11/02/parasols-in-the-sun.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-02T06:23:39-07:00"
+title = "Parasols in the sun"
+image = "http://farm3.static.flickr.com/2199/1633674504_614e121b4c.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/03/clock-tower-at-trf.md b/content/posts/2007/11/03/clock-tower-at-trf.md
new file mode 100644
index 00000000..086ad0f7
--- /dev/null
+++ b/content/posts/2007/11/03/clock-tower-at-trf.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-03T06:24:39-07:00"
+title = "Clock tower at TRF"
+image = "http://farm3.static.flickr.com/2127/1633676392_af75901d45.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/04/castle-walls-at-trf.md b/content/posts/2007/11/04/castle-walls-at-trf.md
new file mode 100644
index 00000000..d508921f
--- /dev/null
+++ b/content/posts/2007/11/04/castle-walls-at-trf.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-04T06:25:12-07:00"
+title = "Castle Walls at TRF"
+image = "http://farm3.static.flickr.com/2181/1632796939_df637ef477.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/05/chapel-cross-at-trf-i.md b/content/posts/2007/11/05/chapel-cross-at-trf-i.md
new file mode 100644
index 00000000..8a56f13b
--- /dev/null
+++ b/content/posts/2007/11/05/chapel-cross-at-trf-i.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-05T06:25:47-07:00"
+title = "Chapel Cross at TRF I"
+image = "http://farm3.static.flickr.com/2294/1632798383_d315eeb99c.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/06/chapel-cross-at-trf-ii.md b/content/posts/2007/11/06/chapel-cross-at-trf-ii.md
new file mode 100644
index 00000000..0f37a39e
--- /dev/null
+++ b/content/posts/2007/11/06/chapel-cross-at-trf-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-06T06:26:49-07:00"
+title = "Chapel Cross at TRF II"
+image = "http://farm3.static.flickr.com/2070/1632799673_f25316c747.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/07/chapel-cross-at-trf-iii.md b/content/posts/2007/11/07/chapel-cross-at-trf-iii.md
new file mode 100644
index 00000000..9c2f28cf
--- /dev/null
+++ b/content/posts/2007/11/07/chapel-cross-at-trf-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-07T06:27:28-07:00"
+title = "Chapel Cross at TRF III"
+image = "http://farm3.static.flickr.com/2238/1633684392_3a66868cf7.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/08/fairy-artist.md b/content/posts/2007/11/08/fairy-artist.md
new file mode 100644
index 00000000..3ea21afc
--- /dev/null
+++ b/content/posts/2007/11/08/fairy-artist.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-08T06:29:36-07:00"
+title = "Fairy Artist"
+image = "http://farm3.static.flickr.com/2173/1633688628_f9ab50a921.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/09/pretty-light-catcher-at-trf.md b/content/posts/2007/11/09/pretty-light-catcher-at-trf.md
new file mode 100644
index 00000000..0a4376a4
--- /dev/null
+++ b/content/posts/2007/11/09/pretty-light-catcher-at-trf.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-09T06:30:16-07:00"
+title = "Pretty Light Catcher at TRF"
+image = "http://farm3.static.flickr.com/2120/1632812837_4622f1c5de.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/10/guard-tower-at-trf.md b/content/posts/2007/11/10/guard-tower-at-trf.md
new file mode 100644
index 00000000..9bcc4d32
--- /dev/null
+++ b/content/posts/2007/11/10/guard-tower-at-trf.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-10T06:31:11-07:00"
+title = "Guard Tower at TRF"
+image = "http://farm3.static.flickr.com/2014/1633701256_da28c07f7d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/11/suit-of-armor.md b/content/posts/2007/11/11/suit-of-armor.md
new file mode 100644
index 00000000..8eb8e4d9
--- /dev/null
+++ b/content/posts/2007/11/11/suit-of-armor.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-11T06:31:56-07:00"
+title = "Suit of Armor"
+image = "http://farm3.static.flickr.com/2340/1632811565_33b64f2d3f.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/12/evil-armor-at-trf.md b/content/posts/2007/11/12/evil-armor-at-trf.md
new file mode 100644
index 00000000..ffd6f66c
--- /dev/null
+++ b/content/posts/2007/11/12/evil-armor-at-trf.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-12T06:32:31-07:00"
+title = "Evil Armor at TRF"
+image = "http://farm3.static.flickr.com/2175/1632807513_e51b387af7.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/13/still-life-at-the-farm.md b/content/posts/2007/11/13/still-life-at-the-farm.md
new file mode 100644
index 00000000..ec6f4ccf
--- /dev/null
+++ b/content/posts/2007/11/13/still-life-at-the-farm.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-13T05:52:19-07:00"
+title = "Still Life at the Farm"
+image = "http://farm3.static.flickr.com/2168/1802766049_fb5e819159.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/14/still-life-at-dewberry-farms.md b/content/posts/2007/11/14/still-life-at-dewberry-farms.md
new file mode 100644
index 00000000..06bc615a
--- /dev/null
+++ b/content/posts/2007/11/14/still-life-at-dewberry-farms.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-14T05:53:23-07:00"
+title = "Still Life at Dewberry Farms"
+image = "http://farm3.static.flickr.com/2097/1803625490_cf8baa1a14.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/15/man-made-water-fall.md b/content/posts/2007/11/15/man-made-water-fall.md
new file mode 100644
index 00000000..e08d603a
--- /dev/null
+++ b/content/posts/2007/11/15/man-made-water-fall.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-15T05:54:02-07:00"
+title = "Man-Made Water Fall"
+image = "http://farm3.static.flickr.com/2074/1802778279_b292c6ec9f.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/16/field-of-flowers.md b/content/posts/2007/11/16/field-of-flowers.md
new file mode 100644
index 00000000..f1730416
--- /dev/null
+++ b/content/posts/2007/11/16/field-of-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-16T05:54:45-07:00"
+title = "Field of Flowers"
+image = "http://farm3.static.flickr.com/2116/1803622206_b3aa70151b.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/17/large-orange-sunflower.md b/content/posts/2007/11/17/large-orange-sunflower.md
new file mode 100644
index 00000000..43398dfe
--- /dev/null
+++ b/content/posts/2007/11/17/large-orange-sunflower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-17T05:55:36-07:00"
+title = "Large, Orange Sunflower"
+image = "http://farm3.static.flickr.com/2175/1802776571_bf2750af5e.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/18/flower-and-bee.md b/content/posts/2007/11/18/flower-and-bee.md
new file mode 100644
index 00000000..59127214
--- /dev/null
+++ b/content/posts/2007/11/18/flower-and-bee.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-18T05:56:26-07:00"
+title = "Flower and Bee"
+image = "http://farm3.static.flickr.com/2270/1802775865_94962f3799.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/19/detail-of-flower.md b/content/posts/2007/11/19/detail-of-flower.md
new file mode 100644
index 00000000..4f969f5d
--- /dev/null
+++ b/content/posts/2007/11/19/detail-of-flower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-19T05:57:01-07:00"
+title = "Detail of Flower"
+image = "http://farm3.static.flickr.com/2266/1802774883_0a2f892edc.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/20/detail-of-orange-sunflower.md b/content/posts/2007/11/20/detail-of-orange-sunflower.md
new file mode 100644
index 00000000..be9aaec5
--- /dev/null
+++ b/content/posts/2007/11/20/detail-of-orange-sunflower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-20T05:57:35-07:00"
+title = "Detail of Orange Sunflower"
+image = "http://farm3.static.flickr.com/2312/1803618366_7a75610acd.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/21/detail-of-flower-ii.md b/content/posts/2007/11/21/detail-of-flower-ii.md
new file mode 100644
index 00000000..f3a63e58
--- /dev/null
+++ b/content/posts/2007/11/21/detail-of-flower-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-21T05:58:35-07:00"
+title = "Detail of Flower II"
+image = "http://farm3.static.flickr.com/2020/1802774049_1a48dba149.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/22/detail-of-flower-iii.md b/content/posts/2007/11/22/detail-of-flower-iii.md
new file mode 100644
index 00000000..105b89c6
--- /dev/null
+++ b/content/posts/2007/11/22/detail-of-flower-iii.md
@@ -0,0 +1,9 @@
++++
+date = "2007-11-22T05:59:12-07:00"
+title = "Detail of Flower III"
+image = "http://farm3.static.flickr.com/2049/1803617818_4dce381ae6.jpg"
++++
+
+
+
+Happy Thanksgiving in the US!
diff --git a/content/posts/2007/11/23/backlite-sunflower.md b/content/posts/2007/11/23/backlite-sunflower.md
new file mode 100644
index 00000000..17de526a
--- /dev/null
+++ b/content/posts/2007/11/23/backlite-sunflower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-23T06:00:10-07:00"
+title = "Backlite Sunflower"
+image = "http://farm3.static.flickr.com/2243/1803617220_e3c03d54e7.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/24/sad-sunflower.md b/content/posts/2007/11/24/sad-sunflower.md
new file mode 100644
index 00000000..2c9df3b1
--- /dev/null
+++ b/content/posts/2007/11/24/sad-sunflower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-24T06:00:56-07:00"
+title = "Sad Sunflower"
+image = "http://farm3.static.flickr.com/2142/1802768615_4b27e97f52.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/25/red-flower.md b/content/posts/2007/11/25/red-flower.md
new file mode 100644
index 00000000..c7ff131b
--- /dev/null
+++ b/content/posts/2007/11/25/red-flower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-25T06:01:27-07:00"
+title = "Red Flower"
+image = "http://farm3.static.flickr.com/2092/1802771079_b8453d47e7.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/26/purple-flower-and-butterfly.md b/content/posts/2007/11/26/purple-flower-and-butterfly.md
new file mode 100644
index 00000000..ec0f5236
--- /dev/null
+++ b/content/posts/2007/11/26/purple-flower-and-butterfly.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-26T06:01:58-07:00"
+title = "Purple Flower and Butterfly"
+image = "http://farm3.static.flickr.com/2325/1802769075_c132a97b14.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/27/yellow-sunflower-and-bug.md b/content/posts/2007/11/27/yellow-sunflower-and-bug.md
new file mode 100644
index 00000000..1e268f7f
--- /dev/null
+++ b/content/posts/2007/11/27/yellow-sunflower-and-bug.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-27T06:02:26-07:00"
+title = "Yellow Sunflower and Bug"
+image = "http://farm3.static.flickr.com/2195/1802768067_7ab492721f.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/28/purple-flower-and-monach-butterfly.md b/content/posts/2007/11/28/purple-flower-and-monach-butterfly.md
new file mode 100644
index 00000000..4d40eeb7
--- /dev/null
+++ b/content/posts/2007/11/28/purple-flower-and-monach-butterfly.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-28T06:03:07-07:00"
+title = "Purple Flower and Monach Butterfly"
+image = "http://farm3.static.flickr.com/2183/1802767509_125a980e3c.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/29/sunflower-3.md b/content/posts/2007/11/29/sunflower-3.md
new file mode 100644
index 00000000..3ec9c1f0
--- /dev/null
+++ b/content/posts/2007/11/29/sunflower-3.md
@@ -0,0 +1,8 @@
++++
+date = "2007-11-29T06:04:05-07:00"
+title = "Sunflower"
+image = "http://farm3.static.flickr.com/2057/1803610608_e9b3ca794d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/11/30/low-purple-flower.md b/content/posts/2007/11/30/low-purple-flower.md
new file mode 100644
index 00000000..b751e6a5
--- /dev/null
+++ b/content/posts/2007/11/30/low-purple-flower.md
@@ -0,0 +1,9 @@
++++
+date = "2007-11-30T06:05:32-07:00"
+title = "Low Purple Flower"
+image = "http://farm3.static.flickr.com/2196/1803608858_a807e6d8c2.jpg"
++++
+
+
+
+Happy Birthday, Wife!
diff --git a/content/posts/2007/12/01/chinese-lanterns.md b/content/posts/2007/12/01/chinese-lanterns.md
new file mode 100644
index 00000000..bbaeebae
--- /dev/null
+++ b/content/posts/2007/12/01/chinese-lanterns.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-01T06:11:26-07:00"
+title = "Chinese Lanterns"
+image = "http://farm3.static.flickr.com/2070/1802765083_275414d966.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/02/waiting-to-go.md b/content/posts/2007/12/02/waiting-to-go.md
new file mode 100644
index 00000000..719fb60f
--- /dev/null
+++ b/content/posts/2007/12/02/waiting-to-go.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-02T06:12:16-07:00"
+title = "Waiting to go"
+image = "http://farm3.static.flickr.com/2074/1802764319_f8ee9f8d85.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/03/waterlilly-and-bee.md b/content/posts/2007/12/03/waterlilly-and-bee.md
new file mode 100644
index 00000000..1bb63328
--- /dev/null
+++ b/content/posts/2007/12/03/waterlilly-and-bee.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-03T11:16:11-07:00"
+title = "Waterlilly and bee"
+image = "http://farm3.static.flickr.com/2254/2075508783_f8329cf25d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/04/waterlilly-and-bee-ii.md b/content/posts/2007/12/04/waterlilly-and-bee-ii.md
new file mode 100644
index 00000000..d2cfab14
--- /dev/null
+++ b/content/posts/2007/12/04/waterlilly-and-bee-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-04T11:18:51-07:00"
+title = "Waterlilly and bee II"
+image = "http://farm3.static.flickr.com/2157/2075508895_d41db6f581.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/05/very-detail-view-of-sunflower.md b/content/posts/2007/12/05/very-detail-view-of-sunflower.md
new file mode 100644
index 00000000..f5c72efb
--- /dev/null
+++ b/content/posts/2007/12/05/very-detail-view-of-sunflower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-05T11:19:49-07:00"
+title = "Very Detail View of Sunflower"
+image = "http://farm3.static.flickr.com/2356/2075507999_5658f272d6.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/06/detail-view-of-sunflower.md b/content/posts/2007/12/06/detail-view-of-sunflower.md
new file mode 100644
index 00000000..fc2a090b
--- /dev/null
+++ b/content/posts/2007/12/06/detail-view-of-sunflower.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-06T11:21:26-07:00"
+title = "Detail View of Sunflower"
+image = "http://farm3.static.flickr.com/2142/2076294710_9f224226d7.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/07/sunflowers-impressionist-view.md b/content/posts/2007/12/07/sunflowers-impressionist-view.md
new file mode 100644
index 00000000..934eda42
--- /dev/null
+++ b/content/posts/2007/12/07/sunflowers-impressionist-view.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-07T11:22:06-07:00"
+title = "Sunflowers, Impressionist View"
+image = "http://farm3.static.flickr.com/2247/2076294458_e285095965.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/08/details-of-a-whiskey-bottle.md b/content/posts/2007/12/08/details-of-a-whiskey-bottle.md
new file mode 100644
index 00000000..866faab1
--- /dev/null
+++ b/content/posts/2007/12/08/details-of-a-whiskey-bottle.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-08T11:23:09-07:00"
+title = "Details of a Whiskey Bottle"
+image = "http://farm3.static.flickr.com/2034/2075507781_af49b7cac0.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/09/monkey-bars.md b/content/posts/2007/12/09/monkey-bars.md
new file mode 100644
index 00000000..56091b60
--- /dev/null
+++ b/content/posts/2007/12/09/monkey-bars.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-09T11:23:59-07:00"
+title = "Monkey Bars"
+image = "http://farm3.static.flickr.com/2217/2075509109_da6f967c92.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/10/stand-of-trees.md b/content/posts/2007/12/10/stand-of-trees.md
new file mode 100644
index 00000000..19f44e18
--- /dev/null
+++ b/content/posts/2007/12/10/stand-of-trees.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-10T11:25:51-07:00"
+title = "Stand of Trees"
+image = "http://farm3.static.flickr.com/2064/2075509231_c06cd45213.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/11/detail-of-playhouse.md b/content/posts/2007/12/11/detail-of-playhouse.md
new file mode 100644
index 00000000..06844d63
--- /dev/null
+++ b/content/posts/2007/12/11/detail-of-playhouse.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-11T11:26:43-07:00"
+title = "Detail of Playhouse"
+image = "http://farm3.static.flickr.com/2113/2076296062_3f629a28f3.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/12/foggy-morning.md b/content/posts/2007/12/12/foggy-morning.md
new file mode 100644
index 00000000..6b97097a
--- /dev/null
+++ b/content/posts/2007/12/12/foggy-morning.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-12T11:27:26-07:00"
+title = "Foggy Morning"
+image = "http://farm3.static.flickr.com/2286/2075508991_a7fe7c93a1.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/13/sunset-at-columbus-ohio-airport.md b/content/posts/2007/12/13/sunset-at-columbus-ohio-airport.md
new file mode 100644
index 00000000..c4bac322
--- /dev/null
+++ b/content/posts/2007/12/13/sunset-at-columbus-ohio-airport.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-13T11:28:02-07:00"
+title = "Sunset at Columbus, Ohio Airport"
+image = "http://farm3.static.flickr.com/2321/2076295924_14dfb6c75d.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/14/oilwell-at-sunset.md b/content/posts/2007/12/14/oilwell-at-sunset.md
new file mode 100644
index 00000000..2e30c007
--- /dev/null
+++ b/content/posts/2007/12/14/oilwell-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-14T11:34:09-07:00"
+title = "Oilwell At Sunset"
+image = "http://farm3.static.flickr.com/2322/2076294864_62311058b2.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/15/oilwell-at-sunset-ii.md b/content/posts/2007/12/15/oilwell-at-sunset-ii.md
new file mode 100644
index 00000000..6acb6156
--- /dev/null
+++ b/content/posts/2007/12/15/oilwell-at-sunset-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-15T11:34:34-07:00"
+title = "Oilwell At Sunset II"
+image = "http://farm3.static.flickr.com/2230/2075508279_b3c837ea88.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/16/sunset-from-a-walk-in-the-neighborhood.md b/content/posts/2007/12/16/sunset-from-a-walk-in-the-neighborhood.md
new file mode 100644
index 00000000..cadd94f5
--- /dev/null
+++ b/content/posts/2007/12/16/sunset-from-a-walk-in-the-neighborhood.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-16T11:35:07-07:00"
+title = "Sunset from a Walk in the Neighborhood"
+image = "http://farm3.static.flickr.com/2046/2076295022_d906fdf259.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/17/sunset-and-clouds-from-a-walk-in-the-neighborhood.md b/content/posts/2007/12/17/sunset-and-clouds-from-a-walk-in-the-neighborhood.md
new file mode 100644
index 00000000..b9481f00
--- /dev/null
+++ b/content/posts/2007/12/17/sunset-and-clouds-from-a-walk-in-the-neighborhood.md
@@ -0,0 +1,8 @@
++++
+date = "2007-12-17T11:36:07-07:00"
+title = "Sunset and Clouds from a Walk in the Neighborhood"
+image = "http://farm3.static.flickr.com/2004/2075508677_d64131d889.jpg"
++++
+
+
+
diff --git a/content/posts/2007/12/18/lion-fountain.md b/content/posts/2007/12/18/lion-fountain.md
new file mode 100644
index 00000000..57972369
--- /dev/null
+++ b/content/posts/2007/12/18/lion-fountain.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-18T08:41:05-07:00"
+title = "Lion Fountain"
+image = "http://farm3.static.flickr.com/2242/2112213179_f27140eacc.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/19/stone-bird-drinking.md b/content/posts/2007/12/19/stone-bird-drinking.md
new file mode 100644
index 00000000..6efedd54
--- /dev/null
+++ b/content/posts/2007/12/19/stone-bird-drinking.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-19T08:51:48-07:00"
+title = "Stone bird drinking"
+image = "http://farm3.static.flickr.com/2295/2112213021_5986b54957.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/20/thinking-about-some-books.md b/content/posts/2007/12/20/thinking-about-some-books.md
new file mode 100644
index 00000000..fbcbd262
--- /dev/null
+++ b/content/posts/2007/12/20/thinking-about-some-books.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-20T06:55:18-07:00"
+title = "Thinking about some books"
+image = "http://farm3.static.flickr.com/2234/2112212709_eaa22cb599.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/21/grasshopper.md b/content/posts/2007/12/21/grasshopper.md
new file mode 100644
index 00000000..07696dc4
--- /dev/null
+++ b/content/posts/2007/12/21/grasshopper.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-21T07:56:53-07:00"
+title = "GRASSHOPPER!"
+image = "http://farm3.static.flickr.com/2003/2112990280_f317933d1d.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/22/something-is-in-the-air.md b/content/posts/2007/12/22/something-is-in-the-air.md
new file mode 100644
index 00000000..9bebca47
--- /dev/null
+++ b/content/posts/2007/12/22/something-is-in-the-air.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-22T04:48:44-07:00"
+title = "Something is in the Air"
+image = "http://farm3.static.flickr.com/2133/2126810094_332b2b2fc4.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/23/it-is-beginning-to-look-a-little-like.md b/content/posts/2007/12/23/it-is-beginning-to-look-a-little-like.md
new file mode 100644
index 00000000..e7e24a83
--- /dev/null
+++ b/content/posts/2007/12/23/it-is-beginning-to-look-a-little-like.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-23T04:49:09-07:00"
+title = "It is beginning to look a little like..."
+image = "http://farm3.static.flickr.com/2327/2126810398_22989d2047.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/24/day-before-christmas.md b/content/posts/2007/12/24/day-before-christmas.md
new file mode 100644
index 00000000..ebdddc0d
--- /dev/null
+++ b/content/posts/2007/12/24/day-before-christmas.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-24T04:49:29-07:00"
+title = "Day before Christmas"
+image = "http://farm3.static.flickr.com/2312/2126033309_401b32003a.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/25/santa-checking-the-book.md b/content/posts/2007/12/25/santa-checking-the-book.md
new file mode 100644
index 00000000..ad6e9f6d
--- /dev/null
+++ b/content/posts/2007/12/25/santa-checking-the-book.md
@@ -0,0 +1,12 @@
++++
+date = "2007-12-25T04:50:27-07:00"
+title = "Santa checking the book"
+image = "http://farm3.static.flickr.com/2107/2126809240_0f26bf5280.jpg"
++++
+
+
+
+
+For those who celebrate it, Happy Christmas!
+
+Peace on Earth, and goodwill to all of mankind.
diff --git a/content/posts/2007/12/26/red-palms.md b/content/posts/2007/12/26/red-palms.md
new file mode 100644
index 00000000..cc63901c
--- /dev/null
+++ b/content/posts/2007/12/26/red-palms.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-26T04:50:40-07:00"
+title = "Red Palms?"
+image = "http://farm3.static.flickr.com/2077/2126809298_9e5b24761d.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/27/post-processing-experiment.md b/content/posts/2007/12/27/post-processing-experiment.md
new file mode 100644
index 00000000..14a9b130
--- /dev/null
+++ b/content/posts/2007/12/27/post-processing-experiment.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-27T04:50:56-07:00"
+title = "Post-processing Experiment"
+image = "http://farm3.static.flickr.com/2033/2126033087_b7a53ef846.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/28/deep-sky.md b/content/posts/2007/12/28/deep-sky.md
new file mode 100644
index 00000000..69db6859
--- /dev/null
+++ b/content/posts/2007/12/28/deep-sky.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-28T04:51:35-07:00"
+title = "Deep sky"
+image = "http://farm3.static.flickr.com/2220/2126809588_88e7bf836f.jpg"
++++
+
+
+
+
+From a recent walk, great sky.
diff --git a/content/posts/2007/12/29/more-sky.md b/content/posts/2007/12/29/more-sky.md
new file mode 100644
index 00000000..6c325623
--- /dev/null
+++ b/content/posts/2007/12/29/more-sky.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-29T04:51:45-07:00"
+title = "More sky"
+image = "http://farm3.static.flickr.com/2259/2126809742_956aefaa3b.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/30/sky-and-moon.md b/content/posts/2007/12/30/sky-and-moon.md
new file mode 100644
index 00000000..211c4aaf
--- /dev/null
+++ b/content/posts/2007/12/30/sky-and-moon.md
@@ -0,0 +1,10 @@
++++
+date = "2007-12-30T04:51:56-07:00"
+title = "Sky and Moon"
+image = "http://farm3.static.flickr.com/2374/2126809882_df0aa7e36a.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2007/12/31/walking-into-the-new-year.md b/content/posts/2007/12/31/walking-into-the-new-year.md
new file mode 100644
index 00000000..b5107ecf
--- /dev/null
+++ b/content/posts/2007/12/31/walking-into-the-new-year.md
@@ -0,0 +1,13 @@
++++
+date = "2007-12-31T04:52:44-07:00"
+title = "Walking into the new year..."
+image = "http://farm3.static.flickr.com/2403/2126033649_95158ab470.jpg"
++++
+
+
+
+
+Happy new years.
+
+May your worse day in the new year be better than your best day of this
+year. Be safe.
diff --git a/content/posts/2008/01/01/open-gazebo.md b/content/posts/2008/01/01/open-gazebo.md
new file mode 100644
index 00000000..fdf8bf9d
--- /dev/null
+++ b/content/posts/2008/01/01/open-gazebo.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-01T04:53:05-07:00"
+title = "Open Gazebo"
+image = "http://farm3.static.flickr.com/2027/2126033525_f0794c4dc3.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/02/oleander-flower.md b/content/posts/2008/01/02/oleander-flower.md
new file mode 100644
index 00000000..e5e80b53
--- /dev/null
+++ b/content/posts/2008/01/02/oleander-flower.md
@@ -0,0 +1,11 @@
++++
+date = "2008-01-02T04:53:41-07:00"
+title = "Oleander Flower"
+image = "http://farm3.static.flickr.com/2150/2126033143_9aa6a8a863.jpg"
++++
+
+
+
+
+
+
diff --git a/content/posts/2008/01/03/playground-repetition.md b/content/posts/2008/01/03/playground-repetition.md
new file mode 100644
index 00000000..3eabe66d
--- /dev/null
+++ b/content/posts/2008/01/03/playground-repetition.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-03T04:53:25-07:00"
+title = "Playground repetition."
+image = "http://farm3.static.flickr.com/2284/2126809792_deaf0844a5.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/04/whatcha-looking-at.md b/content/posts/2008/01/04/whatcha-looking-at.md
new file mode 100644
index 00000000..a87f8984
--- /dev/null
+++ b/content/posts/2008/01/04/whatcha-looking-at.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-04T18:42:47-07:00"
+title = "What'cha looking at?"
+image = "http://farm3.static.flickr.com/2085/1803623464_812c186106.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/05/candlestick-plant.md b/content/posts/2008/01/05/candlestick-plant.md
new file mode 100644
index 00000000..f9856c36
--- /dev/null
+++ b/content/posts/2008/01/05/candlestick-plant.md
@@ -0,0 +1,11 @@
++++
+date = "2008-01-05T17:43:12-07:00"
+title = "Candlestick Plant"
+image = "http://farm3.static.flickr.com/2239/1803624434_4c110d61a6.jpg"
++++
+
+
+
+
+
+
diff --git a/content/posts/2008/01/05/p1127694.md b/content/posts/2008/01/05/p1127694.md
new file mode 100644
index 00000000..050890a1
--- /dev/null
+++ b/content/posts/2008/01/05/p1127694.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-05T14:58:02-07:00"
+title = "p1127694"
+image = "http://farm3.static.flickr.com/2246/2213908969_2a66c5ba7f.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/06/fog-in-the-morning.md b/content/posts/2008/01/06/fog-in-the-morning.md
new file mode 100644
index 00000000..0449060d
--- /dev/null
+++ b/content/posts/2008/01/06/fog-in-the-morning.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-06T17:43:28-07:00"
+title = "Fog in the Morning"
+image = "http://farm3.static.flickr.com/2286/2075508991_a7fe7c93a1.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/07/deep-blue-sky-behind-sleeping-tree.md b/content/posts/2008/01/07/deep-blue-sky-behind-sleeping-tree.md
new file mode 100644
index 00000000..106c5253
--- /dev/null
+++ b/content/posts/2008/01/07/deep-blue-sky-behind-sleeping-tree.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-07T17:43:48-07:00"
+title = "Deep blue sky behind sleeping tree"
+image = "http://farm3.static.flickr.com/2220/2126809588_88e7bf836f.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/08/clouds-just-before-sunset.md b/content/posts/2008/01/08/clouds-just-before-sunset.md
new file mode 100644
index 00000000..d21a3943
--- /dev/null
+++ b/content/posts/2008/01/08/clouds-just-before-sunset.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-08T17:45:02-07:00"
+title = "Clouds just before sunset"
+image = "http://farm3.static.flickr.com/2004/2075508677_d64131d889.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/09/sunset-over-columbus-airport.md b/content/posts/2008/01/09/sunset-over-columbus-airport.md
new file mode 100644
index 00000000..cb84f256
--- /dev/null
+++ b/content/posts/2008/01/09/sunset-over-columbus-airport.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-09T17:44:08-07:00"
+title = "Sunset over Columbus Airport"
+image = "http://farm3.static.flickr.com/2321/2076295924_14dfb6c75d.jpg"
++++
+
+
+
+
+Yes, I was driving.
diff --git a/content/posts/2008/01/10/sunset-in-texas.md b/content/posts/2008/01/10/sunset-in-texas.md
new file mode 100644
index 00000000..cfb20438
--- /dev/null
+++ b/content/posts/2008/01/10/sunset-in-texas.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-10T17:45:42-07:00"
+title = "Sunset in Texas"
+image = "http://farm3.static.flickr.com/2322/2076294864_62311058b2.jpg"
++++
+
+
+
+
+Outside of Fayetteville
diff --git a/content/posts/2008/01/11/poinsettia.md b/content/posts/2008/01/11/poinsettia.md
new file mode 100644
index 00000000..358ff40f
--- /dev/null
+++ b/content/posts/2008/01/11/poinsettia.md
@@ -0,0 +1,11 @@
++++
+date = "2008-01-11T17:45:59-07:00"
+title = "Poinsettia"
+image = "http://farm3.static.flickr.com/2019/2126033911_a143aa4010.jpg"
++++
+
+
+
+
+
+
diff --git a/content/posts/2008/01/12/the-star.md b/content/posts/2008/01/12/the-star.md
new file mode 100644
index 00000000..b3a07500
--- /dev/null
+++ b/content/posts/2008/01/12/the-star.md
@@ -0,0 +1,11 @@
++++
+date = "2008-01-12T17:46:29-07:00"
+title = "The Star"
+image = "http://farm3.static.flickr.com/2209/2126033735_1ab63f4a9e.jpg"
++++
+
+
+
+
+
+
diff --git a/content/posts/2008/01/13/unsuspecting-spider-web.md b/content/posts/2008/01/13/unsuspecting-spider-web.md
new file mode 100644
index 00000000..46382417
--- /dev/null
+++ b/content/posts/2008/01/13/unsuspecting-spider-web.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-13T06:21:09-07:00"
+title = "Unsuspecting Spider Web"
+image = "http://farm3.static.flickr.com/2250/2184602953_69e18e0784.jpg"
++++
+
+
+
+
+Did not know the paparazzi was moving in.
diff --git a/content/posts/2008/01/14/the-spider.md b/content/posts/2008/01/14/the-spider.md
new file mode 100644
index 00000000..126d77a5
--- /dev/null
+++ b/content/posts/2008/01/14/the-spider.md
@@ -0,0 +1,11 @@
++++
+date = "2008-01-14T06:21:16-07:00"
+title = "The Spider"
+image = "http://farm3.static.flickr.com/2100/2185387906_91b8329360.jpg"
++++
+
+
+
+
+
+
diff --git a/content/posts/2008/01/15/hiden-on-the-boxwood.md b/content/posts/2008/01/15/hiden-on-the-boxwood.md
new file mode 100644
index 00000000..081d63a5
--- /dev/null
+++ b/content/posts/2008/01/15/hiden-on-the-boxwood.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-15T06:21:32-07:00"
+title = "Hiden on the boxwood"
+image = "http://farm3.static.flickr.com/2140/2185387778_7d20817354.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/16/what-a-web-we-weave.md b/content/posts/2008/01/16/what-a-web-we-weave.md
new file mode 100644
index 00000000..d5a492e1
--- /dev/null
+++ b/content/posts/2008/01/16/what-a-web-we-weave.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-16T06:21:52-07:00"
+title = "What a web we weave..."
+image = "http://farm3.static.flickr.com/2124/2185387706_56061f2072.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/17/perfect-trap.md b/content/posts/2008/01/17/perfect-trap.md
new file mode 100644
index 00000000..53c940f8
--- /dev/null
+++ b/content/posts/2008/01/17/perfect-trap.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-17T06:22:09-07:00"
+title = "Perfect Trap?"
+image = "http://farm3.static.flickr.com/2243/2185387606_1bd5b15ba7.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/18/details-of-the-web.md b/content/posts/2008/01/18/details-of-the-web.md
new file mode 100644
index 00000000..4a978385
--- /dev/null
+++ b/content/posts/2008/01/18/details-of-the-web.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-18T06:22:26-07:00"
+title = "Details of the web"
+image = "http://farm3.static.flickr.com/2127/2185387534_486749d92d.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/19/happy-home-maker-and-home.md b/content/posts/2008/01/19/happy-home-maker-and-home.md
new file mode 100644
index 00000000..a5cc2c65
--- /dev/null
+++ b/content/posts/2008/01/19/happy-home-maker-and-home.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-19T06:22:47-07:00"
+title = "Happy home maker and home"
+image = "http://farm3.static.flickr.com/2309/2185387426_a5426d4c7e.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/20/details-of-the-web-ii.md b/content/posts/2008/01/20/details-of-the-web-ii.md
new file mode 100644
index 00000000..ea0d8355
--- /dev/null
+++ b/content/posts/2008/01/20/details-of-the-web-ii.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-20T06:23:04-07:00"
+title = "Details of the web II"
+image = "http://farm3.static.flickr.com/2132/2185387354_bbf493899f.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/21/details-of-the-web-iii-this-time-with-highlights.md b/content/posts/2008/01/21/details-of-the-web-iii-this-time-with-highlights.md
new file mode 100644
index 00000000..d41d4003
--- /dev/null
+++ b/content/posts/2008/01/21/details-of-the-web-iii-this-time-with-highlights.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-21T06:23:28-07:00"
+title = "Details of the web III, this time with highlights!"
+image = "http://farm3.static.flickr.com/2341/2185387258_fd1ec41ae8.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/22/radial-patterns.md b/content/posts/2008/01/22/radial-patterns.md
new file mode 100644
index 00000000..83c5f90b
--- /dev/null
+++ b/content/posts/2008/01/22/radial-patterns.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-22T06:23:41-07:00"
+title = "Radial patterns"
+image = "http://farm3.static.flickr.com/2204/2185387084_6c0f3a5390.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/23/the-edge.md b/content/posts/2008/01/23/the-edge.md
new file mode 100644
index 00000000..84d21946
--- /dev/null
+++ b/content/posts/2008/01/23/the-edge.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-23T06:23:55-07:00"
+title = "The edge..."
+image = "http://farm3.static.flickr.com/2226/2184602225_d8a4fb9bd8.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/24/paperwhites.md b/content/posts/2008/01/24/paperwhites.md
new file mode 100644
index 00000000..f99ab2e3
--- /dev/null
+++ b/content/posts/2008/01/24/paperwhites.md
@@ -0,0 +1,9 @@
++++
+date = "2008-01-24T09:16:23-07:00"
+title = "Paperwhites"
+image = "http://picasaweb.google.com/duckunix/FlowersAtTheHarrisCountyMasterGardenersGarden"
++++
+
+
+
+Uploaded at google for now.
diff --git a/content/posts/2008/01/25/p1127733.md b/content/posts/2008/01/25/p1127733.md
new file mode 100644
index 00000000..234c58d7
--- /dev/null
+++ b/content/posts/2008/01/25/p1127733.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-25T14:57:40-07:00"
+title = "p1127733"
+image = "http://farm3.static.flickr.com/2309/2213908433_229b4d8b90.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/26/p1127746.md b/content/posts/2008/01/26/p1127746.md
new file mode 100644
index 00000000..35581d0e
--- /dev/null
+++ b/content/posts/2008/01/26/p1127746.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-26T14:57:49-07:00"
+title = "Lantern Maple Flower"
+image = "http://farm3.static.flickr.com/2372/2214701548_bd4029ae23.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/27/p1127741.md b/content/posts/2008/01/27/p1127741.md
new file mode 100644
index 00000000..352ba425
--- /dev/null
+++ b/content/posts/2008/01/27/p1127741.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-27T14:57:51-07:00"
+title = "p1127741"
+image = "http://farm3.static.flickr.com/2227/2213908293_fe7bd9261f.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/28/p1127736.md b/content/posts/2008/01/28/p1127736.md
new file mode 100644
index 00000000..70fb4355
--- /dev/null
+++ b/content/posts/2008/01/28/p1127736.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-28T14:57:54-07:00"
+title = "p1127736"
+image = "http://farm3.static.flickr.com/2339/2214701702_64ae95e5a9.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/29/p1127727.md b/content/posts/2008/01/29/p1127727.md
new file mode 100644
index 00000000..839260e1
--- /dev/null
+++ b/content/posts/2008/01/29/p1127727.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-29T14:57:55-07:00"
+title = "p1127727"
+image = "http://farm3.static.flickr.com/2324/2214701884_b2d6dc5255.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/30/p1127718.md b/content/posts/2008/01/30/p1127718.md
new file mode 100644
index 00000000..56b49ecb
--- /dev/null
+++ b/content/posts/2008/01/30/p1127718.md
@@ -0,0 +1,10 @@
++++
+date = "2008-01-30T14:57:56-07:00"
+title = "p1127718"
+image = "http://farm3.static.flickr.com/2411/2214701916_678ef34880.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/01/31/p1127668.md b/content/posts/2008/01/31/p1127668.md
new file mode 100644
index 00000000..03a820c1
--- /dev/null
+++ b/content/posts/2008/01/31/p1127668.md
@@ -0,0 +1,11 @@
++++
+date = "2008-01-31T14:58:11-07:00"
+title = "p1127668"
+image = "http://farm3.static.flickr.com/2132/2214703020_03e2569d73.jpg"
++++
+
+
+
+
+
+
diff --git a/content/posts/2008/02/01/p1127712.md b/content/posts/2008/02/01/p1127712.md
new file mode 100644
index 00000000..8dd13498
--- /dev/null
+++ b/content/posts/2008/02/01/p1127712.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-01T14:57:57-07:00"
+title = "p1127712"
+image = "http://farm3.static.flickr.com/2368/2213908615_0ab33b92aa.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/02/p1127709.md b/content/posts/2008/02/02/p1127709.md
new file mode 100644
index 00000000..69a56fec
--- /dev/null
+++ b/content/posts/2008/02/02/p1127709.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-02T14:57:59-07:00"
+title = "p1127709"
+image = "http://farm3.static.flickr.com/2177/2213908699_413b79d785.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/03/p1127705.md b/content/posts/2008/02/03/p1127705.md
new file mode 100644
index 00000000..1b8bb2e5
--- /dev/null
+++ b/content/posts/2008/02/03/p1127705.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-03T14:58:00-07:00"
+title = "p1127705"
+image = "http://farm3.static.flickr.com/2091/2214702172_3daba6253c.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/04/p1127695.md b/content/posts/2008/02/04/p1127695.md
new file mode 100644
index 00000000..5cab4bef
--- /dev/null
+++ b/content/posts/2008/02/04/p1127695.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-04T14:58:01-07:00"
+title = "p1127695"
+image = "http://farm3.static.flickr.com/2238/2213908883_f05fde8e46.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/05/p1127662.md b/content/posts/2008/02/05/p1127662.md
new file mode 100644
index 00000000..0f83c209
--- /dev/null
+++ b/content/posts/2008/02/05/p1127662.md
@@ -0,0 +1,11 @@
++++
+date = "2008-02-05T14:58:15-07:00"
+title = "p1127662"
+image = "http://farm3.static.flickr.com/2006/2214703134_bc2eeb1167.jpg"
++++
+
+
+
+
+
+
diff --git a/content/posts/2008/02/06/p1127688.md b/content/posts/2008/02/06/p1127688.md
new file mode 100644
index 00000000..0362a857
--- /dev/null
+++ b/content/posts/2008/02/06/p1127688.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-06T14:58:04-07:00"
+title = "p1127688"
+image = "http://farm3.static.flickr.com/2304/2214702572_6a7c39dfc6.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/07/p1127693.md b/content/posts/2008/02/07/p1127693.md
new file mode 100644
index 00000000..4e19337d
--- /dev/null
+++ b/content/posts/2008/02/07/p1127693.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-07T14:58:04-07:00"
+title = "p1127693"
+image = "http://farm3.static.flickr.com/2202/2213909091_cbb4b0e6ae.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/08/p1127687.md b/content/posts/2008/02/08/p1127687.md
new file mode 100644
index 00000000..b8b92bbe
--- /dev/null
+++ b/content/posts/2008/02/08/p1127687.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-08T14:58:06-07:00"
+title = "p1127687"
+image = "http://farm3.static.flickr.com/2334/2214702670_7176393f74.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/09/p1127685.md b/content/posts/2008/02/09/p1127685.md
new file mode 100644
index 00000000..03afd286
--- /dev/null
+++ b/content/posts/2008/02/09/p1127685.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-09T14:58:07-07:00"
+title = "p1127685"
+image = "http://farm3.static.flickr.com/2375/2213909419_85ccb52f8d.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/10/p1127682.md b/content/posts/2008/02/10/p1127682.md
new file mode 100644
index 00000000..b5229109
--- /dev/null
+++ b/content/posts/2008/02/10/p1127682.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-10T14:58:08-07:00"
+title = "p1127682"
+image = "http://farm3.static.flickr.com/2227/2214702932_401b27203b.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/11/male-cardinal.md b/content/posts/2008/02/11/male-cardinal.md
new file mode 100644
index 00000000..97356048
--- /dev/null
+++ b/content/posts/2008/02/11/male-cardinal.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-11T10:53:34-07:00"
+title = "Male cardinal"
+image = "http://farm3.static.flickr.com/2013/2250658994_f238b313c2.jpg"
++++
+
+
+
+
+Hanging out at our bird feeder
diff --git a/content/posts/2008/02/12/female-cardinal.md b/content/posts/2008/02/12/female-cardinal.md
new file mode 100644
index 00000000..e8262db9
--- /dev/null
+++ b/content/posts/2008/02/12/female-cardinal.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-12T10:53:51-07:00"
+title = "Female Cardinal"
+image = "http://farm3.static.flickr.com/2124/2250658860_d61173bc50.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/13/a-raider.md b/content/posts/2008/02/13/a-raider.md
new file mode 100644
index 00000000..3598611d
--- /dev/null
+++ b/content/posts/2008/02/13/a-raider.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-13T10:54:15-07:00"
+title = "A raider"
+image = "http://farm3.static.flickr.com/2258/2249859993_7b2c6cc799.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/14/did-he-see-me.md b/content/posts/2008/02/14/did-he-see-me.md
new file mode 100644
index 00000000..fd1f8b0a
--- /dev/null
+++ b/content/posts/2008/02/14/did-he-see-me.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-14T10:54:20-07:00"
+title = "Did he see me?"
+image = "http://farm3.static.flickr.com/2296/2250658336_d1dcfac4de.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/15/no-really-i-am-done.md b/content/posts/2008/02/15/no-really-i-am-done.md
new file mode 100644
index 00000000..08cbffe0
--- /dev/null
+++ b/content/posts/2008/02/15/no-really-i-am-done.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-15T10:54:32-07:00"
+title = "No really, I am done"
+image = "http://farm3.static.flickr.com/2295/2250658212_bb34bbdf9b.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/16/maybe-not.md b/content/posts/2008/02/16/maybe-not.md
new file mode 100644
index 00000000..fb15a67e
--- /dev/null
+++ b/content/posts/2008/02/16/maybe-not.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-16T10:54:41-07:00"
+title = "Maybe not"
+image = "http://farm3.static.flickr.com/2209/2250658064_631351ff54.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/17/when-is-mi-4-filming.md b/content/posts/2008/02/17/when-is-mi-4-filming.md
new file mode 100644
index 00000000..e384b4b4
--- /dev/null
+++ b/content/posts/2008/02/17/when-is-mi-4-filming.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-17T10:54:58-07:00"
+title = "When is MI-4 filming?"
+image = "http://farm3.static.flickr.com/2213/2249859417_e785218342.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/18/gotta-go.md b/content/posts/2008/02/18/gotta-go.md
new file mode 100644
index 00000000..1a0a7595
--- /dev/null
+++ b/content/posts/2008/02/18/gotta-go.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-18T10:55:09-07:00"
+title = "Gotta go..."
+image = "http://farm3.static.flickr.com/2356/2249859197_3ce9c015d6.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/19/going-home.md b/content/posts/2008/02/19/going-home.md
new file mode 100644
index 00000000..c8a28b19
--- /dev/null
+++ b/content/posts/2008/02/19/going-home.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-19T10:55:26-07:00"
+title = "Going home..."
+image = "http://farm3.static.flickr.com/2096/2249858985_1c8fa8be31.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/20/what-you-looking-at.md b/content/posts/2008/02/20/what-you-looking-at.md
new file mode 100644
index 00000000..6dbc103c
--- /dev/null
+++ b/content/posts/2008/02/20/what-you-looking-at.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-20T21:26:25-07:00"
+title = "What you looking at?"
+image = "http://farm4.static.flickr.com/3019/2280033327_b8c24b19b9.jpg"
++++
+
+
+
+
+My dog....
diff --git a/content/posts/2008/02/21/an-old-rose.md b/content/posts/2008/02/21/an-old-rose.md
new file mode 100644
index 00000000..178c6432
--- /dev/null
+++ b/content/posts/2008/02/21/an-old-rose.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-21T12:29:07-07:00"
+title = "An old rose"
+image = "http://farm4.static.flickr.com/3037/2280823410_03bd31246a.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/22/still-blue.md b/content/posts/2008/02/22/still-blue.md
new file mode 100644
index 00000000..90bfa7e7
--- /dev/null
+++ b/content/posts/2008/02/22/still-blue.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-22T04:29:20-07:00"
+title = "still blue"
+image = "http://farm4.static.flickr.com/3086/2280823292_e7bd106b0a.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/23/red-mother.md b/content/posts/2008/02/23/red-mother.md
new file mode 100644
index 00000000..40780003
--- /dev/null
+++ b/content/posts/2008/02/23/red-mother.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-23T04:30:15-07:00"
+title = "Red Mother"
+image = "http://farm4.static.flickr.com/3014/2280033023_caaed57409.jpg"
++++
+
+
+
+
+This is the flower of a plant know as The Mother of Millions.
diff --git a/content/posts/2008/02/24/more-red-mother.md b/content/posts/2008/02/24/more-red-mother.md
new file mode 100644
index 00000000..c724f163
--- /dev/null
+++ b/content/posts/2008/02/24/more-red-mother.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-24T04:30:26-07:00"
+title = "More Red Mother"
+image = "http://farm4.static.flickr.com/3088/2280823028_89ec7031ac.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/25/jasmin-anyone.md b/content/posts/2008/02/25/jasmin-anyone.md
new file mode 100644
index 00000000..cb28a80d
--- /dev/null
+++ b/content/posts/2008/02/25/jasmin-anyone.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-25T04:30:47-07:00"
+title = "Jasmin, anyone?"
+image = "http://farm3.static.flickr.com/2359/2280822928_f98f9e5e9f.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/26/jasmin-again.md b/content/posts/2008/02/26/jasmin-again.md
new file mode 100644
index 00000000..84049aab
--- /dev/null
+++ b/content/posts/2008/02/26/jasmin-again.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-26T04:31:00-07:00"
+title = "Jasmin, again."
+image = "http://farm4.static.flickr.com/3194/2280032765_f3f2a24454.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/27/trapped-and-out-of-place.md b/content/posts/2008/02/27/trapped-and-out-of-place.md
new file mode 100644
index 00000000..31170f36
--- /dev/null
+++ b/content/posts/2008/02/27/trapped-and-out-of-place.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-27T04:31:12-07:00"
+title = "Trapped, and out of place"
+image = "http://farm3.static.flickr.com/2009/2280822752_399d47c298.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/28/yellow-in-the-woods.md b/content/posts/2008/02/28/yellow-in-the-woods.md
new file mode 100644
index 00000000..58c2461e
--- /dev/null
+++ b/content/posts/2008/02/28/yellow-in-the-woods.md
@@ -0,0 +1,10 @@
++++
+date = "2008-02-28T04:31:26-07:00"
+title = "Yellow in the woods"
+image = "http://farm3.static.flickr.com/2141/2280032545_7a93dd57a9.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/02/29/berries.md b/content/posts/2008/02/29/berries.md
new file mode 100644
index 00000000..668b944a
--- /dev/null
+++ b/content/posts/2008/02/29/berries.md
@@ -0,0 +1,14 @@
++++
+date = "2008-02-29T04:31:37-07:00"
+title = "Berries"
+image = "http://farm3.static.flickr.com/2225/2280032411_99d18f901b.jpg"
++++
+
+
+
+
+
+
+Happy Leap-Day!
+
+
diff --git a/content/posts/2008/03/01/grass-tuft-in-the-woods.md b/content/posts/2008/03/01/grass-tuft-in-the-woods.md
new file mode 100644
index 00000000..7eb94536
--- /dev/null
+++ b/content/posts/2008/03/01/grass-tuft-in-the-woods.md
@@ -0,0 +1,10 @@
++++
+date = "2008-03-01T04:31:45-07:00"
+title = "Grass tuft in the woods"
+image = "http://farm4.static.flickr.com/3067/2280032297_9f3c3c9afb.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/03/02/colors-of-winter.md b/content/posts/2008/03/02/colors-of-winter.md
new file mode 100644
index 00000000..c49de5d5
--- /dev/null
+++ b/content/posts/2008/03/02/colors-of-winter.md
@@ -0,0 +1,10 @@
++++
+date = "2008-03-02T04:32:20-07:00"
+title = "Colors of winter"
+image = "http://farm3.static.flickr.com/2388/2280032171_c762768bab.jpg"
++++
+
+
+
+
+Hey, I live in south Texas...this is ya'lls fall temps here. :)
diff --git a/content/posts/2008/03/03/the-march-of-man.md b/content/posts/2008/03/03/the-march-of-man.md
new file mode 100644
index 00000000..fbc3b1ae
--- /dev/null
+++ b/content/posts/2008/03/03/the-march-of-man.md
@@ -0,0 +1,10 @@
++++
+date = "2008-03-03T04:32:32-07:00"
+title = "The march of man"
+image = "http://farm4.static.flickr.com/3130/2280032053_f9287693f6.jpg"
++++
+
+
+
+
+
diff --git a/content/posts/2008/03/04/tusk.md b/content/posts/2008/03/04/tusk.md
new file mode 100644
index 00000000..2996e986
--- /dev/null
+++ b/content/posts/2008/03/04/tusk.md
@@ -0,0 +1,11 @@
++++
+date = "2008-03-04T04:32:49-07:00"
+title = "Tusk!"
+image = "http://farm3.static.flickr.com/2195/2280031893_ed3964cb53.jpg"
++++
+
+
+
+
+
+Queue Fleetwood Mac.
diff --git a/content/posts/2008/03/05/do-you-have-anything.md b/content/posts/2008/03/05/do-you-have-anything.md
new file mode 100644
index 00000000..7f3673f9
--- /dev/null
+++ b/content/posts/2008/03/05/do-you-have-anything.md
@@ -0,0 +1,10 @@
++++
+date = "2008-03-05T04:34:16-07:00"
+title = "Do you have anything?"
+image = "http://farm3.static.flickr.com/2277/2280031623_4f001b5413.jpg"
++++
+
+
+
+
+These guys on campus are still beggars after all these years.
diff --git a/content/posts/2008/03/06/streetlights.md b/content/posts/2008/03/06/streetlights.md
new file mode 100644
index 00000000..38f3aaeb
--- /dev/null
+++ b/content/posts/2008/03/06/streetlights.md
@@ -0,0 +1,8 @@
++++
+date = "2008-03-06T05:45:08-07:00"
+title = "Streetlights."
+image = ""
++++
+
+
+
diff --git a/content/posts/2008/03/07/old-vs-new.md b/content/posts/2008/03/07/old-vs-new.md
new file mode 100644
index 00000000..bdc88ef9
--- /dev/null
+++ b/content/posts/2008/03/07/old-vs-new.md
@@ -0,0 +1,8 @@
++++
+date = "2008-03-07T05:46:41-07:00"
+title = "Old vs New"
+image = "/images/P2220158.jpg"
++++
+
+
+
diff --git a/content/posts/2008/03/08/why-do-i-like-purple-flowers.md b/content/posts/2008/03/08/why-do-i-like-purple-flowers.md
new file mode 100644
index 00000000..9a5987cf
--- /dev/null
+++ b/content/posts/2008/03/08/why-do-i-like-purple-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2008-03-08T05:52:47-07:00"
+title = "Why do I like purple flowers?"
+image = "/images/P2230176.jpg"
++++
+
+
+
diff --git a/content/posts/2008/03/09/old-school-building.md b/content/posts/2008/03/09/old-school-building.md
new file mode 100644
index 00000000..50f1f055
--- /dev/null
+++ b/content/posts/2008/03/09/old-school-building.md
@@ -0,0 +1,8 @@
++++
+date = "2008-03-09T05:56:00-07:00"
+title = "Old School Building"
+image = "/images/P2260333.jpg"
++++
+
+
+
diff --git a/content/posts/2008/03/10/new-influenced-by-old.md b/content/posts/2008/03/10/new-influenced-by-old.md
new file mode 100644
index 00000000..bfc708ec
--- /dev/null
+++ b/content/posts/2008/03/10/new-influenced-by-old.md
@@ -0,0 +1,8 @@
++++
+date = "2008-03-10T05:57:12-07:00"
+title = "New, influenced by old"
+image = "/images/P2270335.jpg"
++++
+
+
+
diff --git a/content/posts/2008/03/11/line-lines-lines.md b/content/posts/2008/03/11/line-lines-lines.md
new file mode 100644
index 00000000..667fbcbd
--- /dev/null
+++ b/content/posts/2008/03/11/line-lines-lines.md
@@ -0,0 +1,8 @@
++++
+date = "2008-03-11T05:58:53-07:00"
+title = "line, lines, lines"
+image = "/images/P2270338.jpg"
++++
+
+
+
diff --git a/content/posts/2008/03/12/scary-cow.md b/content/posts/2008/03/12/scary-cow.md
new file mode 100644
index 00000000..2f7dcea7
--- /dev/null
+++ b/content/posts/2008/03/12/scary-cow.md
@@ -0,0 +1,8 @@
++++
+date = "2008-03-12T06:00:17-07:00"
+title = "Scary Cow!"
+image = "/images/P2270339.jpg"
++++
+
+
+
diff --git a/content/posts/2008/03/13/the-niels-esperson-building.md b/content/posts/2008/03/13/the-niels-esperson-building.md
new file mode 100644
index 00000000..168e32b2
--- /dev/null
+++ b/content/posts/2008/03/13/the-niels-esperson-building.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-13T08:53:28-07:00"
+title = "The Niels Esperson Building"
+image = "/albums/2008-03-11-1/image/P3050431.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/14/presidents.md b/content/posts/2008/03/14/presidents.md
new file mode 100644
index 00000000..712442d8
--- /dev/null
+++ b/content/posts/2008/03/14/presidents.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-14T09:08:03-07:00"
+title = "Presidents"
+image = "/albums/2008-03-11-1/image/P3060467.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/15/blue-house.md b/content/posts/2008/03/15/blue-house.md
new file mode 100644
index 00000000..dc0e4488
--- /dev/null
+++ b/content/posts/2008/03/15/blue-house.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-15T09:09:20-07:00"
+title = "Blue House"
+image = "/albums/2008-03-11-1/image/P3090571.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/16/bell-tower.md b/content/posts/2008/03/16/bell-tower.md
new file mode 100644
index 00000000..e4c1a8a1
--- /dev/null
+++ b/content/posts/2008/03/16/bell-tower.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-16T09:10:54-07:00"
+title = "Bell Tower"
+image = "/albums/2008-03-11-1/image/P3090621.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/17/wire-cross.md b/content/posts/2008/03/17/wire-cross.md
new file mode 100644
index 00000000..55673223
--- /dev/null
+++ b/content/posts/2008/03/17/wire-cross.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-17T09:11:45-07:00"
+title = "Wire Cross"
+image = "/albums/2008-03-11-1/image/P3090576.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/18/old-tree.md b/content/posts/2008/03/18/old-tree.md
new file mode 100644
index 00000000..0d570269
--- /dev/null
+++ b/content/posts/2008/03/18/old-tree.md
@@ -0,0 +1,8 @@
++++
+date = "2008-03-18T09:14:51-07:00"
+title = "Old Tree"
+image = ""
++++
+
+
+
diff --git a/content/posts/2008/03/19/new-beginnings.md b/content/posts/2008/03/19/new-beginnings.md
new file mode 100644
index 00000000..ad50d38c
--- /dev/null
+++ b/content/posts/2008/03/19/new-beginnings.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-19T09:12:53-07:00"
+title = "New Beginnings..."
+image = "/albums/2008-03-11-1/image/P3050452.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/20/jasmin.md b/content/posts/2008/03/20/jasmin.md
new file mode 100644
index 00000000..641a7f9e
--- /dev/null
+++ b/content/posts/2008/03/20/jasmin.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-20T09:13:51-07:00"
+title = "Jasmin!"
+image = "/albums/2008-03-11-1/image/P3050448.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/21/pretty-blue.md b/content/posts/2008/03/21/pretty-blue.md
new file mode 100644
index 00000000..f73f16e3
--- /dev/null
+++ b/content/posts/2008/03/21/pretty-blue.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-21T09:16:19-07:00"
+title = "Pretty Blue"
+image = "/albums/2008-03-11-1/image/P3050458.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/22/it-is-almost-here.md b/content/posts/2008/03/22/it-is-almost-here.md
new file mode 100644
index 00000000..6fe8abd8
--- /dev/null
+++ b/content/posts/2008/03/22/it-is-almost-here.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-22T05:49:44-07:00"
+title = "It is almost here..."
+image = "/albums/2008-03-11-1/image/P3160829.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/23/happy-easter.md b/content/posts/2008/03/23/happy-easter.md
new file mode 100644
index 00000000..62d7684a
--- /dev/null
+++ b/content/posts/2008/03/23/happy-easter.md
@@ -0,0 +1,11 @@
++++
+date = "2008-03-23T05:51:44-07:00"
+title = "Happy Easter!"
+image = "/albums/2008-03-11-1/image/P3160826.jpg"
++++
+
+
+
+
+
+Peace and joy.
diff --git a/content/posts/2008/03/24/texas.md b/content/posts/2008/03/24/texas.md
new file mode 100644
index 00000000..a83f945f
--- /dev/null
+++ b/content/posts/2008/03/24/texas.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-24T05:14:42-07:00"
+title = "Texas!"
+image = "/albums/s/image/P3191050.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/25/texas-means-bluebonnets.md b/content/posts/2008/03/25/texas-means-bluebonnets.md
new file mode 100644
index 00000000..933d7aca
--- /dev/null
+++ b/content/posts/2008/03/25/texas-means-bluebonnets.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-25T05:14:43-07:00"
+title = "Texas means Bluebonnets"
+image = "/albums/s/image/P3190960.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/26/texas-means-bluebonnets-and-old-houses.md b/content/posts/2008/03/26/texas-means-bluebonnets-and-old-houses.md
new file mode 100644
index 00000000..44c9811b
--- /dev/null
+++ b/content/posts/2008/03/26/texas-means-bluebonnets-and-old-houses.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-26T05:15:21-07:00"
+title = "Texas means Bluebonnets and old houses"
+image = "/albums/s/image/P3190959.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/27/texas-means-spring-wildflowers.md b/content/posts/2008/03/27/texas-means-spring-wildflowers.md
new file mode 100644
index 00000000..e7091d27
--- /dev/null
+++ b/content/posts/2008/03/27/texas-means-spring-wildflowers.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-27T05:16:19-07:00"
+title = "Texas means Spring Wildflowers"
+image = "/albums/s/image/P3190993.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/28/texas-means-cows.md b/content/posts/2008/03/28/texas-means-cows.md
new file mode 100644
index 00000000..b4402c2b
--- /dev/null
+++ b/content/posts/2008/03/28/texas-means-cows.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-28T05:19:44-07:00"
+title = "Texas means Cows!"
+image = "/albums/s/image/P3190952.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/29/eagle-on-courthouse.md b/content/posts/2008/03/29/eagle-on-courthouse.md
new file mode 100644
index 00000000..88b78a8f
--- /dev/null
+++ b/content/posts/2008/03/29/eagle-on-courthouse.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-29T05:21:25-07:00"
+title = "Eagle on Courthouse"
+image = "/albums/s/image/P3190941.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/30/old-theater.md b/content/posts/2008/03/30/old-theater.md
new file mode 100644
index 00000000..773387bf
--- /dev/null
+++ b/content/posts/2008/03/30/old-theater.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-30T05:21:58-07:00"
+title = "Old Theater"
+image = "/albums/s/image/P3190931.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/03/31/old-paint-on-old-building.md b/content/posts/2008/03/31/old-paint-on-old-building.md
new file mode 100644
index 00000000..bbc93552
--- /dev/null
+++ b/content/posts/2008/03/31/old-paint-on-old-building.md
@@ -0,0 +1,9 @@
++++
+date = "2008-03-31T05:22:33-07:00"
+title = "Old paint on old building"
+image = "/albums/s/image/P3190939.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/01/ruins-of-baylor-college-for-women.md b/content/posts/2008/04/01/ruins-of-baylor-college-for-women.md
new file mode 100644
index 00000000..09f2e7a2
--- /dev/null
+++ b/content/posts/2008/04/01/ruins-of-baylor-college-for-women.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-01T05:23:45-07:00"
+title = "Ruins of Baylor College for Women"
+image = "/albums/s/image/P3190953.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/02/more-ruins-of-baylor-college-for-women.md b/content/posts/2008/04/02/more-ruins-of-baylor-college-for-women.md
new file mode 100644
index 00000000..8abb0a09
--- /dev/null
+++ b/content/posts/2008/04/02/more-ruins-of-baylor-college-for-women.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-02T05:24:24-07:00"
+title = "More Ruins of Baylor College for Women"
+image = "/albums/s/image/P3191006.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/03/column-ruins-of-baylor-college-for-women.md b/content/posts/2008/04/03/column-ruins-of-baylor-college-for-women.md
new file mode 100644
index 00000000..e91ce032
--- /dev/null
+++ b/content/posts/2008/04/03/column-ruins-of-baylor-college-for-women.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-03T05:25:04-07:00"
+title = "Column Ruins of Baylor College for Women"
+image = "/albums/s/image/P3191003.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/04/all-i-want-is-my-heart.md b/content/posts/2008/04/04/all-i-want-is-my-heart.md
new file mode 100644
index 00000000..fac61a17
--- /dev/null
+++ b/content/posts/2008/04/04/all-i-want-is-my-heart.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-04T05:25:40-07:00"
+title = "All I want is my heart..."
+image = "/albums/s/image/P3191064.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/05/grace.md b/content/posts/2008/04/05/grace.md
new file mode 100644
index 00000000..ab6a61d4
--- /dev/null
+++ b/content/posts/2008/04/05/grace.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-05T05:26:24-07:00"
+title = "Grace"
+image = "/albums/s/image/P3191086.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/06/timeless.md b/content/posts/2008/04/06/timeless.md
new file mode 100644
index 00000000..c643a6bd
--- /dev/null
+++ b/content/posts/2008/04/06/timeless.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-06T05:28:43-07:00"
+title = "Timeless"
+image = "/albums/2008-03-24/image/P3201188.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/07/small-red-flower.md b/content/posts/2008/04/07/small-red-flower.md
new file mode 100644
index 00000000..ded3e751
--- /dev/null
+++ b/content/posts/2008/04/07/small-red-flower.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-07T05:36:07-07:00"
+title = "Small Red Flower"
+image = "/albums/2008-03-24/image/P1127693.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/08/purple-happy-face.md b/content/posts/2008/04/08/purple-happy-face.md
new file mode 100644
index 00000000..fae648cf
--- /dev/null
+++ b/content/posts/2008/04/08/purple-happy-face.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-08T08:22:51-07:00"
+title = "Purple Happy Face"
+image = "/albums/2008-03-24/image/P1127687.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/09/sad-yellow-flower.md b/content/posts/2008/04/09/sad-yellow-flower.md
new file mode 100644
index 00000000..da33b56f
--- /dev/null
+++ b/content/posts/2008/04/09/sad-yellow-flower.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-09T05:36:09-07:00"
+title = "Sad Yellow Flower"
+image = "/albums/2008-03-24/image/P1127733.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/10/small-red-flowers.md b/content/posts/2008/04/10/small-red-flowers.md
new file mode 100644
index 00000000..ea0c3071
--- /dev/null
+++ b/content/posts/2008/04/10/small-red-flowers.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-10T05:37:22-07:00"
+title = "Small Red Flowers"
+image = "/albums/2008-03-24/image/P1127736.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/11/big-flower.md b/content/posts/2008/04/11/big-flower.md
new file mode 100644
index 00000000..111d4f16
--- /dev/null
+++ b/content/posts/2008/04/11/big-flower.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-11T05:38:16-07:00"
+title = "Big Flower"
+image = "/albums/2008-03-24/image/P2230183.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/12/hogg-place.md b/content/posts/2008/04/12/hogg-place.md
new file mode 100644
index 00000000..87c7223a
--- /dev/null
+++ b/content/posts/2008/04/12/hogg-place.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-12T05:40:11-07:00"
+title = "Hogg Place"
+image = "/albums/2008-03-24/image/P2290354.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/13/lines-all-the-way-up.md b/content/posts/2008/04/13/lines-all-the-way-up.md
new file mode 100644
index 00000000..8be2bb3b
--- /dev/null
+++ b/content/posts/2008/04/13/lines-all-the-way-up.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-13T05:41:28-07:00"
+title = "Lines all the way up"
+image = "/albums/2008-03-24/image/P2290364.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/14/spider-webs-redux.md b/content/posts/2008/04/14/spider-webs-redux.md
new file mode 100644
index 00000000..43fb0a5c
--- /dev/null
+++ b/content/posts/2008/04/14/spider-webs-redux.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-14T05:42:00-07:00"
+title = "Spider Webs, redux"
+image = "/albums/2008-03-24/image/P3150702.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/15/spider-web-5.md b/content/posts/2008/04/15/spider-web-5.md
new file mode 100644
index 00000000..385aa8f4
--- /dev/null
+++ b/content/posts/2008/04/15/spider-web-5.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-15T05:42:53-07:00"
+title = "Spider Web, 5"
+image = "/albums/2008-03-24/image/P3150706.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/16/spider-web-6.md b/content/posts/2008/04/16/spider-web-6.md
new file mode 100644
index 00000000..d9094970
--- /dev/null
+++ b/content/posts/2008/04/16/spider-web-6.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-16T05:43:57-07:00"
+title = "Spider Web, 6"
+image = "/albums/2008-03-24/image/P3150713.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/17/2008-04-12-1.md b/content/posts/2008/04/17/2008-04-12-1.md
new file mode 100644
index 00000000..74583a40
--- /dev/null
+++ b/content/posts/2008/04/17/2008-04-12-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-17T18:00:00-07:00"
+title = "2008-04-12 - 1"
+image = "/wp-content/uploads/2008-04-12/P4121956.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/17/foutains-on-main.md b/content/posts/2008/04/17/foutains-on-main.md
new file mode 100644
index 00000000..1ab30bef
--- /dev/null
+++ b/content/posts/2008/04/17/foutains-on-main.md
@@ -0,0 +1,9 @@
++++
+date = "2008-04-17T05:38:57-07:00"
+title = "Foutains On Main"
+image = "/albums/2008-03-24/image/P2220151.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/04/18/2008-04-12-2.md b/content/posts/2008/04/18/2008-04-12-2.md
new file mode 100644
index 00000000..82a29877
--- /dev/null
+++ b/content/posts/2008/04/18/2008-04-12-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-18T18:00:00-07:00"
+title = "2008-04-12 - 2"
+image = "/wp-content/uploads/2008-04-12/P4121957.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/19/2008-04-12-3.md b/content/posts/2008/04/19/2008-04-12-3.md
new file mode 100644
index 00000000..1e0aa715
--- /dev/null
+++ b/content/posts/2008/04/19/2008-04-12-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-19T18:00:00-07:00"
+title = "2008-04-12 - 3"
+image = "/wp-content/uploads/2008-04-12/P4121961.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/20/2008-04-12-4.md b/content/posts/2008/04/20/2008-04-12-4.md
new file mode 100644
index 00000000..663bdb7e
--- /dev/null
+++ b/content/posts/2008/04/20/2008-04-12-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-20T18:00:00-07:00"
+title = "2008-04-12 - 4"
+image = "/wp-content/uploads/2008-04-12/P4121972.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/21/2008-04-12-5.md b/content/posts/2008/04/21/2008-04-12-5.md
new file mode 100644
index 00000000..c85bb8b6
--- /dev/null
+++ b/content/posts/2008/04/21/2008-04-12-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-21T18:00:00-07:00"
+title = "2008-04-12 - 5"
+image = "/wp-content/uploads/2008-04-12/P4121975.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/22/2008-04-12-6.md b/content/posts/2008/04/22/2008-04-12-6.md
new file mode 100644
index 00000000..5c354490
--- /dev/null
+++ b/content/posts/2008/04/22/2008-04-12-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-22T18:00:00-07:00"
+title = "2008-04-12 - 6"
+image = "/wp-content/uploads/2008-04-12/P4121996.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/23/2008-04-14-photowalk-downtown-1.md b/content/posts/2008/04/23/2008-04-14-photowalk-downtown-1.md
new file mode 100644
index 00000000..4ca9db6a
--- /dev/null
+++ b/content/posts/2008/04/23/2008-04-14-photowalk-downtown-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-23T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 1"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142218.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/24/2008-04-14-photowalk-downtown-2.md b/content/posts/2008/04/24/2008-04-14-photowalk-downtown-2.md
new file mode 100644
index 00000000..bea5d3ca
--- /dev/null
+++ b/content/posts/2008/04/24/2008-04-14-photowalk-downtown-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-24T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 2"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142219.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/25/2008-04-14-photowalk-downtown-3.md b/content/posts/2008/04/25/2008-04-14-photowalk-downtown-3.md
new file mode 100644
index 00000000..c8565bfc
--- /dev/null
+++ b/content/posts/2008/04/25/2008-04-14-photowalk-downtown-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-25T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 3"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142220.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/26/2008-04-14-photowalk-downtown-4.md b/content/posts/2008/04/26/2008-04-14-photowalk-downtown-4.md
new file mode 100644
index 00000000..44f51c97
--- /dev/null
+++ b/content/posts/2008/04/26/2008-04-14-photowalk-downtown-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-26T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 4"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142221.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/27/2008-04-14-photowalk-downtown-5.md b/content/posts/2008/04/27/2008-04-14-photowalk-downtown-5.md
new file mode 100644
index 00000000..4b6e7fc8
--- /dev/null
+++ b/content/posts/2008/04/27/2008-04-14-photowalk-downtown-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-27T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 5"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142222.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/28/2008-04-14-photowalk-downtown-6.md b/content/posts/2008/04/28/2008-04-14-photowalk-downtown-6.md
new file mode 100644
index 00000000..6c5924bc
--- /dev/null
+++ b/content/posts/2008/04/28/2008-04-14-photowalk-downtown-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-28T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 6"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142223.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/29/2008-04-14-photowalk-downtown-7.md b/content/posts/2008/04/29/2008-04-14-photowalk-downtown-7.md
new file mode 100644
index 00000000..c85f65e4
--- /dev/null
+++ b/content/posts/2008/04/29/2008-04-14-photowalk-downtown-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-29T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 7"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142224.jpg"
++++
+
+
+
diff --git a/content/posts/2008/04/30/2008-04-14-photowalk-downtown-8.md b/content/posts/2008/04/30/2008-04-14-photowalk-downtown-8.md
new file mode 100644
index 00000000..65755a1e
--- /dev/null
+++ b/content/posts/2008/04/30/2008-04-14-photowalk-downtown-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-04-30T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 8"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142225.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/01/2008-04-14-photowalk-downtown-9.md b/content/posts/2008/05/01/2008-04-14-photowalk-downtown-9.md
new file mode 100644
index 00000000..765077f5
--- /dev/null
+++ b/content/posts/2008/05/01/2008-04-14-photowalk-downtown-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-01T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 9"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142226.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/02/2008-04-14-photowalk-downtown-10.md b/content/posts/2008/05/02/2008-04-14-photowalk-downtown-10.md
new file mode 100644
index 00000000..7c87eb77
--- /dev/null
+++ b/content/posts/2008/05/02/2008-04-14-photowalk-downtown-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-02T18:00:00-07:00"
+title = "2008-04-14 Photowalk Downtown - 10"
+image = "/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142229.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/03/2008-04-12-7.md b/content/posts/2008/05/03/2008-04-12-7.md
new file mode 100644
index 00000000..91ea4053
--- /dev/null
+++ b/content/posts/2008/05/03/2008-04-12-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-03T18:00:00-07:00"
+title = "2008-04-12 - 7"
+image = "/wp-content/uploads/2008-04-12/P4122051.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/04/more_for_the_blog-1.md b/content/posts/2008/05/04/more_for_the_blog-1.md
new file mode 100644
index 00000000..b7db3457
--- /dev/null
+++ b/content/posts/2008/05/04/more_for_the_blog-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-04T18:00:00-07:00"
+title = "More_For_The_Blog - 1"
+image = "/wp-content/uploads/More_For_The_Blog/P3241620.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/05/more_for_the_blog-2.md b/content/posts/2008/05/05/more_for_the_blog-2.md
new file mode 100644
index 00000000..1cff0809
--- /dev/null
+++ b/content/posts/2008/05/05/more_for_the_blog-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-05T18:00:00-07:00"
+title = "More_For_The_Blog - 2"
+image = "/wp-content/uploads/More_For_The_Blog/P4051793.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/06/more_for_the_blog-3.md b/content/posts/2008/05/06/more_for_the_blog-3.md
new file mode 100644
index 00000000..55367bb7
--- /dev/null
+++ b/content/posts/2008/05/06/more_for_the_blog-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-06T18:00:00-07:00"
+title = "More_For_The_Blog - 3"
+image = "/wp-content/uploads/More_For_The_Blog/P4152245.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/07/more_for_the_blog-4.md b/content/posts/2008/05/07/more_for_the_blog-4.md
new file mode 100644
index 00000000..ec2ecc09
--- /dev/null
+++ b/content/posts/2008/05/07/more_for_the_blog-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-07T18:00:00-07:00"
+title = "More_For_The_Blog - 4"
+image = "/wp-content/uploads/More_For_The_Blog/P4192268.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/08/more_for_the_blog-5.md b/content/posts/2008/05/08/more_for_the_blog-5.md
new file mode 100644
index 00000000..028d4d4b
--- /dev/null
+++ b/content/posts/2008/05/08/more_for_the_blog-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-08T18:00:00-07:00"
+title = "More_For_The_Blog - 5"
+image = "/wp-content/uploads/More_For_The_Blog/P4192331.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/09/more_for_the_blog-6.md b/content/posts/2008/05/09/more_for_the_blog-6.md
new file mode 100644
index 00000000..b50ba759
--- /dev/null
+++ b/content/posts/2008/05/09/more_for_the_blog-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-09T18:00:00-07:00"
+title = "More_For_The_Blog - 6"
+image = "/wp-content/uploads/More_For_The_Blog/P4192423.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/10/more_for_the_blog-7.md b/content/posts/2008/05/10/more_for_the_blog-7.md
new file mode 100644
index 00000000..8df8953a
--- /dev/null
+++ b/content/posts/2008/05/10/more_for_the_blog-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-10T18:00:00-07:00"
+title = "More_For_The_Blog - 7"
+image = "/wp-content/uploads/More_For_The_Blog/P4202501.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/11/more_for_the_blog-8.md b/content/posts/2008/05/11/more_for_the_blog-8.md
new file mode 100644
index 00000000..42b38a57
--- /dev/null
+++ b/content/posts/2008/05/11/more_for_the_blog-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-11T18:00:00-07:00"
+title = "More_For_The_Blog - 8"
+image = "/wp-content/uploads/More_For_The_Blog/P4202517.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/12/more_for_the_blog-9.md b/content/posts/2008/05/12/more_for_the_blog-9.md
new file mode 100644
index 00000000..40eb6dae
--- /dev/null
+++ b/content/posts/2008/05/12/more_for_the_blog-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-12T18:00:00-07:00"
+title = "More_For_The_Blog - 9"
+image = "/wp-content/uploads/More_For_The_Blog/P4222698.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/13/more_for_the_blog-10.md b/content/posts/2008/05/13/more_for_the_blog-10.md
new file mode 100644
index 00000000..e11345e0
--- /dev/null
+++ b/content/posts/2008/05/13/more_for_the_blog-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-13T18:00:00-07:00"
+title = "More_For_The_Blog - 10"
+image = "/wp-content/uploads/More_For_The_Blog/P4282865.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/14/more_for_the_blog-11.md b/content/posts/2008/05/14/more_for_the_blog-11.md
new file mode 100644
index 00000000..e1f25771
--- /dev/null
+++ b/content/posts/2008/05/14/more_for_the_blog-11.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-14T18:00:00-07:00"
+title = "More_For_The_Blog - 11"
+image = "/wp-content/uploads/More_For_The_Blog/P4282866.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/15/hammon-ranch-nature-1.md b/content/posts/2008/05/15/hammon-ranch-nature-1.md
new file mode 100644
index 00000000..03038588
--- /dev/null
+++ b/content/posts/2008/05/15/hammon-ranch-nature-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-15T18:00:00-07:00"
+title = "Hammon Ranch Nature - 1"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192297.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/16/hammon-ranch-nature-2.md b/content/posts/2008/05/16/hammon-ranch-nature-2.md
new file mode 100644
index 00000000..c15d7758
--- /dev/null
+++ b/content/posts/2008/05/16/hammon-ranch-nature-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-16T18:00:00-07:00"
+title = "Hammon Ranch Nature - 2"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192302.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/17/hammon-ranch-nature-3.md b/content/posts/2008/05/17/hammon-ranch-nature-3.md
new file mode 100644
index 00000000..7930b937
--- /dev/null
+++ b/content/posts/2008/05/17/hammon-ranch-nature-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-17T18:00:00-07:00"
+title = "Hammon Ranch Nature - 3"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192320.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/18/hammon-ranch-nature-4.md b/content/posts/2008/05/18/hammon-ranch-nature-4.md
new file mode 100644
index 00000000..82caf200
--- /dev/null
+++ b/content/posts/2008/05/18/hammon-ranch-nature-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-18T18:00:00-07:00"
+title = "Hammon Ranch Nature - 4"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192324.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/19/hammon-ranch-nature-5.md b/content/posts/2008/05/19/hammon-ranch-nature-5.md
new file mode 100644
index 00000000..aa28ecc3
--- /dev/null
+++ b/content/posts/2008/05/19/hammon-ranch-nature-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-19T18:00:00-07:00"
+title = "Hammon Ranch Nature - 5"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192339.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/20/hammon-ranch-nature-6.md b/content/posts/2008/05/20/hammon-ranch-nature-6.md
new file mode 100644
index 00000000..5a144d69
--- /dev/null
+++ b/content/posts/2008/05/20/hammon-ranch-nature-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-20T18:00:00-07:00"
+title = "Hammon Ranch Nature - 6"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192410.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/21/hammon-ranch-nature-7.md b/content/posts/2008/05/21/hammon-ranch-nature-7.md
new file mode 100644
index 00000000..3c575cfd
--- /dev/null
+++ b/content/posts/2008/05/21/hammon-ranch-nature-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-21T18:00:00-07:00"
+title = "Hammon Ranch Nature - 7"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192418.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/22/hammon-ranch-nature-8.md b/content/posts/2008/05/22/hammon-ranch-nature-8.md
new file mode 100644
index 00000000..db33d3a7
--- /dev/null
+++ b/content/posts/2008/05/22/hammon-ranch-nature-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-22T18:00:00-07:00"
+title = "Hammon Ranch Nature - 8"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192464.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/23/hammon-ranch-nature-9.md b/content/posts/2008/05/23/hammon-ranch-nature-9.md
new file mode 100644
index 00000000..743ff210
--- /dev/null
+++ b/content/posts/2008/05/23/hammon-ranch-nature-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-23T18:00:00-07:00"
+title = "Hammon Ranch Nature - 9"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192478.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/24/hammon-ranch-nature-10.md b/content/posts/2008/05/24/hammon-ranch-nature-10.md
new file mode 100644
index 00000000..5f61a65b
--- /dev/null
+++ b/content/posts/2008/05/24/hammon-ranch-nature-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-24T18:00:00-07:00"
+title = "Hammon Ranch Nature - 10"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192496.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/25/hammon-ranch-nature-11.md b/content/posts/2008/05/25/hammon-ranch-nature-11.md
new file mode 100644
index 00000000..03b1c0cd
--- /dev/null
+++ b/content/posts/2008/05/25/hammon-ranch-nature-11.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-25T18:00:00-07:00"
+title = "Hammon Ranch Nature - 11"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192498.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/26/hammon-ranch-nature-12.md b/content/posts/2008/05/26/hammon-ranch-nature-12.md
new file mode 100644
index 00000000..feb6d58a
--- /dev/null
+++ b/content/posts/2008/05/26/hammon-ranch-nature-12.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-26T18:00:00-07:00"
+title = "Hammon Ranch Nature - 12"
+image = "/wp-content/uploads/Hammon%20Ranch%20Nature/P4192499.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/27/random-for-june-1.md b/content/posts/2008/05/27/random-for-june-1.md
new file mode 100644
index 00000000..920c2ee3
--- /dev/null
+++ b/content/posts/2008/05/27/random-for-june-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-27T12:00:00-07:00"
+title = "Random For June - 1"
+image = "/wp-content/uploads/Random%20For%20June/P4021697.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/28/random-for-june-2.md b/content/posts/2008/05/28/random-for-june-2.md
new file mode 100644
index 00000000..518075a2
--- /dev/null
+++ b/content/posts/2008/05/28/random-for-june-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-28T12:00:00-07:00"
+title = "Random For June - 2"
+image = "/wp-content/uploads/Random%20For%20June/P4051719.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/29/random-for-june-3.md b/content/posts/2008/05/29/random-for-june-3.md
new file mode 100644
index 00000000..bd77d243
--- /dev/null
+++ b/content/posts/2008/05/29/random-for-june-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-29T12:00:00-07:00"
+title = "Random For June - 3"
+image = "/wp-content/uploads/Random%20For%20June/P4051723.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/30/random-for-june-4.md b/content/posts/2008/05/30/random-for-june-4.md
new file mode 100644
index 00000000..b185edaf
--- /dev/null
+++ b/content/posts/2008/05/30/random-for-june-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-30T12:00:00-07:00"
+title = "Random For June - 4"
+image = "/wp-content/uploads/Random%20For%20June/P4051724.jpg"
++++
+
+
+
diff --git a/content/posts/2008/05/31/random-for-june-5.md b/content/posts/2008/05/31/random-for-june-5.md
new file mode 100644
index 00000000..ba6b5444
--- /dev/null
+++ b/content/posts/2008/05/31/random-for-june-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-05-31T12:00:00-07:00"
+title = "Random For June - 5"
+image = "/wp-content/uploads/Random%20For%20June/P4051735.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/01/random-for-june-6.md b/content/posts/2008/06/01/random-for-june-6.md
new file mode 100644
index 00000000..324890a6
--- /dev/null
+++ b/content/posts/2008/06/01/random-for-june-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-01T12:00:00-07:00"
+title = "Random For June - 6"
+image = "/wp-content/uploads/Random%20For%20June/P4121968.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/02/random-for-june-7.md b/content/posts/2008/06/02/random-for-june-7.md
new file mode 100644
index 00000000..206a5f1e
--- /dev/null
+++ b/content/posts/2008/06/02/random-for-june-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-02T12:00:00-07:00"
+title = "Random For June - 7"
+image = "/wp-content/uploads/Random%20For%20June/P5012876.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/03/random-for-june-8.md b/content/posts/2008/06/03/random-for-june-8.md
new file mode 100644
index 00000000..e92f5f66
--- /dev/null
+++ b/content/posts/2008/06/03/random-for-june-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-03T12:00:00-07:00"
+title = "Random For June - 8"
+image = "/wp-content/uploads/Random%20For%20June/P5022890.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/04/random-for-june-9.md b/content/posts/2008/06/04/random-for-june-9.md
new file mode 100644
index 00000000..360c4f93
--- /dev/null
+++ b/content/posts/2008/06/04/random-for-june-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-04T12:00:00-07:00"
+title = "Random For June - 9"
+image = "/wp-content/uploads/Random%20For%20June/P5102960.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/05/random-for-june-10.md b/content/posts/2008/06/05/random-for-june-10.md
new file mode 100644
index 00000000..7b91fccd
--- /dev/null
+++ b/content/posts/2008/06/05/random-for-june-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-05T12:00:00-07:00"
+title = "Random For June - 10"
+image = "/wp-content/uploads/Random%20For%20June/P5112995.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/06/random-for-june-11.md b/content/posts/2008/06/06/random-for-june-11.md
new file mode 100644
index 00000000..b358c40f
--- /dev/null
+++ b/content/posts/2008/06/06/random-for-june-11.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-06T12:00:00-07:00"
+title = "Random For June - 11"
+image = "/wp-content/uploads/Random%20For%20June/P5113002.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/07/random-for-june-12.md b/content/posts/2008/06/07/random-for-june-12.md
new file mode 100644
index 00000000..ff1aa37e
--- /dev/null
+++ b/content/posts/2008/06/07/random-for-june-12.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-07T12:00:00-07:00"
+title = "Random For June - 12"
+image = "/wp-content/uploads/Random%20For%20June/P5113062.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/08/random-for-june-13.md b/content/posts/2008/06/08/random-for-june-13.md
new file mode 100644
index 00000000..cf611238
--- /dev/null
+++ b/content/posts/2008/06/08/random-for-june-13.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-08T12:00:00-07:00"
+title = "Random For June - 13"
+image = "/wp-content/uploads/Random%20For%20June/P5113109.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/09/random-for-june-14.md b/content/posts/2008/06/09/random-for-june-14.md
new file mode 100644
index 00000000..9cdc2eef
--- /dev/null
+++ b/content/posts/2008/06/09/random-for-june-14.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-09T12:00:00-07:00"
+title = "Random For June - 14"
+image = "/wp-content/uploads/Random%20For%20June/P5183151.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/10/random-for-end-of-june-1.md b/content/posts/2008/06/10/random-for-end-of-june-1.md
new file mode 100644
index 00000000..6a7bf711
--- /dev/null
+++ b/content/posts/2008/06/10/random-for-end-of-june-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-10T18:51:50-07:00"
+title = "Random for end of June - 1"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P5273153.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/11/random-for-end-of-june-2.md b/content/posts/2008/06/11/random-for-end-of-june-2.md
new file mode 100644
index 00000000..67a1741e
--- /dev/null
+++ b/content/posts/2008/06/11/random-for-end-of-june-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-11T18:51:52-07:00"
+title = "Random for end of June - 2"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P5273156.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/12/random-for-end-of-june-3.md b/content/posts/2008/06/12/random-for-end-of-june-3.md
new file mode 100644
index 00000000..fd3d6f39
--- /dev/null
+++ b/content/posts/2008/06/12/random-for-end-of-june-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-12T18:51:53-07:00"
+title = "Random for end of June - 3"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P5313158.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/13/random-for-end-of-june-4.md b/content/posts/2008/06/13/random-for-end-of-june-4.md
new file mode 100644
index 00000000..00444070
--- /dev/null
+++ b/content/posts/2008/06/13/random-for-end-of-june-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-13T18:51:55-07:00"
+title = "Random for end of June - 4"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P5313167.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/14/random-for-end-of-june-5.md b/content/posts/2008/06/14/random-for-end-of-june-5.md
new file mode 100644
index 00000000..cb174ca6
--- /dev/null
+++ b/content/posts/2008/06/14/random-for-end-of-june-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-14T18:51:56-07:00"
+title = "Random for end of June - 5"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P6033198.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/15/random-for-end-of-june-6.md b/content/posts/2008/06/15/random-for-end-of-june-6.md
new file mode 100644
index 00000000..49c30844
--- /dev/null
+++ b/content/posts/2008/06/15/random-for-end-of-june-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-15T18:51:58-07:00"
+title = "Random for end of June - 6"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P6033199.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/16/random-for-end-of-june-7.md b/content/posts/2008/06/16/random-for-end-of-june-7.md
new file mode 100644
index 00000000..cccdd832
--- /dev/null
+++ b/content/posts/2008/06/16/random-for-end-of-june-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-16T18:51:59-07:00"
+title = "Random for end of June - 7"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P6033214.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/17/random-for-end-of-june-8.md b/content/posts/2008/06/17/random-for-end-of-june-8.md
new file mode 100644
index 00000000..07e53d1f
--- /dev/null
+++ b/content/posts/2008/06/17/random-for-end-of-june-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-17T18:52:01-07:00"
+title = "Random for end of June - 8"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P6053232.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/18/random-for-end-of-june-9.md b/content/posts/2008/06/18/random-for-end-of-june-9.md
new file mode 100644
index 00000000..fde80ee0
--- /dev/null
+++ b/content/posts/2008/06/18/random-for-end-of-june-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-18T18:52:03-07:00"
+title = "Random for end of June - 9"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P6053234.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/19/random-for-end-of-june-10.md b/content/posts/2008/06/19/random-for-end-of-june-10.md
new file mode 100644
index 00000000..66fcdd1b
--- /dev/null
+++ b/content/posts/2008/06/19/random-for-end-of-june-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-19T18:52:04-07:00"
+title = "Random for end of June - 10"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P6053239.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/20/random-for-end-of-june-11.md b/content/posts/2008/06/20/random-for-end-of-june-11.md
new file mode 100644
index 00000000..c08dfed6
--- /dev/null
+++ b/content/posts/2008/06/20/random-for-end-of-june-11.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-20T18:52:06-07:00"
+title = "Random for end of June - 11"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P7072936.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/21/random-for-end-of-june-12.md b/content/posts/2008/06/21/random-for-end-of-june-12.md
new file mode 100644
index 00000000..089a1115
--- /dev/null
+++ b/content/posts/2008/06/21/random-for-end-of-june-12.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-21T18:52:07-07:00"
+title = "Random for end of June - 12"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P7183013.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/22/random-for-end-of-june-13.md b/content/posts/2008/06/22/random-for-end-of-june-13.md
new file mode 100644
index 00000000..f907d76e
--- /dev/null
+++ b/content/posts/2008/06/22/random-for-end-of-june-13.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-22T18:52:09-07:00"
+title = "Random for end of June - 13"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P7183016.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/23/random-for-end-of-june-14.md b/content/posts/2008/06/23/random-for-end-of-june-14.md
new file mode 100644
index 00000000..344ad333
--- /dev/null
+++ b/content/posts/2008/06/23/random-for-end-of-june-14.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-23T18:52:10-07:00"
+title = "Random for end of June - 14"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P7183021.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/24/random-for-end-of-june-15.md b/content/posts/2008/06/24/random-for-end-of-june-15.md
new file mode 100644
index 00000000..71e31cf4
--- /dev/null
+++ b/content/posts/2008/06/24/random-for-end-of-june-15.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-24T18:52:12-07:00"
+title = "Random for end of June - 15"
+image = "/wp-content/uploads/Random%20for%20end%20of%20June/P7183025.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/25/end-of-june-1.md b/content/posts/2008/06/25/end-of-june-1.md
new file mode 100644
index 00000000..877e0b53
--- /dev/null
+++ b/content/posts/2008/06/25/end-of-june-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-25T12:52:12-07:00"
+title = "End of June - 1"
+image = "/wp-content/uploads/End%20of%20June/P4202515.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/26/end-of-june-2.md b/content/posts/2008/06/26/end-of-june-2.md
new file mode 100644
index 00000000..bac040a8
--- /dev/null
+++ b/content/posts/2008/06/26/end-of-june-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-26T12:52:12-07:00"
+title = "End of June - 2"
+image = "/wp-content/uploads/End%20of%20June/P4202518.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/27/end-of-june-3.md b/content/posts/2008/06/27/end-of-june-3.md
new file mode 100644
index 00000000..73bd3540
--- /dev/null
+++ b/content/posts/2008/06/27/end-of-june-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-27T12:52:12-07:00"
+title = "End of June - 3"
+image = "/wp-content/uploads/End%20of%20June/P6053224.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/28/end-of-june-4.md b/content/posts/2008/06/28/end-of-june-4.md
new file mode 100644
index 00000000..18fcfd43
--- /dev/null
+++ b/content/posts/2008/06/28/end-of-june-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-28T12:52:12-07:00"
+title = "End of June - 4"
+image = "/wp-content/uploads/End%20of%20June/P6193439.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/29/end-of-june-5.md b/content/posts/2008/06/29/end-of-june-5.md
new file mode 100644
index 00000000..752daa8d
--- /dev/null
+++ b/content/posts/2008/06/29/end-of-june-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-29T12:52:12-07:00"
+title = "End of June - 5"
+image = "/wp-content/uploads/End%20of%20June/P6193441.jpg"
++++
+
+
+
diff --git a/content/posts/2008/06/30/end-of-june-6.md b/content/posts/2008/06/30/end-of-june-6.md
new file mode 100644
index 00000000..eb830d98
--- /dev/null
+++ b/content/posts/2008/06/30/end-of-june-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-06-30T12:52:12-07:00"
+title = "End of June - 6"
+image = "/wp-content/uploads/End%20of%20June/P6193447.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/01/end-of-june-7.md b/content/posts/2008/07/01/end-of-june-7.md
new file mode 100644
index 00000000..6448cd55
--- /dev/null
+++ b/content/posts/2008/07/01/end-of-june-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-01T12:52:12-07:00"
+title = "End of June - 7"
+image = "/wp-content/uploads/End%20of%20June/P6193449.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/02/end-of-june-8.md b/content/posts/2008/07/02/end-of-june-8.md
new file mode 100644
index 00000000..68744551
--- /dev/null
+++ b/content/posts/2008/07/02/end-of-june-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-02T12:52:12-07:00"
+title = "End of June - 8"
+image = "/wp-content/uploads/End%20of%20June/P6193451.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/03/end-of-june-9.md b/content/posts/2008/07/03/end-of-june-9.md
new file mode 100644
index 00000000..61ff1dab
--- /dev/null
+++ b/content/posts/2008/07/03/end-of-june-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-03T12:52:12-07:00"
+title = "End of June - 9"
+image = "/wp-content/uploads/End%20of%20June/P6193474.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/04/end-of-june-10.md b/content/posts/2008/07/04/end-of-june-10.md
new file mode 100644
index 00000000..35bd5999
--- /dev/null
+++ b/content/posts/2008/07/04/end-of-june-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-04T12:52:12-07:00"
+title = "End of June - 10"
+image = "/wp-content/uploads/End%20of%20June/P6193483.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/05/july-1.md b/content/posts/2008/07/05/july-1.md
new file mode 100644
index 00000000..767522bb
--- /dev/null
+++ b/content/posts/2008/07/05/july-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-05T06:52:12-07:00"
+title = "July - 1"
+image = "/wp-content/uploads/July/P6233806.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/06/july-2.md b/content/posts/2008/07/06/july-2.md
new file mode 100644
index 00000000..2075ece0
--- /dev/null
+++ b/content/posts/2008/07/06/july-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-06T06:52:12-07:00"
+title = "July - 2"
+image = "/wp-content/uploads/July/P7043831.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/07/july-3.md b/content/posts/2008/07/07/july-3.md
new file mode 100644
index 00000000..ec7fcba2
--- /dev/null
+++ b/content/posts/2008/07/07/july-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-07T06:52:12-07:00"
+title = "July - 3"
+image = "/wp-content/uploads/July/P7043834.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/08/july-4.md b/content/posts/2008/07/08/july-4.md
new file mode 100644
index 00000000..23a6a858
--- /dev/null
+++ b/content/posts/2008/07/08/july-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-08T06:52:12-07:00"
+title = "July - 4"
+image = "/wp-content/uploads/July/P7043838.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/09/july-5.md b/content/posts/2008/07/09/july-5.md
new file mode 100644
index 00000000..76aba1e6
--- /dev/null
+++ b/content/posts/2008/07/09/july-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-09T06:52:12-07:00"
+title = "July - 5"
+image = "/wp-content/uploads/July/P7043855.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/10/july-6.md b/content/posts/2008/07/10/july-6.md
new file mode 100644
index 00000000..37686687
--- /dev/null
+++ b/content/posts/2008/07/10/july-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-10T06:52:12-07:00"
+title = "July - 6"
+image = "/wp-content/uploads/July/P7043860.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/11/july-7.md b/content/posts/2008/07/11/july-7.md
new file mode 100644
index 00000000..1fb5fabe
--- /dev/null
+++ b/content/posts/2008/07/11/july-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-11T06:52:12-07:00"
+title = "July - 7"
+image = "/wp-content/uploads/July/P7043866.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/12/july-8.md b/content/posts/2008/07/12/july-8.md
new file mode 100644
index 00000000..23faa74b
--- /dev/null
+++ b/content/posts/2008/07/12/july-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-12T06:52:12-07:00"
+title = "July - 8"
+image = "/wp-content/uploads/July/P7043885.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/13/july-9.md b/content/posts/2008/07/13/july-9.md
new file mode 100644
index 00000000..af96e8ff
--- /dev/null
+++ b/content/posts/2008/07/13/july-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-13T06:52:12-07:00"
+title = "July - 9"
+image = "/wp-content/uploads/July/P7043888.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/14/july-10.md b/content/posts/2008/07/14/july-10.md
new file mode 100644
index 00000000..9ae9a8c4
--- /dev/null
+++ b/content/posts/2008/07/14/july-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-14T06:52:12-07:00"
+title = "July - 10"
+image = "/wp-content/uploads/July/P7043889.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/15/july-2008-1.md b/content/posts/2008/07/15/july-2008-1.md
new file mode 100644
index 00000000..b3ad34df
--- /dev/null
+++ b/content/posts/2008/07/15/july-2008-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-15T00:52:12-07:00"
+title = "July-2008 - 1"
+image = "/wp-content/uploads/July-2008/P2220159.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/16/july-2008-2.md b/content/posts/2008/07/16/july-2008-2.md
new file mode 100644
index 00000000..a5e3d66f
--- /dev/null
+++ b/content/posts/2008/07/16/july-2008-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-16T00:52:12-07:00"
+title = "July-2008 - 2"
+image = "/wp-content/uploads/July-2008/P2230164.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/17/july-2008-3.md b/content/posts/2008/07/17/july-2008-3.md
new file mode 100644
index 00000000..9873a712
--- /dev/null
+++ b/content/posts/2008/07/17/july-2008-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-17T00:52:12-07:00"
+title = "July-2008 - 3"
+image = "/wp-content/uploads/July-2008/P2290344.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/18/july-2008-4.md b/content/posts/2008/07/18/july-2008-4.md
new file mode 100644
index 00000000..1f985fd9
--- /dev/null
+++ b/content/posts/2008/07/18/july-2008-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-18T00:52:12-07:00"
+title = "July-2008 - 4"
+image = "/wp-content/uploads/July-2008/P2290345.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/19/july-2008-5.md b/content/posts/2008/07/19/july-2008-5.md
new file mode 100644
index 00000000..0d567d40
--- /dev/null
+++ b/content/posts/2008/07/19/july-2008-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-19T00:52:12-07:00"
+title = "July-2008 - 5"
+image = "/wp-content/uploads/July-2008/P2290346.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/20/july-2008-6.md b/content/posts/2008/07/20/july-2008-6.md
new file mode 100644
index 00000000..c0c509c2
--- /dev/null
+++ b/content/posts/2008/07/20/july-2008-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-20T00:52:12-07:00"
+title = "July-2008 - 6"
+image = "/wp-content/uploads/July-2008/P2290349.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/21/july-2008-7.md b/content/posts/2008/07/21/july-2008-7.md
new file mode 100644
index 00000000..b4cbc81b
--- /dev/null
+++ b/content/posts/2008/07/21/july-2008-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-21T00:52:12-07:00"
+title = "July-2008 - 7"
+image = "/wp-content/uploads/July-2008/P2290351.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/22/july-2008-8.md b/content/posts/2008/07/22/july-2008-8.md
new file mode 100644
index 00000000..1285a7f0
--- /dev/null
+++ b/content/posts/2008/07/22/july-2008-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-22T00:52:12-07:00"
+title = "July-2008 - 8"
+image = "/wp-content/uploads/July-2008/P3190901.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/23/july-2008-9.md b/content/posts/2008/07/23/july-2008-9.md
new file mode 100644
index 00000000..54d94d00
--- /dev/null
+++ b/content/posts/2008/07/23/july-2008-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-23T00:52:12-07:00"
+title = "July-2008 - 9"
+image = "/wp-content/uploads/July-2008/P3191109.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/24/july-2008-10.md b/content/posts/2008/07/24/july-2008-10.md
new file mode 100644
index 00000000..00863951
--- /dev/null
+++ b/content/posts/2008/07/24/july-2008-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-24T00:52:12-07:00"
+title = "July-2008 - 10"
+image = "/wp-content/uploads/July-2008/P3191118.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/25/july-2008-11.md b/content/posts/2008/07/25/july-2008-11.md
new file mode 100644
index 00000000..65851f1d
--- /dev/null
+++ b/content/posts/2008/07/25/july-2008-11.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-25T00:52:12-07:00"
+title = "July-2008 - 11"
+image = "/wp-content/uploads/July-2008/P3191120.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/26/july-2008-12.md b/content/posts/2008/07/26/july-2008-12.md
new file mode 100644
index 00000000..74431f73
--- /dev/null
+++ b/content/posts/2008/07/26/july-2008-12.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-26T00:52:12-07:00"
+title = "July-2008 - 12"
+image = "/wp-content/uploads/July-2008/P3201148.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/27/july-2008-13.md b/content/posts/2008/07/27/july-2008-13.md
new file mode 100644
index 00000000..8be1839e
--- /dev/null
+++ b/content/posts/2008/07/27/july-2008-13.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-27T00:52:12-07:00"
+title = "July-2008 - 13"
+image = "/wp-content/uploads/July-2008/P3201156.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/28/july-2008-14.md b/content/posts/2008/07/28/july-2008-14.md
new file mode 100644
index 00000000..e362319c
--- /dev/null
+++ b/content/posts/2008/07/28/july-2008-14.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-28T00:52:12-07:00"
+title = "July-2008 - 14"
+image = "/wp-content/uploads/July-2008/P3201257.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/29/july-2008-15.md b/content/posts/2008/07/29/july-2008-15.md
new file mode 100644
index 00000000..81deed90
--- /dev/null
+++ b/content/posts/2008/07/29/july-2008-15.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-29T00:52:12-07:00"
+title = "July-2008 - 15"
+image = "/wp-content/uploads/July-2008/P3221385.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/30/july-2008-16.md b/content/posts/2008/07/30/july-2008-16.md
new file mode 100644
index 00000000..db4cddfa
--- /dev/null
+++ b/content/posts/2008/07/30/july-2008-16.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-30T00:52:12-07:00"
+title = "July-2008 - 16"
+image = "/wp-content/uploads/July-2008/P3311685.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/31/july-2008-17.md b/content/posts/2008/07/31/july-2008-17.md
new file mode 100644
index 00000000..9d7c0440
--- /dev/null
+++ b/content/posts/2008/07/31/july-2008-17.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-31T00:52:12-07:00"
+title = "July-2008 - 17"
+image = "/wp-content/uploads/July-2008/P4152239.jpg"
++++
+
+
+
diff --git a/content/posts/2008/07/31/la-centera-pond-1.md b/content/posts/2008/07/31/la-centera-pond-1.md
new file mode 100644
index 00000000..b897c6e8
--- /dev/null
+++ b/content/posts/2008/07/31/la-centera-pond-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-07-31T18:52:12-07:00"
+title = "La Centera Pond - 1"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274012.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/01/la-centera-pond-2.md b/content/posts/2008/08/01/la-centera-pond-2.md
new file mode 100644
index 00000000..6a72bfb5
--- /dev/null
+++ b/content/posts/2008/08/01/la-centera-pond-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-01T18:52:12-07:00"
+title = "La Centera Pond - 2"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274025.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/02/la-centera-pond-3.md b/content/posts/2008/08/02/la-centera-pond-3.md
new file mode 100644
index 00000000..df489a80
--- /dev/null
+++ b/content/posts/2008/08/02/la-centera-pond-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-02T18:52:12-07:00"
+title = "La Centera Pond - 3"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274029.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/03/la-centera-pond-4.md b/content/posts/2008/08/03/la-centera-pond-4.md
new file mode 100644
index 00000000..5f3581d8
--- /dev/null
+++ b/content/posts/2008/08/03/la-centera-pond-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-03T18:52:12-07:00"
+title = "La Centera Pond - 4"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274030.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/04/la-centera-pond-5.md b/content/posts/2008/08/04/la-centera-pond-5.md
new file mode 100644
index 00000000..da7d1abf
--- /dev/null
+++ b/content/posts/2008/08/04/la-centera-pond-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-04T18:52:12-07:00"
+title = "La Centera Pond - 5"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274032.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/05/la-centera-pond-6.md b/content/posts/2008/08/05/la-centera-pond-6.md
new file mode 100644
index 00000000..2009756f
--- /dev/null
+++ b/content/posts/2008/08/05/la-centera-pond-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-05T18:52:12-07:00"
+title = "La Centera Pond - 6"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274034.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/06/la-centera-pond-7.md b/content/posts/2008/08/06/la-centera-pond-7.md
new file mode 100644
index 00000000..cd8dca2d
--- /dev/null
+++ b/content/posts/2008/08/06/la-centera-pond-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-06T18:52:12-07:00"
+title = "La Centera Pond - 7"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274035.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/07/la-centera-pond-8.md b/content/posts/2008/08/07/la-centera-pond-8.md
new file mode 100644
index 00000000..258a909b
--- /dev/null
+++ b/content/posts/2008/08/07/la-centera-pond-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-07T18:52:12-07:00"
+title = "La Centera Pond - 8"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274036.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/08/la-centera-pond-9.md b/content/posts/2008/08/08/la-centera-pond-9.md
new file mode 100644
index 00000000..dde4e450
--- /dev/null
+++ b/content/posts/2008/08/08/la-centera-pond-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-08T18:52:12-07:00"
+title = "La Centera Pond - 9"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274050.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/09/la-centera-pond-10.md b/content/posts/2008/08/09/la-centera-pond-10.md
new file mode 100644
index 00000000..912e5ec4
--- /dev/null
+++ b/content/posts/2008/08/09/la-centera-pond-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-09T18:52:12-07:00"
+title = "La Centera Pond - 10"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274054.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/10/la-centera-pond-11.md b/content/posts/2008/08/10/la-centera-pond-11.md
new file mode 100644
index 00000000..f3fc20f0
--- /dev/null
+++ b/content/posts/2008/08/10/la-centera-pond-11.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-10T18:52:12-07:00"
+title = "La Centera Pond - 11"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274060.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/11/la-centera-pond-12.md b/content/posts/2008/08/11/la-centera-pond-12.md
new file mode 100644
index 00000000..aad24eb5
--- /dev/null
+++ b/content/posts/2008/08/11/la-centera-pond-12.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-11T18:52:12-07:00"
+title = "La Centera Pond - 12"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274062.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/12/la-centera-pond-13.md b/content/posts/2008/08/12/la-centera-pond-13.md
new file mode 100644
index 00000000..c7b4a091
--- /dev/null
+++ b/content/posts/2008/08/12/la-centera-pond-13.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-12T18:52:12-07:00"
+title = "La Centera Pond - 13"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274065.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/13/la-centera-pond-14.md b/content/posts/2008/08/13/la-centera-pond-14.md
new file mode 100644
index 00000000..6783c304
--- /dev/null
+++ b/content/posts/2008/08/13/la-centera-pond-14.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-13T18:52:12-07:00"
+title = "La Centera Pond - 14"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274067.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/14/la-centera-pond-15.md b/content/posts/2008/08/14/la-centera-pond-15.md
new file mode 100644
index 00000000..2bd544ac
--- /dev/null
+++ b/content/posts/2008/08/14/la-centera-pond-15.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-14T18:52:12-07:00"
+title = "La Centera Pond - 15"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274070.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/15/la-centera-pond-16.md b/content/posts/2008/08/15/la-centera-pond-16.md
new file mode 100644
index 00000000..03f4e301
--- /dev/null
+++ b/content/posts/2008/08/15/la-centera-pond-16.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-15T18:52:12-07:00"
+title = "La Centera Pond - 16"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274080.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/16/la-centera-pond-17.md b/content/posts/2008/08/16/la-centera-pond-17.md
new file mode 100644
index 00000000..329ef4c3
--- /dev/null
+++ b/content/posts/2008/08/16/la-centera-pond-17.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-16T18:52:12-07:00"
+title = "La Centera Pond - 17"
+image = "/wp-content/uploads/La%20Centera%20Pond/P7274083.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/17/pastoral-garden-1.md b/content/posts/2008/08/17/pastoral-garden-1.md
new file mode 100644
index 00000000..5c8b392f
--- /dev/null
+++ b/content/posts/2008/08/17/pastoral-garden-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-17T12:52:12-07:00"
+title = "Pastoral Garden - 1"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074161.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/18/pastoral-garden-2.md b/content/posts/2008/08/18/pastoral-garden-2.md
new file mode 100644
index 00000000..d10d3769
--- /dev/null
+++ b/content/posts/2008/08/18/pastoral-garden-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-18T12:52:12-07:00"
+title = "Pastoral Garden - 2"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074162.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/19/pastoral-garden-3.md b/content/posts/2008/08/19/pastoral-garden-3.md
new file mode 100644
index 00000000..ddb7386b
--- /dev/null
+++ b/content/posts/2008/08/19/pastoral-garden-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-19T12:52:12-07:00"
+title = "Pastoral Garden - 3"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074166.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/20/pastoral-garden-4.md b/content/posts/2008/08/20/pastoral-garden-4.md
new file mode 100644
index 00000000..881a6440
--- /dev/null
+++ b/content/posts/2008/08/20/pastoral-garden-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-20T12:52:12-07:00"
+title = "Pastoral Garden - 4"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074173.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/21/pastoral-garden-5.md b/content/posts/2008/08/21/pastoral-garden-5.md
new file mode 100644
index 00000000..5e276f7a
--- /dev/null
+++ b/content/posts/2008/08/21/pastoral-garden-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-21T12:52:12-07:00"
+title = "Pastoral Garden - 5"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074179.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/22/pastoral-garden-6.md b/content/posts/2008/08/22/pastoral-garden-6.md
new file mode 100644
index 00000000..15b1b2fe
--- /dev/null
+++ b/content/posts/2008/08/22/pastoral-garden-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-22T12:52:12-07:00"
+title = "Pastoral Garden - 6"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074180.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/23/pastoral-garden-7.md b/content/posts/2008/08/23/pastoral-garden-7.md
new file mode 100644
index 00000000..0bfa3e93
--- /dev/null
+++ b/content/posts/2008/08/23/pastoral-garden-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-23T12:52:12-07:00"
+title = "Pastoral Garden - 7"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074183.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/24/pastoral-garden-8.md b/content/posts/2008/08/24/pastoral-garden-8.md
new file mode 100644
index 00000000..ad2820c2
--- /dev/null
+++ b/content/posts/2008/08/24/pastoral-garden-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-24T12:52:12-07:00"
+title = "Pastoral Garden - 8"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074184.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/25/pastoral-garden-9.md b/content/posts/2008/08/25/pastoral-garden-9.md
new file mode 100644
index 00000000..a21a41c6
--- /dev/null
+++ b/content/posts/2008/08/25/pastoral-garden-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-25T12:52:12-07:00"
+title = "Pastoral Garden - 9"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074185.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/26/pastoral-garden-10.md b/content/posts/2008/08/26/pastoral-garden-10.md
new file mode 100644
index 00000000..63f37bc0
--- /dev/null
+++ b/content/posts/2008/08/26/pastoral-garden-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-26T12:52:12-07:00"
+title = "Pastoral Garden - 10"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074187.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/27/pastoral-garden-11.md b/content/posts/2008/08/27/pastoral-garden-11.md
new file mode 100644
index 00000000..0d03da0a
--- /dev/null
+++ b/content/posts/2008/08/27/pastoral-garden-11.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-27T12:52:12-07:00"
+title = "Pastoral Garden - 11"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074192.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/28/pastoral-garden-12.md b/content/posts/2008/08/28/pastoral-garden-12.md
new file mode 100644
index 00000000..10e6c35b
--- /dev/null
+++ b/content/posts/2008/08/28/pastoral-garden-12.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-28T12:52:12-07:00"
+title = "Pastoral Garden - 12"
+image = "/wp-content/uploads/Pastoral%20Garden/P8074202.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/29/end-of-summer-1.md b/content/posts/2008/08/29/end-of-summer-1.md
new file mode 100644
index 00000000..bb9db849
--- /dev/null
+++ b/content/posts/2008/08/29/end-of-summer-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-29T06:52:12-07:00"
+title = "End of Summer - 1"
+image = "/wp-content/uploads/End%20of%20Summer/P8144419.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/30/end-of-summer-2.md b/content/posts/2008/08/30/end-of-summer-2.md
new file mode 100644
index 00000000..9f7c90af
--- /dev/null
+++ b/content/posts/2008/08/30/end-of-summer-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-30T06:52:12-07:00"
+title = "End of Summer - 2"
+image = "/wp-content/uploads/End%20of%20Summer/P8144429.jpg"
++++
+
+
+
diff --git a/content/posts/2008/08/31/end-of-summer-3.md b/content/posts/2008/08/31/end-of-summer-3.md
new file mode 100644
index 00000000..9416d5c6
--- /dev/null
+++ b/content/posts/2008/08/31/end-of-summer-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-08-31T06:52:12-07:00"
+title = "End of Summer - 3"
+image = "/wp-content/uploads/End%20of%20Summer/P8144431.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/01/end-of-summer-4.md b/content/posts/2008/09/01/end-of-summer-4.md
new file mode 100644
index 00000000..5abc7d05
--- /dev/null
+++ b/content/posts/2008/09/01/end-of-summer-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-01T06:52:12-07:00"
+title = "End of Summer - 4"
+image = "/wp-content/uploads/End%20of%20Summer/P8234754.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/02/end-of-summer-5.md b/content/posts/2008/09/02/end-of-summer-5.md
new file mode 100644
index 00000000..68daf078
--- /dev/null
+++ b/content/posts/2008/09/02/end-of-summer-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-02T06:52:12-07:00"
+title = "End of Summer - 5"
+image = "/wp-content/uploads/End%20of%20Summer/P8244763.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/03/end-of-summer-6.md b/content/posts/2008/09/03/end-of-summer-6.md
new file mode 100644
index 00000000..de473eac
--- /dev/null
+++ b/content/posts/2008/09/03/end-of-summer-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-03T06:52:12-07:00"
+title = "End of Summer - 6"
+image = "/wp-content/uploads/End%20of%20Summer/P8244771.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/04/end-of-summer-7.md b/content/posts/2008/09/04/end-of-summer-7.md
new file mode 100644
index 00000000..cd63a97b
--- /dev/null
+++ b/content/posts/2008/09/04/end-of-summer-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-04T06:52:12-07:00"
+title = "End of Summer - 7"
+image = "/wp-content/uploads/End%20of%20Summer/P8244780.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/05/end-of-summer-8.md b/content/posts/2008/09/05/end-of-summer-8.md
new file mode 100644
index 00000000..5acde6ee
--- /dev/null
+++ b/content/posts/2008/09/05/end-of-summer-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-05T06:52:12-07:00"
+title = "End of Summer - 8"
+image = "/wp-content/uploads/End%20of%20Summer/P8244782.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/06/next-1.md b/content/posts/2008/09/06/next-1.md
new file mode 100644
index 00000000..47a5d497
--- /dev/null
+++ b/content/posts/2008/09/06/next-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-06T00:52:12-07:00"
+title = "Next - 1"
+image = "/wp-content/uploads/Next/P8254787.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/07/next-2.md b/content/posts/2008/09/07/next-2.md
new file mode 100644
index 00000000..51c7342b
--- /dev/null
+++ b/content/posts/2008/09/07/next-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-07T00:52:12-07:00"
+title = "Next - 2"
+image = "/wp-content/uploads/Next/P8254794.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/08/next-3.md b/content/posts/2008/09/08/next-3.md
new file mode 100644
index 00000000..73a5b92e
--- /dev/null
+++ b/content/posts/2008/09/08/next-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-08T00:52:12-07:00"
+title = "Next - 3"
+image = "/wp-content/uploads/Next/P8284827.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/09/next-4.md b/content/posts/2008/09/09/next-4.md
new file mode 100644
index 00000000..cfb3a883
--- /dev/null
+++ b/content/posts/2008/09/09/next-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-09T00:52:12-07:00"
+title = "Next - 4"
+image = "/wp-content/uploads/Next/P8284832.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/10/next-5.md b/content/posts/2008/09/10/next-5.md
new file mode 100644
index 00000000..bbb3ab84
--- /dev/null
+++ b/content/posts/2008/09/10/next-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-10T00:52:12-07:00"
+title = "Next - 5"
+image = "/wp-content/uploads/Next/P8284857.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/10/summer-to-fall-1.md b/content/posts/2008/09/10/summer-to-fall-1.md
new file mode 100644
index 00000000..51040f33
--- /dev/null
+++ b/content/posts/2008/09/10/summer-to-fall-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-10T18:52:12-07:00"
+title = "Summer to Fall - 1"
+image = "/wp-content/uploads/Summer%20to%20Fall/P8314873.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/11/summer-to-fall-2.md b/content/posts/2008/09/11/summer-to-fall-2.md
new file mode 100644
index 00000000..1f1ac8b6
--- /dev/null
+++ b/content/posts/2008/09/11/summer-to-fall-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-11T18:52:12-07:00"
+title = "Summer to Fall - 2"
+image = "/wp-content/uploads/Summer%20to%20Fall/P9074943.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/12/summer-to-fall-3.md b/content/posts/2008/09/12/summer-to-fall-3.md
new file mode 100644
index 00000000..bbb22163
--- /dev/null
+++ b/content/posts/2008/09/12/summer-to-fall-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-12T18:52:12-07:00"
+title = "Summer to Fall - 3"
+image = "/wp-content/uploads/Summer%20to%20Fall/P9075012.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/13/summer-to-fall-4.md b/content/posts/2008/09/13/summer-to-fall-4.md
new file mode 100644
index 00000000..92c07256
--- /dev/null
+++ b/content/posts/2008/09/13/summer-to-fall-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-13T18:52:12-07:00"
+title = "Summer to Fall - 4"
+image = "/wp-content/uploads/Summer%20to%20Fall/P9075016.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/14/summer-to-fall-5.md b/content/posts/2008/09/14/summer-to-fall-5.md
new file mode 100644
index 00000000..737bc66f
--- /dev/null
+++ b/content/posts/2008/09/14/summer-to-fall-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-14T18:52:12-07:00"
+title = "Summer to Fall - 5"
+image = "/wp-content/uploads/Summer%20to%20Fall/P9075093.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/15/summer-to-fall-6.md b/content/posts/2008/09/15/summer-to-fall-6.md
new file mode 100644
index 00000000..caa0df90
--- /dev/null
+++ b/content/posts/2008/09/15/summer-to-fall-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-15T18:52:12-07:00"
+title = "Summer to Fall - 6"
+image = "/wp-content/uploads/Summer%20to%20Fall/P9075094.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/16/summer-to-fall-7.md b/content/posts/2008/09/16/summer-to-fall-7.md
new file mode 100644
index 00000000..c6c91358
--- /dev/null
+++ b/content/posts/2008/09/16/summer-to-fall-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-16T18:52:12-07:00"
+title = "Summer to Fall - 7"
+image = "/wp-content/uploads/Summer%20to%20Fall/P9075097.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/17/ike-1.md b/content/posts/2008/09/17/ike-1.md
new file mode 100644
index 00000000..bf2f8c09
--- /dev/null
+++ b/content/posts/2008/09/17/ike-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-17T12:52:12-07:00"
+title = "Ike - 1"
+image = "/wp-content/uploads/Ike/P9125157.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/18/ike-2.md b/content/posts/2008/09/18/ike-2.md
new file mode 100644
index 00000000..bdab21e7
--- /dev/null
+++ b/content/posts/2008/09/18/ike-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-18T12:52:12-07:00"
+title = "Ike - 2"
+image = "/wp-content/uploads/Ike/P9125165.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/19/ike-3.md b/content/posts/2008/09/19/ike-3.md
new file mode 100644
index 00000000..4f08ee9f
--- /dev/null
+++ b/content/posts/2008/09/19/ike-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-19T12:52:12-07:00"
+title = "Ike - 3"
+image = "/wp-content/uploads/Ike/P9155173.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/20/ike-4.md b/content/posts/2008/09/20/ike-4.md
new file mode 100644
index 00000000..bee0a81e
--- /dev/null
+++ b/content/posts/2008/09/20/ike-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-20T12:52:12-07:00"
+title = "Ike - 4"
+image = "/wp-content/uploads/Ike/P9155181.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/21/ike-5.md b/content/posts/2008/09/21/ike-5.md
new file mode 100644
index 00000000..afbb7fea
--- /dev/null
+++ b/content/posts/2008/09/21/ike-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-21T12:52:12-07:00"
+title = "Ike - 5"
+image = "/wp-content/uploads/Ike/P9155194.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/22/ike-6.md b/content/posts/2008/09/22/ike-6.md
new file mode 100644
index 00000000..9a200e7a
--- /dev/null
+++ b/content/posts/2008/09/22/ike-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-22T12:52:12-07:00"
+title = "Ike - 6"
+image = "/wp-content/uploads/Ike/P9155203.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/23/ike-7.md b/content/posts/2008/09/23/ike-7.md
new file mode 100644
index 00000000..fa54981a
--- /dev/null
+++ b/content/posts/2008/09/23/ike-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-23T12:52:12-07:00"
+title = "Ike - 7"
+image = "/wp-content/uploads/Ike/P9155224.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/24/ike-8.md b/content/posts/2008/09/24/ike-8.md
new file mode 100644
index 00000000..d026d99d
--- /dev/null
+++ b/content/posts/2008/09/24/ike-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-24T12:52:12-07:00"
+title = "Ike - 8"
+image = "/wp-content/uploads/Ike/P9165258.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/25/ike-9.md b/content/posts/2008/09/25/ike-9.md
new file mode 100644
index 00000000..db87acab
--- /dev/null
+++ b/content/posts/2008/09/25/ike-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-25T12:52:12-07:00"
+title = "Ike - 9"
+image = "/wp-content/uploads/Ike/P9165260.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/26/ike-10.md b/content/posts/2008/09/26/ike-10.md
new file mode 100644
index 00000000..6b49e308
--- /dev/null
+++ b/content/posts/2008/09/26/ike-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-26T12:52:12-07:00"
+title = "Ike - 10"
+image = "/wp-content/uploads/Ike/P9165273.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/27/ike-11.md b/content/posts/2008/09/27/ike-11.md
new file mode 100644
index 00000000..546ba3a2
--- /dev/null
+++ b/content/posts/2008/09/27/ike-11.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-27T12:52:12-07:00"
+title = "Ike - 11"
+image = "/wp-content/uploads/Ike/P9165274.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/28/ike-12.md b/content/posts/2008/09/28/ike-12.md
new file mode 100644
index 00000000..fe50b388
--- /dev/null
+++ b/content/posts/2008/09/28/ike-12.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-28T12:52:12-07:00"
+title = "Ike - 12"
+image = "/wp-content/uploads/Ike/P9165276.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/29/ike-13.md b/content/posts/2008/09/29/ike-13.md
new file mode 100644
index 00000000..ca78c34e
--- /dev/null
+++ b/content/posts/2008/09/29/ike-13.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-29T12:52:12-07:00"
+title = "Ike - 13"
+image = "/wp-content/uploads/Ike/P9165280.jpg"
++++
+
+
+
diff --git a/content/posts/2008/09/30/ike-14.md b/content/posts/2008/09/30/ike-14.md
new file mode 100644
index 00000000..867e647f
--- /dev/null
+++ b/content/posts/2008/09/30/ike-14.md
@@ -0,0 +1,8 @@
++++
+date = "2008-09-30T12:52:12-07:00"
+title = "Ike - 14"
+image = "/wp-content/uploads/Ike/P9165317.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/01/ike-15.md b/content/posts/2008/10/01/ike-15.md
new file mode 100644
index 00000000..aa8aa6ad
--- /dev/null
+++ b/content/posts/2008/10/01/ike-15.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-01T12:52:12-07:00"
+title = "Ike - 15"
+image = "/wp-content/uploads/Ike/P9165318.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/02/ike-16.md b/content/posts/2008/10/02/ike-16.md
new file mode 100644
index 00000000..83ad95eb
--- /dev/null
+++ b/content/posts/2008/10/02/ike-16.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-02T12:52:12-07:00"
+title = "Ike - 16"
+image = "/wp-content/uploads/Ike/P9165321.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/03/ike-17.md b/content/posts/2008/10/03/ike-17.md
new file mode 100644
index 00000000..cc9669a8
--- /dev/null
+++ b/content/posts/2008/10/03/ike-17.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-03T12:52:12-07:00"
+title = "Ike - 17"
+image = "/wp-content/uploads/Ike/P9165323.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/04/return-to-downtown-1.md b/content/posts/2008/10/04/return-to-downtown-1.md
new file mode 100644
index 00000000..ba91c006
--- /dev/null
+++ b/content/posts/2008/10/04/return-to-downtown-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-04T06:52:12-07:00"
+title = "Return to Downtown - 1"
+image = "/wp-content/uploads/Return%20to%20Downtown/P9265687.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/05/return-to-downtown-2.md b/content/posts/2008/10/05/return-to-downtown-2.md
new file mode 100644
index 00000000..ddea83ee
--- /dev/null
+++ b/content/posts/2008/10/05/return-to-downtown-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-05T06:52:12-07:00"
+title = "Return to Downtown - 2"
+image = "/wp-content/uploads/Return%20to%20Downtown/P9265693.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/06/return-to-downtown-3.md b/content/posts/2008/10/06/return-to-downtown-3.md
new file mode 100644
index 00000000..aa144325
--- /dev/null
+++ b/content/posts/2008/10/06/return-to-downtown-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-06T06:52:12-07:00"
+title = "Return to Downtown - 3"
+image = "/wp-content/uploads/Return%20to%20Downtown/P9265696.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/07/return-to-downtown-4.md b/content/posts/2008/10/07/return-to-downtown-4.md
new file mode 100644
index 00000000..8ac7c192
--- /dev/null
+++ b/content/posts/2008/10/07/return-to-downtown-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-07T06:52:12-07:00"
+title = "Return to Downtown - 4"
+image = "/wp-content/uploads/Return%20to%20Downtown/P9265701.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/08/return-to-downtown-5.md b/content/posts/2008/10/08/return-to-downtown-5.md
new file mode 100644
index 00000000..8d7833fb
--- /dev/null
+++ b/content/posts/2008/10/08/return-to-downtown-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-08T06:52:12-07:00"
+title = "Return to Downtown - 5"
+image = "/wp-content/uploads/Return%20to%20Downtown/P9265704.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/09/hamman-ranch-fall-2008-1.md b/content/posts/2008/10/09/hamman-ranch-fall-2008-1.md
new file mode 100644
index 00000000..3188a929
--- /dev/null
+++ b/content/posts/2008/10/09/hamman-ranch-fall-2008-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-09T00:52:12-07:00"
+title = "Hamman Ranch Fall 2008 - 1"
+image = "/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056144.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/10/hamman-ranch-fall-2008-2.md b/content/posts/2008/10/10/hamman-ranch-fall-2008-2.md
new file mode 100644
index 00000000..23346d27
--- /dev/null
+++ b/content/posts/2008/10/10/hamman-ranch-fall-2008-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-10T00:52:12-07:00"
+title = "Hamman Ranch Fall 2008 - 2"
+image = "/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056171.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/11/hamman-ranch-fall-2008-3.md b/content/posts/2008/10/11/hamman-ranch-fall-2008-3.md
new file mode 100644
index 00000000..96c9da8b
--- /dev/null
+++ b/content/posts/2008/10/11/hamman-ranch-fall-2008-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-11T00:52:12-07:00"
+title = "Hamman Ranch Fall 2008 - 3"
+image = "/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056175.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/12/hamman-ranch-fall-2008-4.md b/content/posts/2008/10/12/hamman-ranch-fall-2008-4.md
new file mode 100644
index 00000000..64c0e403
--- /dev/null
+++ b/content/posts/2008/10/12/hamman-ranch-fall-2008-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-12T00:52:12-07:00"
+title = "Hamman Ranch Fall 2008 - 4"
+image = "/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056176.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/13/hamman-ranch-fall-2008-5.md b/content/posts/2008/10/13/hamman-ranch-fall-2008-5.md
new file mode 100644
index 00000000..1b6ab068
--- /dev/null
+++ b/content/posts/2008/10/13/hamman-ranch-fall-2008-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-13T00:52:12-07:00"
+title = "Hamman Ranch Fall 2008 - 5"
+image = "/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056181.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/14/hamman-ranch-fall-2008-6.md b/content/posts/2008/10/14/hamman-ranch-fall-2008-6.md
new file mode 100644
index 00000000..4457e028
--- /dev/null
+++ b/content/posts/2008/10/14/hamman-ranch-fall-2008-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-14T00:52:12-07:00"
+title = "Hamman Ranch Fall 2008 - 6"
+image = "/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056185.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/15/hamman-ranch-fall-2008-7.md b/content/posts/2008/10/15/hamman-ranch-fall-2008-7.md
new file mode 100644
index 00000000..72c54f29
--- /dev/null
+++ b/content/posts/2008/10/15/hamman-ranch-fall-2008-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-15T00:52:12-07:00"
+title = "Hamman Ranch Fall 2008 - 7"
+image = "/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056187.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/16/brenham-texas-1.md b/content/posts/2008/10/16/brenham-texas-1.md
new file mode 100644
index 00000000..91132f5a
--- /dev/null
+++ b/content/posts/2008/10/16/brenham-texas-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-16T18:52:12-07:00"
+title = "Brenham Texas - 1"
+image = "/wp-content/uploads/Brenham%20Texas/P9195452.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/16/hamman-ranch-fall-2008-8.md b/content/posts/2008/10/16/hamman-ranch-fall-2008-8.md
new file mode 100644
index 00000000..6ddfd001
--- /dev/null
+++ b/content/posts/2008/10/16/hamman-ranch-fall-2008-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-16T00:52:12-07:00"
+title = "Hamman Ranch Fall 2008 - 8"
+image = "/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056197.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/17/brenham-texas-2.md b/content/posts/2008/10/17/brenham-texas-2.md
new file mode 100644
index 00000000..f0932f99
--- /dev/null
+++ b/content/posts/2008/10/17/brenham-texas-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-17T18:52:12-07:00"
+title = "Brenham Texas - 2"
+image = "/wp-content/uploads/Brenham%20Texas/P9195458.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/18/brenham-texas-3.md b/content/posts/2008/10/18/brenham-texas-3.md
new file mode 100644
index 00000000..573c118c
--- /dev/null
+++ b/content/posts/2008/10/18/brenham-texas-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-18T18:52:12-07:00"
+title = "Brenham Texas - 3"
+image = "/wp-content/uploads/Brenham%20Texas/P9195477.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/19/brenham-texas-4.md b/content/posts/2008/10/19/brenham-texas-4.md
new file mode 100644
index 00000000..1a7cad79
--- /dev/null
+++ b/content/posts/2008/10/19/brenham-texas-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-19T18:52:12-07:00"
+title = "Brenham Texas - 4"
+image = "/wp-content/uploads/Brenham%20Texas/P9195501.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/20/brenham-texas-5.md b/content/posts/2008/10/20/brenham-texas-5.md
new file mode 100644
index 00000000..6bed824e
--- /dev/null
+++ b/content/posts/2008/10/20/brenham-texas-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-20T18:52:12-07:00"
+title = "Brenham Texas - 5"
+image = "/wp-content/uploads/Brenham%20Texas/P9195537.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/21/brenham-texas-6.md b/content/posts/2008/10/21/brenham-texas-6.md
new file mode 100644
index 00000000..f37e4b0b
--- /dev/null
+++ b/content/posts/2008/10/21/brenham-texas-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-21T18:52:12-07:00"
+title = "Brenham Texas - 6"
+image = "/wp-content/uploads/Brenham%20Texas/P9195540.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/22/brenham-texas-7.md b/content/posts/2008/10/22/brenham-texas-7.md
new file mode 100644
index 00000000..55705055
--- /dev/null
+++ b/content/posts/2008/10/22/brenham-texas-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-22T18:52:12-07:00"
+title = "Brenham Texas - 7"
+image = "/wp-content/uploads/Brenham%20Texas/P9195566.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/23/brenham-texas-8.md b/content/posts/2008/10/23/brenham-texas-8.md
new file mode 100644
index 00000000..f0fbda08
--- /dev/null
+++ b/content/posts/2008/10/23/brenham-texas-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-23T18:52:12-07:00"
+title = "Brenham Texas - 8"
+image = "/wp-content/uploads/Brenham%20Texas/P9195574.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/24/brenham-texas-9.md b/content/posts/2008/10/24/brenham-texas-9.md
new file mode 100644
index 00000000..e89f5f74
--- /dev/null
+++ b/content/posts/2008/10/24/brenham-texas-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-24T18:52:12-07:00"
+title = "Brenham Texas - 9"
+image = "/wp-content/uploads/Brenham%20Texas/P9195578.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/25/brenham-texas-10.md b/content/posts/2008/10/25/brenham-texas-10.md
new file mode 100644
index 00000000..db3eda7e
--- /dev/null
+++ b/content/posts/2008/10/25/brenham-texas-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-25T18:52:12-07:00"
+title = "Brenham Texas - 10"
+image = "/wp-content/uploads/Brenham%20Texas/P9195613.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/26/fall-photos-1.md b/content/posts/2008/10/26/fall-photos-1.md
new file mode 100644
index 00000000..b625eeb4
--- /dev/null
+++ b/content/posts/2008/10/26/fall-photos-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-26T12:52:12-07:00"
+title = "Fall Photos - 1"
+image = "/wp-content/uploads/Fall%20Photos/P9195560.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/27/fall-photos-2.md b/content/posts/2008/10/27/fall-photos-2.md
new file mode 100644
index 00000000..4f09fc22
--- /dev/null
+++ b/content/posts/2008/10/27/fall-photos-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-27T12:52:12-07:00"
+title = "Fall Photos - 2"
+image = "/wp-content/uploads/Fall%20Photos/PA035846.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/28/fall-photos-3.md b/content/posts/2008/10/28/fall-photos-3.md
new file mode 100644
index 00000000..cc2b42f4
--- /dev/null
+++ b/content/posts/2008/10/28/fall-photos-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-28T12:52:12-07:00"
+title = "Fall Photos - 3"
+image = "/wp-content/uploads/Fall%20Photos/PA046123.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/29/fall-photos-4.md b/content/posts/2008/10/29/fall-photos-4.md
new file mode 100644
index 00000000..908035b5
--- /dev/null
+++ b/content/posts/2008/10/29/fall-photos-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-29T12:52:12-07:00"
+title = "Fall Photos - 4"
+image = "/wp-content/uploads/Fall%20Photos/PA205450.jpg"
++++
+
+
+
diff --git a/content/posts/2008/10/30/all-hallow-eve-1.md b/content/posts/2008/10/30/all-hallow-eve-1.md
new file mode 100644
index 00000000..3f2d7c47
--- /dev/null
+++ b/content/posts/2008/10/30/all-hallow-eve-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-30T06:52:12-07:00"
+title = "All Hallow Eve - 1"
+image = "/wp-content/uploads/All%20Hallow%20Eve/PA216547.JPG"
++++
+
+
+
diff --git a/content/posts/2008/10/31/all-hallow-eve-2.md b/content/posts/2008/10/31/all-hallow-eve-2.md
new file mode 100644
index 00000000..5272300a
--- /dev/null
+++ b/content/posts/2008/10/31/all-hallow-eve-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-10-31T06:52:12-07:00"
+title = "All Hallow Eve - 2"
+image = "/wp-content/uploads/All%20Hallow%20Eve/PA266784.JPG"
++++
+
+
+
diff --git a/content/posts/2008/11/01/a-study-in-black-and-white-1.md b/content/posts/2008/11/01/a-study-in-black-and-white-1.md
new file mode 100644
index 00000000..1978e42a
--- /dev/null
+++ b/content/posts/2008/11/01/a-study-in-black-and-white-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-01T00:52:12-07:00"
+title = "A Study In Black And White - 1"
+image = "/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186465.JPG"
++++
+
+
+
diff --git a/content/posts/2008/11/02/a-study-in-black-and-white-2.md b/content/posts/2008/11/02/a-study-in-black-and-white-2.md
new file mode 100644
index 00000000..f073666a
--- /dev/null
+++ b/content/posts/2008/11/02/a-study-in-black-and-white-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-02T00:52:12-07:00"
+title = "A Study In Black And White - 2"
+image = "/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186472.JPG"
++++
+
+
+
diff --git a/content/posts/2008/11/03/a-study-in-black-and-white-3.md b/content/posts/2008/11/03/a-study-in-black-and-white-3.md
new file mode 100644
index 00000000..fe79540b
--- /dev/null
+++ b/content/posts/2008/11/03/a-study-in-black-and-white-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-03T00:52:12-07:00"
+title = "A Study In Black And White - 3"
+image = "/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186475.JPG"
++++
+
+
+
diff --git a/content/posts/2008/11/04/a-study-in-black-and-white-4.md b/content/posts/2008/11/04/a-study-in-black-and-white-4.md
new file mode 100644
index 00000000..315260a1
--- /dev/null
+++ b/content/posts/2008/11/04/a-study-in-black-and-white-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-04T00:52:12-07:00"
+title = "A Study In Black And White - 4"
+image = "/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186484.JPG"
++++
+
+
+
diff --git a/content/posts/2008/11/05/a-study-in-black-and-white-5.md b/content/posts/2008/11/05/a-study-in-black-and-white-5.md
new file mode 100644
index 00000000..2fb897ad
--- /dev/null
+++ b/content/posts/2008/11/05/a-study-in-black-and-white-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-05T00:52:12-07:00"
+title = "A Study In Black And White - 5"
+image = "/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186492.JPG"
++++
+
+
+
diff --git a/content/posts/2008/11/06/a-study-in-black-and-white-6.md b/content/posts/2008/11/06/a-study-in-black-and-white-6.md
new file mode 100644
index 00000000..417de43a
--- /dev/null
+++ b/content/posts/2008/11/06/a-study-in-black-and-white-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-06T00:52:12-07:00"
+title = "A Study In Black And White - 6"
+image = "/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186510.JPG"
++++
+
+
+
diff --git a/content/posts/2008/11/07/a-study-in-black-and-white-7.md b/content/posts/2008/11/07/a-study-in-black-and-white-7.md
new file mode 100644
index 00000000..0361da5c
--- /dev/null
+++ b/content/posts/2008/11/07/a-study-in-black-and-white-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-07T00:52:12-07:00"
+title = "A Study In Black And White - 7"
+image = "/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186511.JPG"
++++
+
+
+
diff --git a/content/posts/2008/11/07/backdrops-1.md b/content/posts/2008/11/07/backdrops-1.md
new file mode 100644
index 00000000..27e0af74
--- /dev/null
+++ b/content/posts/2008/11/07/backdrops-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-07T18:52:12-07:00"
+title = "backdrops - 1"
+image = "/wp-content/uploads/backdrops/P9163817.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/08/backdrops-2.md b/content/posts/2008/11/08/backdrops-2.md
new file mode 100644
index 00000000..89ce4293
--- /dev/null
+++ b/content/posts/2008/11/08/backdrops-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-08T18:52:12-07:00"
+title = "backdrops - 2"
+image = "/wp-content/uploads/backdrops/P9195402.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/09/backdrops-3.md b/content/posts/2008/11/09/backdrops-3.md
new file mode 100644
index 00000000..d1c1610a
--- /dev/null
+++ b/content/posts/2008/11/09/backdrops-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-09T18:52:12-07:00"
+title = "backdrops - 3"
+image = "/wp-content/uploads/backdrops/P9195447.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/10/backdrops-4.md b/content/posts/2008/11/10/backdrops-4.md
new file mode 100644
index 00000000..7197dc70
--- /dev/null
+++ b/content/posts/2008/11/10/backdrops-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-10T18:52:12-07:00"
+title = "backdrops - 4"
+image = "/wp-content/uploads/backdrops/P9195477.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/11/backdrops-5.md b/content/posts/2008/11/11/backdrops-5.md
new file mode 100644
index 00000000..2e972367
--- /dev/null
+++ b/content/posts/2008/11/11/backdrops-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-11T18:52:12-07:00"
+title = "backdrops - 5"
+image = "/wp-content/uploads/backdrops/P9195518.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/12/backdrops-6.md b/content/posts/2008/11/12/backdrops-6.md
new file mode 100644
index 00000000..14572e7b
--- /dev/null
+++ b/content/posts/2008/11/12/backdrops-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-12T18:52:12-07:00"
+title = "backdrops - 6"
+image = "/wp-content/uploads/backdrops/P9195537.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/13/backdrops-7.md b/content/posts/2008/11/13/backdrops-7.md
new file mode 100644
index 00000000..0c907e5a
--- /dev/null
+++ b/content/posts/2008/11/13/backdrops-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-13T18:52:12-07:00"
+title = "backdrops - 7"
+image = "/wp-content/uploads/backdrops/P9195560.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/14/backdrops-8.md b/content/posts/2008/11/14/backdrops-8.md
new file mode 100644
index 00000000..04d187eb
--- /dev/null
+++ b/content/posts/2008/11/14/backdrops-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-14T18:52:12-07:00"
+title = "backdrops - 8"
+image = "/wp-content/uploads/backdrops/P9195566.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/15/backdrops-9.md b/content/posts/2008/11/15/backdrops-9.md
new file mode 100644
index 00000000..3c782a15
--- /dev/null
+++ b/content/posts/2008/11/15/backdrops-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-15T18:52:12-07:00"
+title = "backdrops - 9"
+image = "/wp-content/uploads/backdrops/PA116318.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/16/backdrops-10.md b/content/posts/2008/11/16/backdrops-10.md
new file mode 100644
index 00000000..caf7bc4e
--- /dev/null
+++ b/content/posts/2008/11/16/backdrops-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-16T18:52:12-07:00"
+title = "backdrops - 10"
+image = "/wp-content/uploads/backdrops/PA116333.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/17/backdrops-11.md b/content/posts/2008/11/17/backdrops-11.md
new file mode 100644
index 00000000..2b88a36b
--- /dev/null
+++ b/content/posts/2008/11/17/backdrops-11.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-17T18:52:12-07:00"
+title = "backdrops - 11"
+image = "/wp-content/uploads/backdrops/PA116342.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/18/backdrops-12.md b/content/posts/2008/11/18/backdrops-12.md
new file mode 100644
index 00000000..44945fc1
--- /dev/null
+++ b/content/posts/2008/11/18/backdrops-12.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-18T18:52:12-07:00"
+title = "backdrops - 12"
+image = "/wp-content/uploads/backdrops/PA116361.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/19/backdrops-13.md b/content/posts/2008/11/19/backdrops-13.md
new file mode 100644
index 00000000..6aa08375
--- /dev/null
+++ b/content/posts/2008/11/19/backdrops-13.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-19T18:52:12-07:00"
+title = "backdrops - 13"
+image = "/wp-content/uploads/backdrops/PA116367.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/20/backdrops-14.md b/content/posts/2008/11/20/backdrops-14.md
new file mode 100644
index 00000000..09f9b048
--- /dev/null
+++ b/content/posts/2008/11/20/backdrops-14.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-20T18:52:12-07:00"
+title = "backdrops - 14"
+image = "/wp-content/uploads/backdrops/PA216526.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/21/backdrops-15.md b/content/posts/2008/11/21/backdrops-15.md
new file mode 100644
index 00000000..bbfba56d
--- /dev/null
+++ b/content/posts/2008/11/21/backdrops-15.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-21T18:52:12-07:00"
+title = "backdrops - 15"
+image = "/wp-content/uploads/backdrops/PA216546.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/22/backdrops-16.md b/content/posts/2008/11/22/backdrops-16.md
new file mode 100644
index 00000000..510d76f5
--- /dev/null
+++ b/content/posts/2008/11/22/backdrops-16.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-22T18:52:12-07:00"
+title = "backdrops - 16"
+image = "/wp-content/uploads/backdrops/PA216551.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/23/backdrops-17.md b/content/posts/2008/11/23/backdrops-17.md
new file mode 100644
index 00000000..e4603afe
--- /dev/null
+++ b/content/posts/2008/11/23/backdrops-17.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-23T18:52:12-07:00"
+title = "backdrops - 17"
+image = "/wp-content/uploads/backdrops/PA216555.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/24/backdrops-18.md b/content/posts/2008/11/24/backdrops-18.md
new file mode 100644
index 00000000..591c897d
--- /dev/null
+++ b/content/posts/2008/11/24/backdrops-18.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-24T18:52:12-07:00"
+title = "backdrops - 18"
+image = "/wp-content/uploads/backdrops/PA216561.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/25/backdrops-19.md b/content/posts/2008/11/25/backdrops-19.md
new file mode 100644
index 00000000..7d7723de
--- /dev/null
+++ b/content/posts/2008/11/25/backdrops-19.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-25T18:52:12-07:00"
+title = "backdrops - 19"
+image = "/wp-content/uploads/backdrops/PA216587.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/26/backdrops-20.md b/content/posts/2008/11/26/backdrops-20.md
new file mode 100644
index 00000000..cec25e58
--- /dev/null
+++ b/content/posts/2008/11/26/backdrops-20.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-26T18:52:12-07:00"
+title = "backdrops - 20"
+image = "/wp-content/uploads/backdrops/PA216593.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/27/backdrops-21.md b/content/posts/2008/11/27/backdrops-21.md
new file mode 100644
index 00000000..52629e7d
--- /dev/null
+++ b/content/posts/2008/11/27/backdrops-21.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-27T18:52:12-07:00"
+title = "backdrops - 21"
+image = "/wp-content/uploads/backdrops/PA216597.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/28/backdrops-22.md b/content/posts/2008/11/28/backdrops-22.md
new file mode 100644
index 00000000..70d1d8c5
--- /dev/null
+++ b/content/posts/2008/11/28/backdrops-22.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-28T18:52:12-07:00"
+title = "backdrops - 22"
+image = "/wp-content/uploads/backdrops/PA216601.jpg"
++++
+
+
+
diff --git a/content/posts/2008/11/29/rose-1.md b/content/posts/2008/11/29/rose-1.md
new file mode 100644
index 00000000..75a2231e
--- /dev/null
+++ b/content/posts/2008/11/29/rose-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-29T12:52:12-07:00"
+title = "Rose - 1"
+image = "/wp-content/uploads/Rose/20081112125853.JPG"
++++
+
+
+
diff --git a/content/posts/2008/11/30/rose-2.md b/content/posts/2008/11/30/rose-2.md
new file mode 100644
index 00000000..ad0d5c10
--- /dev/null
+++ b/content/posts/2008/11/30/rose-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-11-30T12:52:12-07:00"
+title = "Rose - 2"
+image = "/wp-content/uploads/Rose/20081112125926.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/01/rose-3.md b/content/posts/2008/12/01/rose-3.md
new file mode 100644
index 00000000..bb0622f0
--- /dev/null
+++ b/content/posts/2008/12/01/rose-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-01T12:52:12-07:00"
+title = "Rose - 3"
+image = "/wp-content/uploads/Rose/20081112125938.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/02/rose-4.md b/content/posts/2008/12/02/rose-4.md
new file mode 100644
index 00000000..1314ad49
--- /dev/null
+++ b/content/posts/2008/12/02/rose-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-02T12:52:12-07:00"
+title = "Rose - 4"
+image = "/wp-content/uploads/Rose/20081112130140.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/03/ninja-vs-devil-duck-1.md b/content/posts/2008/12/03/ninja-vs-devil-duck-1.md
new file mode 100644
index 00000000..d3b5aa34
--- /dev/null
+++ b/content/posts/2008/12/03/ninja-vs-devil-duck-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-03T06:52:12-07:00"
+title = "Ninja vs. Devil Duck - 1"
+image = "/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/20081121215621.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/04/ninja-vs-devil-duck-2.md b/content/posts/2008/12/04/ninja-vs-devil-duck-2.md
new file mode 100644
index 00000000..750cc521
--- /dev/null
+++ b/content/posts/2008/12/04/ninja-vs-devil-duck-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-04T06:52:12-07:00"
+title = "Ninja vs. Devil Duck - 2"
+image = "/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026892.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/05/ninja-vs-devil-duck-3.md b/content/posts/2008/12/05/ninja-vs-devil-duck-3.md
new file mode 100644
index 00000000..bd078cb5
--- /dev/null
+++ b/content/posts/2008/12/05/ninja-vs-devil-duck-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-05T06:52:12-07:00"
+title = "Ninja vs. Devil Duck - 3"
+image = "/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026893.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/06/ninja-vs-devil-duck-4.md b/content/posts/2008/12/06/ninja-vs-devil-duck-4.md
new file mode 100644
index 00000000..b71a2d25
--- /dev/null
+++ b/content/posts/2008/12/06/ninja-vs-devil-duck-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-06T06:52:12-07:00"
+title = "Ninja vs. Devil Duck - 4"
+image = "/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026894.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/07/ninja-vs-devil-duck-5.md b/content/posts/2008/12/07/ninja-vs-devil-duck-5.md
new file mode 100644
index 00000000..37abbd6d
--- /dev/null
+++ b/content/posts/2008/12/07/ninja-vs-devil-duck-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-07T06:52:12-07:00"
+title = "Ninja vs. Devil Duck - 5"
+image = "/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026895.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/08/ninja-vs-devil-duck-6.md b/content/posts/2008/12/08/ninja-vs-devil-duck-6.md
new file mode 100644
index 00000000..f70cd23a
--- /dev/null
+++ b/content/posts/2008/12/08/ninja-vs-devil-duck-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-08T06:52:12-07:00"
+title = "Ninja vs. Devil Duck - 6"
+image = "/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026899.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/09/fall-around-here-1.md b/content/posts/2008/12/09/fall-around-here-1.md
new file mode 100644
index 00000000..f98d2037
--- /dev/null
+++ b/content/posts/2008/12/09/fall-around-here-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-09T00:52:12-07:00"
+title = "Fall Around Here - 1"
+image = "/wp-content/uploads/Fall%20Around%20Here/20081115152534.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/10/fall-around-here-2.md b/content/posts/2008/12/10/fall-around-here-2.md
new file mode 100644
index 00000000..b29ef1b1
--- /dev/null
+++ b/content/posts/2008/12/10/fall-around-here-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-10T00:52:12-07:00"
+title = "Fall Around Here - 2"
+image = "/wp-content/uploads/Fall%20Around%20Here/20081127154018.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/11/fall-around-here-3.md b/content/posts/2008/12/11/fall-around-here-3.md
new file mode 100644
index 00000000..66eb3d02
--- /dev/null
+++ b/content/posts/2008/12/11/fall-around-here-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-11T00:52:12-07:00"
+title = "Fall Around Here - 3"
+image = "/wp-content/uploads/Fall%20Around%20Here/20081128131253.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/12/fall-around-here-4.md b/content/posts/2008/12/12/fall-around-here-4.md
new file mode 100644
index 00000000..912546aa
--- /dev/null
+++ b/content/posts/2008/12/12/fall-around-here-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-12T00:52:12-07:00"
+title = "Fall Around Here - 4"
+image = "/wp-content/uploads/Fall%20Around%20Here/20081128132238.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/13/fall-around-here-5.md b/content/posts/2008/12/13/fall-around-here-5.md
new file mode 100644
index 00000000..d65178b7
--- /dev/null
+++ b/content/posts/2008/12/13/fall-around-here-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-13T00:52:12-07:00"
+title = "Fall Around Here - 5"
+image = "/wp-content/uploads/Fall%20Around%20Here/20081128132335.030.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/14/fall-around-here-6.md b/content/posts/2008/12/14/fall-around-here-6.md
new file mode 100644
index 00000000..0faec696
--- /dev/null
+++ b/content/posts/2008/12/14/fall-around-here-6.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-14T00:52:12-07:00"
+title = "Fall Around Here - 6"
+image = "/wp-content/uploads/Fall%20Around%20Here/20081128134904.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/15/fall-around-here-7.md b/content/posts/2008/12/15/fall-around-here-7.md
new file mode 100644
index 00000000..bf611127
--- /dev/null
+++ b/content/posts/2008/12/15/fall-around-here-7.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-15T00:52:12-07:00"
+title = "Fall Around Here - 7"
+image = "/wp-content/uploads/Fall%20Around%20Here/20081128134908.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/16/fall-around-here-8.md b/content/posts/2008/12/16/fall-around-here-8.md
new file mode 100644
index 00000000..388ef229
--- /dev/null
+++ b/content/posts/2008/12/16/fall-around-here-8.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-16T00:52:12-07:00"
+title = "Fall Around Here - 8"
+image = "/wp-content/uploads/Fall%20Around%20Here/20081128140632.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/17/fall-around-here-9.md b/content/posts/2008/12/17/fall-around-here-9.md
new file mode 100644
index 00000000..1e42af42
--- /dev/null
+++ b/content/posts/2008/12/17/fall-around-here-9.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-17T00:52:12-07:00"
+title = "Fall Around Here - 9"
+image = "/wp-content/uploads/Fall%20Around%20Here/20081128155143.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/18/fall-around-here-10.md b/content/posts/2008/12/18/fall-around-here-10.md
new file mode 100644
index 00000000..0c492cbe
--- /dev/null
+++ b/content/posts/2008/12/18/fall-around-here-10.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-18T00:52:12-07:00"
+title = "Fall Around Here - 10"
+image = "/wp-content/uploads/Fall%20Around%20Here/a20081115082225.JPG"
++++
+
+
+
diff --git a/content/posts/2008/12/18/signs-of-the-time-1.md b/content/posts/2008/12/18/signs-of-the-time-1.md
new file mode 100644
index 00000000..cce12e3e
--- /dev/null
+++ b/content/posts/2008/12/18/signs-of-the-time-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-18T18:52:12-07:00"
+title = "Signs of the Time - 1"
+image = "/wp-content/uploads/Signs%20of%20the%20Time/Dec-19.jpg"
++++
+
+
+
diff --git a/content/posts/2008/12/19/signs-of-the-time-2.md b/content/posts/2008/12/19/signs-of-the-time-2.md
new file mode 100644
index 00000000..340b27ae
--- /dev/null
+++ b/content/posts/2008/12/19/signs-of-the-time-2.md
@@ -0,0 +1,9 @@
++++
+date = "2008-12-19T18:52:12-07:00"
+title = "Signs of the Time - 2"
+image = "/albums/albums/Signs%20of%20the%20Time/Dec-20.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/12/20/signs-of-the-time-3.md b/content/posts/2008/12/20/signs-of-the-time-3.md
new file mode 100644
index 00000000..a18fdff0
--- /dev/null
+++ b/content/posts/2008/12/20/signs-of-the-time-3.md
@@ -0,0 +1,9 @@
++++
+date = "2008-12-20T18:52:12-07:00"
+title = "Signs of the Time - 3"
+image = "/albums/albums/Signs%20of%20the%20Time/Dec-21.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/12/21/signs-of-the-time-4.md b/content/posts/2008/12/21/signs-of-the-time-4.md
new file mode 100644
index 00000000..c511ec03
--- /dev/null
+++ b/content/posts/2008/12/21/signs-of-the-time-4.md
@@ -0,0 +1,9 @@
++++
+date = "2008-12-21T18:52:12-07:00"
+title = "Signs of the Time - 4"
+image = "/albums/albums/Signs%20of%20the%20Time/Dec-22.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/12/22/signs-of-the-time-5.md b/content/posts/2008/12/22/signs-of-the-time-5.md
new file mode 100644
index 00000000..076a54e0
--- /dev/null
+++ b/content/posts/2008/12/22/signs-of-the-time-5.md
@@ -0,0 +1,9 @@
++++
+date = "2008-12-22T18:52:12-07:00"
+title = "Signs of the Time - 5"
+image = "/albums/albums/Signs%20of%20the%20Time/Dec-23.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/12/23/signs-of-the-time-6.md b/content/posts/2008/12/23/signs-of-the-time-6.md
new file mode 100644
index 00000000..5b81f158
--- /dev/null
+++ b/content/posts/2008/12/23/signs-of-the-time-6.md
@@ -0,0 +1,9 @@
++++
+date = "2008-12-23T18:52:12-07:00"
+title = "Signs of the Time - 6"
+image = "/albums/albums/Signs%20of%20the%20Time/Dec-24.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/12/24/signs-of-the-time-7.md b/content/posts/2008/12/24/signs-of-the-time-7.md
new file mode 100644
index 00000000..a6878387
--- /dev/null
+++ b/content/posts/2008/12/24/signs-of-the-time-7.md
@@ -0,0 +1,9 @@
++++
+date = "2008-12-24T18:52:12-07:00"
+title = "Signs of the Time - 7"
+image = "/albums/albums/Signs%20of%20the%20Time/Dec-25.jpg"
++++
+
+
+
+
diff --git a/content/posts/2008/12/25/random-flowers-1.md b/content/posts/2008/12/25/random-flowers-1.md
new file mode 100644
index 00000000..8a66475f
--- /dev/null
+++ b/content/posts/2008/12/25/random-flowers-1.md
@@ -0,0 +1,9 @@
++++
+date = "2008-12-25T18:52:12-07:00"
+title = "Random Flowers - 1"
+image = "/albums/albums/Random%20Flowers/20081128134707.JPG"
++++
+
+
+
+
diff --git a/content/posts/2008/12/26/random-flowers-2.md b/content/posts/2008/12/26/random-flowers-2.md
new file mode 100644
index 00000000..97c8b41a
--- /dev/null
+++ b/content/posts/2008/12/26/random-flowers-2.md
@@ -0,0 +1,9 @@
++++
+date = "2008-12-26T18:52:12-07:00"
+title = "Random Flowers - 2"
+image = "/albums/albums/Random%20Flowers/20081128134902.JPG"
++++
+
+
+
+
diff --git a/content/posts/2008/12/27/year-end-1.md b/content/posts/2008/12/27/year-end-1.md
new file mode 100644
index 00000000..f534d121
--- /dev/null
+++ b/content/posts/2008/12/27/year-end-1.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-27T12:52:12-07:00"
+title = "Year End - 1"
+image = "/wp-content/uploads/Year%20End/20081225105804.jpg"
++++
+
+
+
diff --git a/content/posts/2008/12/28/year-end-2.md b/content/posts/2008/12/28/year-end-2.md
new file mode 100644
index 00000000..df452877
--- /dev/null
+++ b/content/posts/2008/12/28/year-end-2.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-28T12:52:12-07:00"
+title = "Year End - 2"
+image = "/wp-content/uploads/Year%20End/P3190926.jpg"
++++
+
+
+
diff --git a/content/posts/2008/12/29/year-end-3.md b/content/posts/2008/12/29/year-end-3.md
new file mode 100644
index 00000000..3a026a7b
--- /dev/null
+++ b/content/posts/2008/12/29/year-end-3.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-29T12:52:12-07:00"
+title = "Year End - 3"
+image = "/wp-content/uploads/Year%20End/P3191074.jpg"
++++
+
+
+
diff --git a/content/posts/2008/12/30/year-end-4.md b/content/posts/2008/12/30/year-end-4.md
new file mode 100644
index 00000000..025cb81e
--- /dev/null
+++ b/content/posts/2008/12/30/year-end-4.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-30T12:52:12-07:00"
+title = "Year End - 4"
+image = "/wp-content/uploads/Year%20End/P7143903.jpg"
++++
+
+
+
diff --git a/content/posts/2008/12/31/year-end-5.md b/content/posts/2008/12/31/year-end-5.md
new file mode 100644
index 00000000..966ebdd1
--- /dev/null
+++ b/content/posts/2008/12/31/year-end-5.md
@@ -0,0 +1,8 @@
++++
+date = "2008-12-31T12:52:12-07:00"
+title = "Year End - 5"
+image = "/wp-content/uploads/Year%20End/P8134413.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/01/year-end-6.md b/content/posts/2009/01/01/year-end-6.md
new file mode 100644
index 00000000..d217cdc0
--- /dev/null
+++ b/content/posts/2009/01/01/year-end-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-01T12:52:12-07:00"
+title = "Year End - 6"
+image = "/wp-content/uploads/Year%20End/P8319191.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/02/year-end-7.md b/content/posts/2009/01/02/year-end-7.md
new file mode 100644
index 00000000..83f5aab4
--- /dev/null
+++ b/content/posts/2009/01/02/year-end-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-02T12:52:12-07:00"
+title = "Year End - 7"
+image = "/wp-content/uploads/Year%20End/P9163796.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/03/year-end-8.md b/content/posts/2009/01/03/year-end-8.md
new file mode 100644
index 00000000..98f43e19
--- /dev/null
+++ b/content/posts/2009/01/03/year-end-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-03T12:52:12-07:00"
+title = "Year End - 8"
+image = "/wp-content/uploads/Year%20End/PB016866.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/04/last-day-of-2008-1.md b/content/posts/2009/01/04/last-day-of-2008-1.md
new file mode 100644
index 00000000..ddd503b4
--- /dev/null
+++ b/content/posts/2009/01/04/last-day-of-2008-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-04T06:52:12-07:00"
+title = "Last Day of 2008 - 1"
+image = "/wp-content/uploads/Last%20Day%20of%202008/19800101000000.008.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/05/last-day-of-2008-2.md b/content/posts/2009/01/05/last-day-of-2008-2.md
new file mode 100644
index 00000000..552ee6a0
--- /dev/null
+++ b/content/posts/2009/01/05/last-day-of-2008-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-05T06:52:12-07:00"
+title = "Last Day of 2008 - 2"
+image = "/wp-content/uploads/Last%20Day%20of%202008/19800101000000.025.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/06/last-day-of-2008-3.md b/content/posts/2009/01/06/last-day-of-2008-3.md
new file mode 100644
index 00000000..1c049235
--- /dev/null
+++ b/content/posts/2009/01/06/last-day-of-2008-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-06T06:52:12-07:00"
+title = "Last Day of 2008 - 3"
+image = "/wp-content/uploads/Last%20Day%20of%202008/20081231134804.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/07/last-day-of-2008-4.md b/content/posts/2009/01/07/last-day-of-2008-4.md
new file mode 100644
index 00000000..f94fc91e
--- /dev/null
+++ b/content/posts/2009/01/07/last-day-of-2008-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-07T06:52:12-07:00"
+title = "Last Day of 2008 - 4"
+image = "/wp-content/uploads/Last%20Day%20of%202008/20081231135447.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/08/last-day-of-2008-5.md b/content/posts/2009/01/08/last-day-of-2008-5.md
new file mode 100644
index 00000000..3b34292f
--- /dev/null
+++ b/content/posts/2009/01/08/last-day-of-2008-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-08T06:52:12-07:00"
+title = "Last Day of 2008 - 5"
+image = "/wp-content/uploads/Last%20Day%20of%202008/20081231135755.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/09/project-365-1.md b/content/posts/2009/01/09/project-365-1.md
new file mode 100644
index 00000000..adce43e9
--- /dev/null
+++ b/content/posts/2009/01/09/project-365-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-09T00:52:12-07:00"
+title = "Project 365 - 1"
+image = "/wp-content/uploads/Project%20365/2009.01.01.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/10/project-365-2.md b/content/posts/2009/01/10/project-365-2.md
new file mode 100644
index 00000000..8db31df7
--- /dev/null
+++ b/content/posts/2009/01/10/project-365-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-10T00:52:12-07:00"
+title = "Project 365 - 2"
+image = "/wp-content/uploads/Project%20365/2009.01.02.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/11/project-365-3.md b/content/posts/2009/01/11/project-365-3.md
new file mode 100644
index 00000000..a6891444
--- /dev/null
+++ b/content/posts/2009/01/11/project-365-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-11T00:52:12-07:00"
+title = "Project 365 - 3"
+image = "/wp-content/uploads/Project%20365/2009.01.03.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/12/project-365-4.md b/content/posts/2009/01/12/project-365-4.md
new file mode 100644
index 00000000..4b233799
--- /dev/null
+++ b/content/posts/2009/01/12/project-365-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-12T00:52:12-07:00"
+title = "Project 365 - 4"
+image = "/wp-content/uploads/Project%20365/2009.01.05.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/13/project-365-5.md b/content/posts/2009/01/13/project-365-5.md
new file mode 100644
index 00000000..12d19dd6
--- /dev/null
+++ b/content/posts/2009/01/13/project-365-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-13T00:52:12-07:00"
+title = "Project 365 - 5"
+image = "/wp-content/uploads/Project%20365/2009.01.06.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/14/project-365-6.md b/content/posts/2009/01/14/project-365-6.md
new file mode 100644
index 00000000..5b1c3635
--- /dev/null
+++ b/content/posts/2009/01/14/project-365-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-14T00:52:12-07:00"
+title = "Project 365 - 6"
+image = "/wp-content/uploads/Project%20365/2009.01.07.5.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/15/project-365-7.md b/content/posts/2009/01/15/project-365-7.md
new file mode 100644
index 00000000..161b4c9c
--- /dev/null
+++ b/content/posts/2009/01/15/project-365-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-15T00:52:12-07:00"
+title = "Project 365 - 7"
+image = "/wp-content/uploads/Project%20365/2009.01.07.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/15/street-pictures-in-black-and-white-1.md b/content/posts/2009/01/15/street-pictures-in-black-and-white-1.md
new file mode 100644
index 00000000..a1067bea
--- /dev/null
+++ b/content/posts/2009/01/15/street-pictures-in-black-and-white-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-15T18:52:12-07:00"
+title = "Street Pictures in Black And White - 1"
+image = ""
++++
+
+
+
diff --git a/content/posts/2009/01/16/street-pictures-in-black-and-white-2.md b/content/posts/2009/01/16/street-pictures-in-black-and-white-2.md
new file mode 100644
index 00000000..ece788da
--- /dev/null
+++ b/content/posts/2009/01/16/street-pictures-in-black-and-white-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-16T18:52:12-07:00"
+title = "Street Pictures in Black And White - 2"
+image = ""
++++
+
+
+
diff --git a/content/posts/2009/01/17/street-pictures-in-black-and-white-3.md b/content/posts/2009/01/17/street-pictures-in-black-and-white-3.md
new file mode 100644
index 00000000..4afa8a15
--- /dev/null
+++ b/content/posts/2009/01/17/street-pictures-in-black-and-white-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-17T18:52:12-07:00"
+title = "Street Pictures in Black And White - 3"
+image = ""
++++
+
+
+
diff --git a/content/posts/2009/01/18/street-pictures-in-black-and-white-4.md b/content/posts/2009/01/18/street-pictures-in-black-and-white-4.md
new file mode 100644
index 00000000..c12f150e
--- /dev/null
+++ b/content/posts/2009/01/18/street-pictures-in-black-and-white-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-18T18:52:12-07:00"
+title = "Street Pictures in Black And White - 4"
+image = ""
++++
+
+
+
diff --git a/content/posts/2009/01/19/street-pictures-in-black-and-white-5.md b/content/posts/2009/01/19/street-pictures-in-black-and-white-5.md
new file mode 100644
index 00000000..81314e8b
--- /dev/null
+++ b/content/posts/2009/01/19/street-pictures-in-black-and-white-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-19T18:52:12-07:00"
+title = "Street Pictures in Black And White - 5"
+image = ""
++++
+
+
+
diff --git a/content/posts/2009/01/20/around-katy-1.md b/content/posts/2009/01/20/around-katy-1.md
new file mode 100644
index 00000000..e56b0559
--- /dev/null
+++ b/content/posts/2009/01/20/around-katy-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-20T12:52:12-07:00"
+title = "Around Katy - 1"
+image = "/wp-content/uploads/Around%20Katy/P1119104.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/21/around-katy-2.md b/content/posts/2009/01/21/around-katy-2.md
new file mode 100644
index 00000000..b3bfc2f0
--- /dev/null
+++ b/content/posts/2009/01/21/around-katy-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-21T12:52:12-07:00"
+title = "Around Katy - 2"
+image = "/wp-content/uploads/Around%20Katy/P1119115.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/22/around-katy-3.md b/content/posts/2009/01/22/around-katy-3.md
new file mode 100644
index 00000000..7dae1c6c
--- /dev/null
+++ b/content/posts/2009/01/22/around-katy-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-22T12:52:12-07:00"
+title = "Around Katy - 3"
+image = "/wp-content/uploads/Around%20Katy/P1119119.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/23/around-katy-4.md b/content/posts/2009/01/23/around-katy-4.md
new file mode 100644
index 00000000..904ae38a
--- /dev/null
+++ b/content/posts/2009/01/23/around-katy-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-23T12:52:12-07:00"
+title = "Around Katy - 4"
+image = "/wp-content/uploads/Around%20Katy/P1119131.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/24/around-katy-5.md b/content/posts/2009/01/24/around-katy-5.md
new file mode 100644
index 00000000..82af2a93
--- /dev/null
+++ b/content/posts/2009/01/24/around-katy-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-24T12:52:12-07:00"
+title = "Around Katy - 5"
+image = "/wp-content/uploads/Around%20Katy/P1129197.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/25/around-katy-6.md b/content/posts/2009/01/25/around-katy-6.md
new file mode 100644
index 00000000..a903127d
--- /dev/null
+++ b/content/posts/2009/01/25/around-katy-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-25T12:52:12-07:00"
+title = "Around Katy - 6"
+image = "/wp-content/uploads/Around%20Katy/P1149222.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/26/around-katy-7.md b/content/posts/2009/01/26/around-katy-7.md
new file mode 100644
index 00000000..a5b8170a
--- /dev/null
+++ b/content/posts/2009/01/26/around-katy-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-26T12:52:12-07:00"
+title = "Around Katy - 7"
+image = "/wp-content/uploads/Around%20Katy/P1159231.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/27/wabash-feed-store-1.md b/content/posts/2009/01/27/wabash-feed-store-1.md
new file mode 100644
index 00000000..8beb315a
--- /dev/null
+++ b/content/posts/2009/01/27/wabash-feed-store-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-27T06:52:12-07:00"
+title = "Wabash Feed Store - 1"
+image = "/wp-content/uploads/Wabash%20Feed%20Store/P1199429.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/28/wabash-feed-store-2.md b/content/posts/2009/01/28/wabash-feed-store-2.md
new file mode 100644
index 00000000..b34c493c
--- /dev/null
+++ b/content/posts/2009/01/28/wabash-feed-store-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-28T06:52:12-07:00"
+title = "Wabash Feed Store - 2"
+image = "/wp-content/uploads/Wabash%20Feed%20Store/P1199431.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/29/wabash-feed-store-3.md b/content/posts/2009/01/29/wabash-feed-store-3.md
new file mode 100644
index 00000000..c8c05fa6
--- /dev/null
+++ b/content/posts/2009/01/29/wabash-feed-store-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-29T06:52:12-07:00"
+title = "Wabash Feed Store - 3"
+image = "/wp-content/uploads/Wabash%20Feed%20Store/P1199432.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/30/wabash-feed-store-4.md b/content/posts/2009/01/30/wabash-feed-store-4.md
new file mode 100644
index 00000000..a9c6dbaf
--- /dev/null
+++ b/content/posts/2009/01/30/wabash-feed-store-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-30T06:52:12-07:00"
+title = "Wabash Feed Store - 4"
+image = "/wp-content/uploads/Wabash%20Feed%20Store/P1199436.jpg"
++++
+
+
+
diff --git a/content/posts/2009/01/31/wabash-feed-store-5.md b/content/posts/2009/01/31/wabash-feed-store-5.md
new file mode 100644
index 00000000..c9ef2eee
--- /dev/null
+++ b/content/posts/2009/01/31/wabash-feed-store-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-01-31T06:52:12-07:00"
+title = "Wabash Feed Store - 5"
+image = "/wp-content/uploads/Wabash%20Feed%20Store/P1199445.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/01/wabash-feed-store-6.md b/content/posts/2009/02/01/wabash-feed-store-6.md
new file mode 100644
index 00000000..9e224b91
--- /dev/null
+++ b/content/posts/2009/02/01/wabash-feed-store-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-01T06:52:12-07:00"
+title = "Wabash Feed Store - 6"
+image = "/wp-content/uploads/Wabash%20Feed%20Store/P1199446.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/02/one-day-in-houston-1.md b/content/posts/2009/02/02/one-day-in-houston-1.md
new file mode 100644
index 00000000..c2a60b40
--- /dev/null
+++ b/content/posts/2009/02/02/one-day-in-houston-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-02T00:52:12-07:00"
+title = "One Day In Houston - 1"
+image = "/wp-content/uploads/One%20Day%20In%20Houston/P1229486.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/03/one-day-in-houston-2.md b/content/posts/2009/02/03/one-day-in-houston-2.md
new file mode 100644
index 00000000..56c44cd6
--- /dev/null
+++ b/content/posts/2009/02/03/one-day-in-houston-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-03T00:52:12-07:00"
+title = "One Day In Houston - 2"
+image = "/wp-content/uploads/One%20Day%20In%20Houston/P1229492.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/04/one-day-in-houston-3.md b/content/posts/2009/02/04/one-day-in-houston-3.md
new file mode 100644
index 00000000..d1615fd1
--- /dev/null
+++ b/content/posts/2009/02/04/one-day-in-houston-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-04T00:52:12-07:00"
+title = "One Day In Houston - 3"
+image = "/wp-content/uploads/One%20Day%20In%20Houston/P1229493.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/05/one-day-in-houston-4.md b/content/posts/2009/02/05/one-day-in-houston-4.md
new file mode 100644
index 00000000..4061e922
--- /dev/null
+++ b/content/posts/2009/02/05/one-day-in-houston-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-05T00:52:12-07:00"
+title = "One Day In Houston - 4"
+image = "/wp-content/uploads/One%20Day%20In%20Houston/P1229506.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/06/one-day-in-houston-5.md b/content/posts/2009/02/06/one-day-in-houston-5.md
new file mode 100644
index 00000000..2d9ba137
--- /dev/null
+++ b/content/posts/2009/02/06/one-day-in-houston-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-06T00:52:12-07:00"
+title = "One Day In Houston - 5"
+image = "/wp-content/uploads/One%20Day%20In%20Houston/P1229511.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/07/one-day-in-houston-6.md b/content/posts/2009/02/07/one-day-in-houston-6.md
new file mode 100644
index 00000000..a9bd53c1
--- /dev/null
+++ b/content/posts/2009/02/07/one-day-in-houston-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-07T00:52:12-07:00"
+title = "One Day In Houston - 6"
+image = "/wp-content/uploads/One%20Day%20In%20Houston/P1229520.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/08/one-day-in-houston-7.md b/content/posts/2009/02/08/one-day-in-houston-7.md
new file mode 100644
index 00000000..928cdfbb
--- /dev/null
+++ b/content/posts/2009/02/08/one-day-in-houston-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-08T00:52:12-07:00"
+title = "One Day In Houston - 7"
+image = "/wp-content/uploads/One%20Day%20In%20Houston/P1229523.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/09/one-day-in-houston-8.md b/content/posts/2009/02/09/one-day-in-houston-8.md
new file mode 100644
index 00000000..8adb4bdd
--- /dev/null
+++ b/content/posts/2009/02/09/one-day-in-houston-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-09T00:52:12-07:00"
+title = "One Day In Houston - 8"
+image = "/wp-content/uploads/One%20Day%20In%20Houston/P1229524.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/10/odds-and-ends-1.md b/content/posts/2009/02/10/odds-and-ends-1.md
new file mode 100644
index 00000000..57ec3bbb
--- /dev/null
+++ b/content/posts/2009/02/10/odds-and-ends-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-10T18:52:12-07:00"
+title = "Odds and Ends - 1"
+image = "/wp-content/uploads/Odds%20and%20Ends/P1259647.ORF.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/10/one-day-in-houston-9.md b/content/posts/2009/02/10/one-day-in-houston-9.md
new file mode 100644
index 00000000..8a4f0020
--- /dev/null
+++ b/content/posts/2009/02/10/one-day-in-houston-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-10T00:52:12-07:00"
+title = "One Day In Houston - 9"
+image = "/wp-content/uploads/One%20Day%20In%20Houston/P1229528.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/11/odds-and-ends-2.md b/content/posts/2009/02/11/odds-and-ends-2.md
new file mode 100644
index 00000000..daa99650
--- /dev/null
+++ b/content/posts/2009/02/11/odds-and-ends-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-11T18:52:12-07:00"
+title = "Odds and Ends - 2"
+image = "/wp-content/uploads/Odds%20and%20Ends/P1259721.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/12/odds-and-ends-3.md b/content/posts/2009/02/12/odds-and-ends-3.md
new file mode 100644
index 00000000..ed98637d
--- /dev/null
+++ b/content/posts/2009/02/12/odds-and-ends-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-12T18:52:12-07:00"
+title = "Odds and Ends - 3"
+image = "/wp-content/uploads/Odds%20and%20Ends/P1309775.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/13/odds-and-ends-4.md b/content/posts/2009/02/13/odds-and-ends-4.md
new file mode 100644
index 00000000..9e3eca3b
--- /dev/null
+++ b/content/posts/2009/02/13/odds-and-ends-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-13T18:52:12-07:00"
+title = "Odds and Ends - 4"
+image = "/wp-content/uploads/Odds%20and%20Ends/P1309802.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/14/odds-and-ends-5.md b/content/posts/2009/02/14/odds-and-ends-5.md
new file mode 100644
index 00000000..fd03e123
--- /dev/null
+++ b/content/posts/2009/02/14/odds-and-ends-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-14T18:52:12-07:00"
+title = "Odds and Ends - 5"
+image = "/wp-content/uploads/Odds%20and%20Ends/P2030257.ORF.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/15/odds-and-ends-6.md b/content/posts/2009/02/15/odds-and-ends-6.md
new file mode 100644
index 00000000..3cd4ff52
--- /dev/null
+++ b/content/posts/2009/02/15/odds-and-ends-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-15T18:52:12-07:00"
+title = "Odds and Ends - 6"
+image = "/wp-content/uploads/Odds%20and%20Ends/P2040325.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/16/williams-tower-1.md b/content/posts/2009/02/16/williams-tower-1.md
new file mode 100644
index 00000000..3912100f
--- /dev/null
+++ b/content/posts/2009/02/16/williams-tower-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-16T12:52:12-07:00"
+title = "Williams Tower - 1"
+image = "/wp-content/uploads/Williams%20Tower/P2040288.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/17/williams-tower-2.md b/content/posts/2009/02/17/williams-tower-2.md
new file mode 100644
index 00000000..5e90175d
--- /dev/null
+++ b/content/posts/2009/02/17/williams-tower-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-17T12:52:12-07:00"
+title = "Williams Tower - 2"
+image = "/wp-content/uploads/Williams%20Tower/P2040300.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/18/williams-tower-3.md b/content/posts/2009/02/18/williams-tower-3.md
new file mode 100644
index 00000000..6943a065
--- /dev/null
+++ b/content/posts/2009/02/18/williams-tower-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-18T12:52:12-07:00"
+title = "Williams Tower - 3"
+image = "/wp-content/uploads/Williams%20Tower/P2040312.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/19/williams-tower-4.md b/content/posts/2009/02/19/williams-tower-4.md
new file mode 100644
index 00000000..94684946
--- /dev/null
+++ b/content/posts/2009/02/19/williams-tower-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-19T12:52:12-07:00"
+title = "Williams Tower - 4"
+image = "/wp-content/uploads/Williams%20Tower/P2040327.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/20/2-10-2009-1.md b/content/posts/2009/02/20/2-10-2009-1.md
new file mode 100644
index 00000000..b6293711
--- /dev/null
+++ b/content/posts/2009/02/20/2-10-2009-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-20T06:52:12-07:00"
+title = "2-10-2009 - 1"
+image = "/wp-content/uploads/2-10-2009/P2100655.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/21/2-10-2009-2.md b/content/posts/2009/02/21/2-10-2009-2.md
new file mode 100644
index 00000000..5e8fee47
--- /dev/null
+++ b/content/posts/2009/02/21/2-10-2009-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-21T06:52:12-07:00"
+title = "2-10-2009 - 2"
+image = "/wp-content/uploads/2-10-2009/P2100657.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/22/2-10-2009-3.md b/content/posts/2009/02/22/2-10-2009-3.md
new file mode 100644
index 00000000..cd4e83b0
--- /dev/null
+++ b/content/posts/2009/02/22/2-10-2009-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-22T06:52:12-07:00"
+title = "2-10-2009 - 3"
+image = "/wp-content/uploads/2-10-2009/P2100658.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/23/2-10-2009-4.md b/content/posts/2009/02/23/2-10-2009-4.md
new file mode 100644
index 00000000..3ee78462
--- /dev/null
+++ b/content/posts/2009/02/23/2-10-2009-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-23T06:52:12-07:00"
+title = "2-10-2009 - 4"
+image = "/wp-content/uploads/2-10-2009/P2100662.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/24/untitled-1.md b/content/posts/2009/02/24/untitled-1.md
new file mode 100644
index 00000000..4ebee816
--- /dev/null
+++ b/content/posts/2009/02/24/untitled-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-24T00:52:12-07:00"
+title = "Untitled - 1"
+image = "/wp-content/uploads/Untitled/P2070454.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/25/untitled-2.md b/content/posts/2009/02/25/untitled-2.md
new file mode 100644
index 00000000..2cc17a9c
--- /dev/null
+++ b/content/posts/2009/02/25/untitled-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-25T00:52:12-07:00"
+title = "Untitled - 2"
+image = "/wp-content/uploads/Untitled/P2110666.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/26/untitled-3.md b/content/posts/2009/02/26/untitled-3.md
new file mode 100644
index 00000000..6f8691c1
--- /dev/null
+++ b/content/posts/2009/02/26/untitled-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-26T00:52:12-07:00"
+title = "Untitled - 3"
+image = "/wp-content/uploads/Untitled/P2150803.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/27/untitled-4.md b/content/posts/2009/02/27/untitled-4.md
new file mode 100644
index 00000000..fc2ae373
--- /dev/null
+++ b/content/posts/2009/02/27/untitled-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-27T00:52:12-07:00"
+title = "Untitled - 4"
+image = "/wp-content/uploads/Untitled/P2160845.jpg"
++++
+
+
+
diff --git a/content/posts/2009/02/28/untitled-5.md b/content/posts/2009/02/28/untitled-5.md
new file mode 100644
index 00000000..dbc0b361
--- /dev/null
+++ b/content/posts/2009/02/28/untitled-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-02-28T00:52:12-07:00"
+title = "Untitled - 5"
+image = "/wp-content/uploads/Untitled/P2170861.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/01/old-1.md b/content/posts/2009/03/01/old-1.md
new file mode 100644
index 00000000..8d071891
--- /dev/null
+++ b/content/posts/2009/03/01/old-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-01T18:52:12-07:00"
+title = "Old - 1"
+image = "/wp-content/uploads/Old/P2070490.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/01/untitled-6.md b/content/posts/2009/03/01/untitled-6.md
new file mode 100644
index 00000000..fdb174f2
--- /dev/null
+++ b/content/posts/2009/03/01/untitled-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-01T00:52:12-07:00"
+title = "Untitled - 6"
+image = "/wp-content/uploads/Untitled/P2211039.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/02/old-2.md b/content/posts/2009/03/02/old-2.md
new file mode 100644
index 00000000..917c5933
--- /dev/null
+++ b/content/posts/2009/03/02/old-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-02T18:52:12-07:00"
+title = "Old - 2"
+image = "/wp-content/uploads/Old/P2070492.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/03/old-3.md b/content/posts/2009/03/03/old-3.md
new file mode 100644
index 00000000..8e6ec1a1
--- /dev/null
+++ b/content/posts/2009/03/03/old-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-03T18:52:12-07:00"
+title = "Old - 3"
+image = "/wp-content/uploads/Old/P2070493.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/04/old-4.md b/content/posts/2009/03/04/old-4.md
new file mode 100644
index 00000000..1745ec88
--- /dev/null
+++ b/content/posts/2009/03/04/old-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-04T18:52:12-07:00"
+title = "Old - 4"
+image = "/wp-content/uploads/Old/P2221095.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/05/old-5.md b/content/posts/2009/03/05/old-5.md
new file mode 100644
index 00000000..aa05b7f3
--- /dev/null
+++ b/content/posts/2009/03/05/old-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-05T18:52:12-07:00"
+title = "Old - 5"
+image = "/wp-content/uploads/Old/P2221101.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/06/old-6.md b/content/posts/2009/03/06/old-6.md
new file mode 100644
index 00000000..2182a09d
--- /dev/null
+++ b/content/posts/2009/03/06/old-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-06T18:52:12-07:00"
+title = "Old - 6"
+image = "/wp-content/uploads/Old/P2221102.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/07/a-day-1.md b/content/posts/2009/03/07/a-day-1.md
new file mode 100644
index 00000000..bf099ea9
--- /dev/null
+++ b/content/posts/2009/03/07/a-day-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-07T12:52:12-07:00"
+title = "A Day - 1"
+image = "/wp-content/uploads/A%20Day/img_0071.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/08/a-day-2.md b/content/posts/2009/03/08/a-day-2.md
new file mode 100644
index 00000000..c20a1074
--- /dev/null
+++ b/content/posts/2009/03/08/a-day-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-08T12:52:12-07:00"
+title = "A Day - 2"
+image = "/wp-content/uploads/A%20Day/img_0072.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/09/a-day-3.md b/content/posts/2009/03/09/a-day-3.md
new file mode 100644
index 00000000..01d26c6d
--- /dev/null
+++ b/content/posts/2009/03/09/a-day-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-09T12:52:12-07:00"
+title = "A Day - 3"
+image = "/wp-content/uploads/A%20Day/img_0075.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/10/a-day-4.md b/content/posts/2009/03/10/a-day-4.md
new file mode 100644
index 00000000..40b80b66
--- /dev/null
+++ b/content/posts/2009/03/10/a-day-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-10T12:52:12-07:00"
+title = "A Day - 4"
+image = "/wp-content/uploads/A%20Day/img_0078.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/11/a-day-5.md b/content/posts/2009/03/11/a-day-5.md
new file mode 100644
index 00000000..07396894
--- /dev/null
+++ b/content/posts/2009/03/11/a-day-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-11T12:52:12-07:00"
+title = "A Day - 5"
+image = "/wp-content/uploads/A%20Day/img_0081.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/12/a-day-6.md b/content/posts/2009/03/12/a-day-6.md
new file mode 100644
index 00000000..6408b222
--- /dev/null
+++ b/content/posts/2009/03/12/a-day-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-12T12:52:12-07:00"
+title = "A Day - 6"
+image = "/wp-content/uploads/A%20Day/img_0083.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/13/a-day-7.md b/content/posts/2009/03/13/a-day-7.md
new file mode 100644
index 00000000..83467611
--- /dev/null
+++ b/content/posts/2009/03/13/a-day-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-13T12:52:12-07:00"
+title = "A Day - 7"
+image = "/wp-content/uploads/A%20Day/img_0085.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/14/butterfly-1.md b/content/posts/2009/03/14/butterfly-1.md
new file mode 100644
index 00000000..16dece3b
--- /dev/null
+++ b/content/posts/2009/03/14/butterfly-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-14T06:52:12-07:00"
+title = "Butterfly - 1"
+image = "/wp-content/uploads/Butterfly/img_0433.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/15/butterfly-2.md b/content/posts/2009/03/15/butterfly-2.md
new file mode 100644
index 00000000..510cdac5
--- /dev/null
+++ b/content/posts/2009/03/15/butterfly-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-15T06:52:12-07:00"
+title = "Butterfly - 2"
+image = "/wp-content/uploads/Butterfly/img_04331.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/16/butterfly-3.md b/content/posts/2009/03/16/butterfly-3.md
new file mode 100644
index 00000000..350b3a7c
--- /dev/null
+++ b/content/posts/2009/03/16/butterfly-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-16T06:52:12-07:00"
+title = "Butterfly - 3"
+image = "/wp-content/uploads/Butterfly/img_0434.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/17/butterfly-4.md b/content/posts/2009/03/17/butterfly-4.md
new file mode 100644
index 00000000..1bd947f2
--- /dev/null
+++ b/content/posts/2009/03/17/butterfly-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-17T06:52:12-07:00"
+title = "Butterfly - 4"
+image = "/wp-content/uploads/Butterfly/img_0435.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/18/butterfly-5.md b/content/posts/2009/03/18/butterfly-5.md
new file mode 100644
index 00000000..062dbc81
--- /dev/null
+++ b/content/posts/2009/03/18/butterfly-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-18T06:52:12-07:00"
+title = "Butterfly - 5"
+image = "/wp-content/uploads/Butterfly/img_0436.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/19/downtown-details-1.md b/content/posts/2009/03/19/downtown-details-1.md
new file mode 100644
index 00000000..b2811940
--- /dev/null
+++ b/content/posts/2009/03/19/downtown-details-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-19T00:52:12-07:00"
+title = "Downtown Details - 1"
+image = "/wp-content/uploads/Downtown%20Details/img_0506.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/20/downtown-details-2.md b/content/posts/2009/03/20/downtown-details-2.md
new file mode 100644
index 00000000..514d386e
--- /dev/null
+++ b/content/posts/2009/03/20/downtown-details-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-20T00:52:12-07:00"
+title = "Downtown Details - 2"
+image = "/wp-content/uploads/Downtown%20Details/img_0509.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/21/downtown-details-3.md b/content/posts/2009/03/21/downtown-details-3.md
new file mode 100644
index 00000000..37da5a8e
--- /dev/null
+++ b/content/posts/2009/03/21/downtown-details-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-21T00:52:12-07:00"
+title = "Downtown Details - 3"
+image = "/wp-content/uploads/Downtown%20Details/img_0512.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/22/downtown-details-4.md b/content/posts/2009/03/22/downtown-details-4.md
new file mode 100644
index 00000000..5e835a7e
--- /dev/null
+++ b/content/posts/2009/03/22/downtown-details-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-22T00:52:12-07:00"
+title = "Downtown Details - 4"
+image = "/wp-content/uploads/Downtown%20Details/img_0513.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/23/downtown-details-5.md b/content/posts/2009/03/23/downtown-details-5.md
new file mode 100644
index 00000000..2e45566c
--- /dev/null
+++ b/content/posts/2009/03/23/downtown-details-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-23T00:52:12-07:00"
+title = "Downtown Details - 5"
+image = "/wp-content/uploads/Downtown%20Details/img_0515.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/23/flowers-others-from-the-backyard-1.md b/content/posts/2009/03/23/flowers-others-from-the-backyard-1.md
new file mode 100644
index 00000000..9f642329
--- /dev/null
+++ b/content/posts/2009/03/23/flowers-others-from-the-backyard-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-23T18:52:12-07:00"
+title = "Flowers & Others From the Backyard - 1"
+image = "/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0899.jpg"
++++
+
+
+![Flowers [] Others From the Backyard - 1](/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0899.jpg)
diff --git a/content/posts/2009/03/24/flowers-others-from-the-backyard-2.md b/content/posts/2009/03/24/flowers-others-from-the-backyard-2.md
new file mode 100644
index 00000000..a2f0cd8f
--- /dev/null
+++ b/content/posts/2009/03/24/flowers-others-from-the-backyard-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-24T18:52:12-07:00"
+title = "Flowers & Others From the Backyard - 2"
+image = "/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0906.jpg"
++++
+
+
+![Flowers [] Others From the Backyard - 2](/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0906.jpg)
diff --git a/content/posts/2009/03/25/flowers-others-from-the-backyard-3.md b/content/posts/2009/03/25/flowers-others-from-the-backyard-3.md
new file mode 100644
index 00000000..9b7d7e0f
--- /dev/null
+++ b/content/posts/2009/03/25/flowers-others-from-the-backyard-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-25T18:52:12-07:00"
+title = "Flowers & Others From the Backyard - 3"
+image = "/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0911.jpg"
++++
+
+
+![Flowers [] Others From the Backyard - 3](/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0911.jpg)
diff --git a/content/posts/2009/03/26/flowers-others-from-the-backyard-4.md b/content/posts/2009/03/26/flowers-others-from-the-backyard-4.md
new file mode 100644
index 00000000..ab315f5f
--- /dev/null
+++ b/content/posts/2009/03/26/flowers-others-from-the-backyard-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-26T18:52:12-07:00"
+title = "Flowers & Others From the Backyard - 4"
+image = "/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0912.jpg"
++++
+
+
+![Flowers [] Others From the Backyard - 4](/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0912.jpg)
diff --git a/content/posts/2009/03/27/flowers-others-from-the-backyard-5.md b/content/posts/2009/03/27/flowers-others-from-the-backyard-5.md
new file mode 100644
index 00000000..9b2270a3
--- /dev/null
+++ b/content/posts/2009/03/27/flowers-others-from-the-backyard-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-27T18:52:12-07:00"
+title = "Flowers & Others From the Backyard - 5"
+image = "/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0917.jpg"
++++
+
+
+![Flowers [] Others From the Backyard - 5](/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0917.jpg)
diff --git a/content/posts/2009/03/28/flatonia-tx-1.md b/content/posts/2009/03/28/flatonia-tx-1.md
new file mode 100644
index 00000000..a1c96556
--- /dev/null
+++ b/content/posts/2009/03/28/flatonia-tx-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-28T12:52:12-07:00"
+title = "Flatonia, TX - 1"
+image = "/wp-content/uploads/Flatonia,%20TX/First%20UMC,%20Flatonia,%20TX.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/29/flatonia-tx-2.md b/content/posts/2009/03/29/flatonia-tx-2.md
new file mode 100644
index 00000000..a50efc23
--- /dev/null
+++ b/content/posts/2009/03/29/flatonia-tx-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-29T12:52:12-07:00"
+title = "Flatonia, TX - 2"
+image = "/wp-content/uploads/Flatonia,%20TX/Lyric%20Theater,%20Flatonia,%20TX.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/30/flatonia-tx-3.md b/content/posts/2009/03/30/flatonia-tx-3.md
new file mode 100644
index 00000000..18ee6bf5
--- /dev/null
+++ b/content/posts/2009/03/30/flatonia-tx-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-30T12:52:12-07:00"
+title = "Flatonia, TX - 3"
+image = "/wp-content/uploads/Flatonia,%20TX/South%20Main%20Store%20Fronts,%20Flatonia,%20TX.jpg"
++++
+
+
+
diff --git a/content/posts/2009/03/31/backyard-1.md b/content/posts/2009/03/31/backyard-1.md
new file mode 100644
index 00000000..79877a8f
--- /dev/null
+++ b/content/posts/2009/03/31/backyard-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-03-31T06:52:12-07:00"
+title = "Backyard - 1"
+image = "/wp-content/uploads/Backyard/img_1714.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/01/backyard-2.md b/content/posts/2009/04/01/backyard-2.md
new file mode 100644
index 00000000..2a2a1117
--- /dev/null
+++ b/content/posts/2009/04/01/backyard-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-01T06:52:12-07:00"
+title = "Backyard - 2"
+image = "/wp-content/uploads/Backyard/img_1728.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/02/backyard-3.md b/content/posts/2009/04/02/backyard-3.md
new file mode 100644
index 00000000..835edf4c
--- /dev/null
+++ b/content/posts/2009/04/02/backyard-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-02T06:52:12-07:00"
+title = "Backyard - 3"
+image = "/wp-content/uploads/Backyard/img_1731.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/03/backyard-4.md b/content/posts/2009/04/03/backyard-4.md
new file mode 100644
index 00000000..94cbd3e8
--- /dev/null
+++ b/content/posts/2009/04/03/backyard-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-03T06:52:12-07:00"
+title = "Backyard - 4"
+image = "/wp-content/uploads/Backyard/img_1740.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/04/backyard-5.md b/content/posts/2009/04/04/backyard-5.md
new file mode 100644
index 00000000..14a0164e
--- /dev/null
+++ b/content/posts/2009/04/04/backyard-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-04T06:52:12-07:00"
+title = "Backyard - 5"
+image = "/wp-content/uploads/Backyard/img_1741.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/05/backyard-6.md b/content/posts/2009/04/05/backyard-6.md
new file mode 100644
index 00000000..db0b08fc
--- /dev/null
+++ b/content/posts/2009/04/05/backyard-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-05T06:52:12-07:00"
+title = "Backyard - 6"
+image = "/wp-content/uploads/Backyard/img_1743.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/06/backyard-7.md b/content/posts/2009/04/06/backyard-7.md
new file mode 100644
index 00000000..e4036a19
--- /dev/null
+++ b/content/posts/2009/04/06/backyard-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-06T06:52:12-07:00"
+title = "Backyard - 7"
+image = "/wp-content/uploads/Backyard/img_1750.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/07/backyard-8.md b/content/posts/2009/04/07/backyard-8.md
new file mode 100644
index 00000000..e5b9f013
--- /dev/null
+++ b/content/posts/2009/04/07/backyard-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-07T06:52:12-07:00"
+title = "Backyard - 8"
+image = "/wp-content/uploads/Backyard/img_1763.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/08/backyard-9.md b/content/posts/2009/04/08/backyard-9.md
new file mode 100644
index 00000000..ee5e1bb3
--- /dev/null
+++ b/content/posts/2009/04/08/backyard-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-08T06:52:12-07:00"
+title = "Backyard - 9"
+image = "/wp-content/uploads/Backyard/img_1765.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/09/backyard-10.md b/content/posts/2009/04/09/backyard-10.md
new file mode 100644
index 00000000..bc0fd1ac
--- /dev/null
+++ b/content/posts/2009/04/09/backyard-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-09T06:52:12-07:00"
+title = "Backyard - 10"
+image = "/wp-content/uploads/Backyard/img_1766.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/10/april-1.md b/content/posts/2009/04/10/april-1.md
new file mode 100644
index 00000000..ff4753b0
--- /dev/null
+++ b/content/posts/2009/04/10/april-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-10T00:52:12-07:00"
+title = "April - 1"
+image = "/wp-content/uploads/April/img_2230.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/11/april-2.md b/content/posts/2009/04/11/april-2.md
new file mode 100644
index 00000000..d02efef4
--- /dev/null
+++ b/content/posts/2009/04/11/april-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-11T00:52:12-07:00"
+title = "April - 2"
+image = "/wp-content/uploads/April/img_2334.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/12/april-3.md b/content/posts/2009/04/12/april-3.md
new file mode 100644
index 00000000..54ca749b
--- /dev/null
+++ b/content/posts/2009/04/12/april-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-12T00:52:12-07:00"
+title = "April - 3"
+image = "/wp-content/uploads/April/img_2460.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/13/april-4.md b/content/posts/2009/04/13/april-4.md
new file mode 100644
index 00000000..ef6089bd
--- /dev/null
+++ b/content/posts/2009/04/13/april-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-13T00:52:12-07:00"
+title = "April - 4"
+image = "/wp-content/uploads/April/img_2652.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/14/april-5.md b/content/posts/2009/04/14/april-5.md
new file mode 100644
index 00000000..0b141c45
--- /dev/null
+++ b/content/posts/2009/04/14/april-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-14T00:52:12-07:00"
+title = "April - 5"
+image = "/wp-content/uploads/April/img_2658.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/15/april-6.md b/content/posts/2009/04/15/april-6.md
new file mode 100644
index 00000000..65358982
--- /dev/null
+++ b/content/posts/2009/04/15/april-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-15T00:52:12-07:00"
+title = "April - 6"
+image = "/wp-content/uploads/April/img_2670.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/16/april-7.md b/content/posts/2009/04/16/april-7.md
new file mode 100644
index 00000000..89d9296a
--- /dev/null
+++ b/content/posts/2009/04/16/april-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-16T00:52:12-07:00"
+title = "April - 7"
+image = "/wp-content/uploads/April/img_2681.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/17/april-8.md b/content/posts/2009/04/17/april-8.md
new file mode 100644
index 00000000..72b3b3ca
--- /dev/null
+++ b/content/posts/2009/04/17/april-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-17T00:52:12-07:00"
+title = "April - 8"
+image = "/wp-content/uploads/April/img_2693.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/18/april-9.md b/content/posts/2009/04/18/april-9.md
new file mode 100644
index 00000000..b87445b3
--- /dev/null
+++ b/content/posts/2009/04/18/april-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-18T00:52:12-07:00"
+title = "April - 9"
+image = "/wp-content/uploads/April/img_2699.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/19/april-10.md b/content/posts/2009/04/19/april-10.md
new file mode 100644
index 00000000..f01f48da
--- /dev/null
+++ b/content/posts/2009/04/19/april-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-19T00:52:12-07:00"
+title = "April - 10"
+image = "/wp-content/uploads/April/img_2715.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/19/views-of-downtown-houston-1.md b/content/posts/2009/04/19/views-of-downtown-houston-1.md
new file mode 100644
index 00000000..1854528b
--- /dev/null
+++ b/content/posts/2009/04/19/views-of-downtown-houston-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-19T18:52:12-07:00"
+title = "Views of Downtown Houston - 1"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2670.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/20/views-of-downtown-houston-2.md b/content/posts/2009/04/20/views-of-downtown-houston-2.md
new file mode 100644
index 00000000..3c68447f
--- /dev/null
+++ b/content/posts/2009/04/20/views-of-downtown-houston-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-20T18:52:12-07:00"
+title = "Views of Downtown Houston - 2"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2672.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/21/views-of-downtown-houston-3.md b/content/posts/2009/04/21/views-of-downtown-houston-3.md
new file mode 100644
index 00000000..1130ef7b
--- /dev/null
+++ b/content/posts/2009/04/21/views-of-downtown-houston-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-21T18:52:12-07:00"
+title = "Views of Downtown Houston - 3"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2681.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/22/views-of-downtown-houston-4.md b/content/posts/2009/04/22/views-of-downtown-houston-4.md
new file mode 100644
index 00000000..a3b73d05
--- /dev/null
+++ b/content/posts/2009/04/22/views-of-downtown-houston-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-22T18:52:12-07:00"
+title = "Views of Downtown Houston - 4"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2814.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/23/views-of-downtown-houston-5.md b/content/posts/2009/04/23/views-of-downtown-houston-5.md
new file mode 100644
index 00000000..3049408f
--- /dev/null
+++ b/content/posts/2009/04/23/views-of-downtown-houston-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-23T18:52:12-07:00"
+title = "Views of Downtown Houston - 5"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2919.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/24/views-of-downtown-houston-6.md b/content/posts/2009/04/24/views-of-downtown-houston-6.md
new file mode 100644
index 00000000..d268f61d
--- /dev/null
+++ b/content/posts/2009/04/24/views-of-downtown-houston-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-24T18:52:12-07:00"
+title = "Views of Downtown Houston - 6"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2924.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/25/views-of-downtown-houston-7.md b/content/posts/2009/04/25/views-of-downtown-houston-7.md
new file mode 100644
index 00000000..43f816f4
--- /dev/null
+++ b/content/posts/2009/04/25/views-of-downtown-houston-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-25T18:52:12-07:00"
+title = "Views of Downtown Houston - 7"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2925.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/26/views-of-downtown-houston-8.md b/content/posts/2009/04/26/views-of-downtown-houston-8.md
new file mode 100644
index 00000000..3fd1517f
--- /dev/null
+++ b/content/posts/2009/04/26/views-of-downtown-houston-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-26T18:52:12-07:00"
+title = "Views of Downtown Houston - 8"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2927.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/27/views-of-downtown-houston-9.md b/content/posts/2009/04/27/views-of-downtown-houston-9.md
new file mode 100644
index 00000000..b62d1c30
--- /dev/null
+++ b/content/posts/2009/04/27/views-of-downtown-houston-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-27T18:52:12-07:00"
+title = "Views of Downtown Houston - 9"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2963.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/28/views-of-downtown-houston-10.md b/content/posts/2009/04/28/views-of-downtown-houston-10.md
new file mode 100644
index 00000000..eb4c2926
--- /dev/null
+++ b/content/posts/2009/04/28/views-of-downtown-houston-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-28T18:52:12-07:00"
+title = "Views of Downtown Houston - 10"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2964.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/29/views-of-downtown-houston-11.md b/content/posts/2009/04/29/views-of-downtown-houston-11.md
new file mode 100644
index 00000000..dbc9e41d
--- /dev/null
+++ b/content/posts/2009/04/29/views-of-downtown-houston-11.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-29T18:52:12-07:00"
+title = "Views of Downtown Houston - 11"
+image = "/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2965.jpg"
++++
+
+
+
diff --git a/content/posts/2009/04/30/rocky-river-ranch-2009-1.md b/content/posts/2009/04/30/rocky-river-ranch-2009-1.md
new file mode 100644
index 00000000..6d36913a
--- /dev/null
+++ b/content/posts/2009/04/30/rocky-river-ranch-2009-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-04-30T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 1"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3296.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/01/rocky-river-ranch-2009-2.md b/content/posts/2009/05/01/rocky-river-ranch-2009-2.md
new file mode 100644
index 00000000..8e820e9e
--- /dev/null
+++ b/content/posts/2009/05/01/rocky-river-ranch-2009-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-01T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 2"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3316.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/02/rocky-river-ranch-2009-3.md b/content/posts/2009/05/02/rocky-river-ranch-2009-3.md
new file mode 100644
index 00000000..0c4d0afd
--- /dev/null
+++ b/content/posts/2009/05/02/rocky-river-ranch-2009-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-02T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 3"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3348.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/03/rocky-river-ranch-2009-4.md b/content/posts/2009/05/03/rocky-river-ranch-2009-4.md
new file mode 100644
index 00000000..00bee5bc
--- /dev/null
+++ b/content/posts/2009/05/03/rocky-river-ranch-2009-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-03T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 4"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3444.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/04/rocky-river-ranch-2009-5.md b/content/posts/2009/05/04/rocky-river-ranch-2009-5.md
new file mode 100644
index 00000000..24f70ff1
--- /dev/null
+++ b/content/posts/2009/05/04/rocky-river-ranch-2009-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-04T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 5"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3517.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/05/rocky-river-ranch-2009-6.md b/content/posts/2009/05/05/rocky-river-ranch-2009-6.md
new file mode 100644
index 00000000..4c9d2ab0
--- /dev/null
+++ b/content/posts/2009/05/05/rocky-river-ranch-2009-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-05T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 6"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3525.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/06/rocky-river-ranch-2009-7.md b/content/posts/2009/05/06/rocky-river-ranch-2009-7.md
new file mode 100644
index 00000000..eb5163ee
--- /dev/null
+++ b/content/posts/2009/05/06/rocky-river-ranch-2009-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-06T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 7"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3566.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/07/rocky-river-ranch-2009-8.md b/content/posts/2009/05/07/rocky-river-ranch-2009-8.md
new file mode 100644
index 00000000..ea4e3418
--- /dev/null
+++ b/content/posts/2009/05/07/rocky-river-ranch-2009-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-07T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 8"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3658.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/08/rocky-river-ranch-2009-9.md b/content/posts/2009/05/08/rocky-river-ranch-2009-9.md
new file mode 100644
index 00000000..2f3ea7a2
--- /dev/null
+++ b/content/posts/2009/05/08/rocky-river-ranch-2009-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-08T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 9"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3807.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/09/rocky-river-ranch-2009-10.md b/content/posts/2009/05/09/rocky-river-ranch-2009-10.md
new file mode 100644
index 00000000..37ce6921
--- /dev/null
+++ b/content/posts/2009/05/09/rocky-river-ranch-2009-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-09T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 10"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3830.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/10/rocky-river-ranch-2009-11.md b/content/posts/2009/05/10/rocky-river-ranch-2009-11.md
new file mode 100644
index 00000000..c50feec6
--- /dev/null
+++ b/content/posts/2009/05/10/rocky-river-ranch-2009-11.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-10T12:52:12-07:00"
+title = "Rocky River Ranch 2009 - 11"
+image = "/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3873.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/11/road-side-wild-flowers-1.md b/content/posts/2009/05/11/road-side-wild-flowers-1.md
new file mode 100644
index 00000000..85b14cbe
--- /dev/null
+++ b/content/posts/2009/05/11/road-side-wild-flowers-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-11T06:52:12-07:00"
+title = "Road Side Wild Flowers - 1"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4033.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/12/road-side-wild-flowers-2.md b/content/posts/2009/05/12/road-side-wild-flowers-2.md
new file mode 100644
index 00000000..02822a82
--- /dev/null
+++ b/content/posts/2009/05/12/road-side-wild-flowers-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-12T06:52:12-07:00"
+title = "Road Side Wild Flowers - 2"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4041.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/13/road-side-wild-flowers-3.md b/content/posts/2009/05/13/road-side-wild-flowers-3.md
new file mode 100644
index 00000000..f5743bad
--- /dev/null
+++ b/content/posts/2009/05/13/road-side-wild-flowers-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-13T06:52:12-07:00"
+title = "Road Side Wild Flowers - 3"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4050.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/14/road-side-wild-flowers-4.md b/content/posts/2009/05/14/road-side-wild-flowers-4.md
new file mode 100644
index 00000000..1cc2afe2
--- /dev/null
+++ b/content/posts/2009/05/14/road-side-wild-flowers-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-14T06:52:12-07:00"
+title = "Road Side Wild Flowers - 4"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4051.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/15/road-side-wild-flowers-5.md b/content/posts/2009/05/15/road-side-wild-flowers-5.md
new file mode 100644
index 00000000..340d735e
--- /dev/null
+++ b/content/posts/2009/05/15/road-side-wild-flowers-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-15T06:52:12-07:00"
+title = "Road Side Wild Flowers - 5"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4055.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/16/road-side-wild-flowers-6.md b/content/posts/2009/05/16/road-side-wild-flowers-6.md
new file mode 100644
index 00000000..2b1e533f
--- /dev/null
+++ b/content/posts/2009/05/16/road-side-wild-flowers-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-16T06:52:12-07:00"
+title = "Road Side Wild Flowers - 6"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4058.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/17/road-side-wild-flowers-7.md b/content/posts/2009/05/17/road-side-wild-flowers-7.md
new file mode 100644
index 00000000..91cf4f2c
--- /dev/null
+++ b/content/posts/2009/05/17/road-side-wild-flowers-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-17T06:52:12-07:00"
+title = "Road Side Wild Flowers - 7"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4060.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/18/road-side-wild-flowers-8.md b/content/posts/2009/05/18/road-side-wild-flowers-8.md
new file mode 100644
index 00000000..cae51002
--- /dev/null
+++ b/content/posts/2009/05/18/road-side-wild-flowers-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-18T06:52:12-07:00"
+title = "Road Side Wild Flowers - 8"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4079.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/19/road-side-wild-flowers-9.md b/content/posts/2009/05/19/road-side-wild-flowers-9.md
new file mode 100644
index 00000000..9572371c
--- /dev/null
+++ b/content/posts/2009/05/19/road-side-wild-flowers-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-19T06:52:12-07:00"
+title = "Road Side Wild Flowers - 9"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4081.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/20/road-side-wild-flowers-10.md b/content/posts/2009/05/20/road-side-wild-flowers-10.md
new file mode 100644
index 00000000..f6febe0c
--- /dev/null
+++ b/content/posts/2009/05/20/road-side-wild-flowers-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-20T06:52:12-07:00"
+title = "Road Side Wild Flowers - 10"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4084.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/21/road-side-wild-flowers-11.md b/content/posts/2009/05/21/road-side-wild-flowers-11.md
new file mode 100644
index 00000000..af11269a
--- /dev/null
+++ b/content/posts/2009/05/21/road-side-wild-flowers-11.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-21T06:52:12-07:00"
+title = "Road Side Wild Flowers - 11"
+image = "/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4091.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/22/the-katy-1.md b/content/posts/2009/05/22/the-katy-1.md
new file mode 100644
index 00000000..dc4b09cf
--- /dev/null
+++ b/content/posts/2009/05/22/the-katy-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-22T00:52:12-07:00"
+title = "The Katy - 1"
+image = "/wp-content/uploads/The%20Katy/img_3999.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/23/the-katy-2.md b/content/posts/2009/05/23/the-katy-2.md
new file mode 100644
index 00000000..91ac7e8e
--- /dev/null
+++ b/content/posts/2009/05/23/the-katy-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-23T00:52:12-07:00"
+title = "The Katy - 2"
+image = "/wp-content/uploads/The%20Katy/img_4000.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/24/the-katy-3.md b/content/posts/2009/05/24/the-katy-3.md
new file mode 100644
index 00000000..d16b781d
--- /dev/null
+++ b/content/posts/2009/05/24/the-katy-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-24T00:52:12-07:00"
+title = "The Katy - 3"
+image = "/wp-content/uploads/The%20Katy/img_4006.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/25/the-katy-4.md b/content/posts/2009/05/25/the-katy-4.md
new file mode 100644
index 00000000..a337e9ca
--- /dev/null
+++ b/content/posts/2009/05/25/the-katy-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-25T00:52:12-07:00"
+title = "The Katy - 4"
+image = "/wp-content/uploads/The%20Katy/img_4008.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/26/the-katy-5.md b/content/posts/2009/05/26/the-katy-5.md
new file mode 100644
index 00000000..e4e06f9f
--- /dev/null
+++ b/content/posts/2009/05/26/the-katy-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-26T00:52:12-07:00"
+title = "The Katy - 5"
+image = "/wp-content/uploads/The%20Katy/img_4011.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/27/the-katy-6.md b/content/posts/2009/05/27/the-katy-6.md
new file mode 100644
index 00000000..7a3252d9
--- /dev/null
+++ b/content/posts/2009/05/27/the-katy-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-27T00:52:12-07:00"
+title = "The Katy - 6"
+image = "/wp-content/uploads/The%20Katy/img_4241.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/28/images-of-may-1.md b/content/posts/2009/05/28/images-of-may-1.md
new file mode 100644
index 00000000..84181072
--- /dev/null
+++ b/content/posts/2009/05/28/images-of-may-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-28T18:52:12-07:00"
+title = "Images of May - 1"
+image = "/wp-content/uploads/Images%20of%20May/img_4355.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/28/the-katy-7.md b/content/posts/2009/05/28/the-katy-7.md
new file mode 100644
index 00000000..750dce3a
--- /dev/null
+++ b/content/posts/2009/05/28/the-katy-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-28T00:52:12-07:00"
+title = "The Katy - 7"
+image = "/wp-content/uploads/The%20Katy/img_4248.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/29/images-of-may-2.md b/content/posts/2009/05/29/images-of-may-2.md
new file mode 100644
index 00000000..db553f17
--- /dev/null
+++ b/content/posts/2009/05/29/images-of-may-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-29T18:52:12-07:00"
+title = "Images of May - 2"
+image = "/wp-content/uploads/Images%20of%20May/img_4510.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/30/images-of-may-3.md b/content/posts/2009/05/30/images-of-may-3.md
new file mode 100644
index 00000000..6593be42
--- /dev/null
+++ b/content/posts/2009/05/30/images-of-may-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-30T18:52:12-07:00"
+title = "Images of May - 3"
+image = "/wp-content/uploads/Images%20of%20May/img_4614.jpg"
++++
+
+
+
diff --git a/content/posts/2009/05/31/images-of-may-4.md b/content/posts/2009/05/31/images-of-may-4.md
new file mode 100644
index 00000000..ac55a95c
--- /dev/null
+++ b/content/posts/2009/05/31/images-of-may-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-05-31T18:52:12-07:00"
+title = "Images of May - 4"
+image = "/wp-content/uploads/Images%20of%20May/img_4652.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/01/images-of-may-5.md b/content/posts/2009/06/01/images-of-may-5.md
new file mode 100644
index 00000000..25de03d8
--- /dev/null
+++ b/content/posts/2009/06/01/images-of-may-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-01T18:52:12-07:00"
+title = "Images of May - 5"
+image = "/wp-content/uploads/Images%20of%20May/img_4671.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/02/images-of-may-6.md b/content/posts/2009/06/02/images-of-may-6.md
new file mode 100644
index 00000000..ca37785d
--- /dev/null
+++ b/content/posts/2009/06/02/images-of-may-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-02T18:52:12-07:00"
+title = "Images of May - 6"
+image = "/wp-content/uploads/Images%20of%20May/img_4710.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/03/images-of-may-7.md b/content/posts/2009/06/03/images-of-may-7.md
new file mode 100644
index 00000000..fa6c6563
--- /dev/null
+++ b/content/posts/2009/06/03/images-of-may-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-03T18:52:12-07:00"
+title = "Images of May - 7"
+image = "/wp-content/uploads/Images%20of%20May/img_4766.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/04/images-of-may-8.md b/content/posts/2009/06/04/images-of-may-8.md
new file mode 100644
index 00000000..4b724775
--- /dev/null
+++ b/content/posts/2009/06/04/images-of-may-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-04T18:52:12-07:00"
+title = "Images of May - 8"
+image = "/wp-content/uploads/Images%20of%20May/img_4808.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/05/images-of-may-9.md b/content/posts/2009/06/05/images-of-may-9.md
new file mode 100644
index 00000000..0b50c62a
--- /dev/null
+++ b/content/posts/2009/06/05/images-of-may-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-05T18:52:12-07:00"
+title = "Images of May - 9"
+image = "/wp-content/uploads/Images%20of%20May/img_4810.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/06/images-of-may-10.md b/content/posts/2009/06/06/images-of-may-10.md
new file mode 100644
index 00000000..2483c6e4
--- /dev/null
+++ b/content/posts/2009/06/06/images-of-may-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-06T18:52:12-07:00"
+title = "Images of May - 10"
+image = "/wp-content/uploads/Images%20of%20May/img_4987.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/07/images-of-may-11.md b/content/posts/2009/06/07/images-of-may-11.md
new file mode 100644
index 00000000..41e05232
--- /dev/null
+++ b/content/posts/2009/06/07/images-of-may-11.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-07T18:52:12-07:00"
+title = "Images of May - 11"
+image = "/wp-content/uploads/Images%20of%20May/img_4988.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/08/images-of-may-12.md b/content/posts/2009/06/08/images-of-may-12.md
new file mode 100644
index 00000000..8cb541cf
--- /dev/null
+++ b/content/posts/2009/06/08/images-of-may-12.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-08T18:52:12-07:00"
+title = "Images of May - 12"
+image = "/wp-content/uploads/Images%20of%20May/p5171310.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/09/backyard-exploration-1.md b/content/posts/2009/06/09/backyard-exploration-1.md
new file mode 100644
index 00000000..02ba3e1c
--- /dev/null
+++ b/content/posts/2009/06/09/backyard-exploration-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-09T12:52:12-07:00"
+title = "backyard exploration - 1"
+image = "/wp-content/uploads/backyard%20exploration/p5201358.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/10/backyard-exploration-2.md b/content/posts/2009/06/10/backyard-exploration-2.md
new file mode 100644
index 00000000..a6dfb7e4
--- /dev/null
+++ b/content/posts/2009/06/10/backyard-exploration-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-10T12:52:12-07:00"
+title = "backyard exploration - 2"
+image = "/wp-content/uploads/backyard%20exploration/p5201364.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/11/backyard-exploration-3.md b/content/posts/2009/06/11/backyard-exploration-3.md
new file mode 100644
index 00000000..e883fd88
--- /dev/null
+++ b/content/posts/2009/06/11/backyard-exploration-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-11T12:52:12-07:00"
+title = "backyard exploration - 3"
+image = "/wp-content/uploads/backyard%20exploration/p5201373.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/12/first-week-of-june-1.md b/content/posts/2009/06/12/first-week-of-june-1.md
new file mode 100644
index 00000000..ba26e8c4
--- /dev/null
+++ b/content/posts/2009/06/12/first-week-of-june-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-12T06:52:12-07:00"
+title = "First Week of June - 1"
+image = "/wp-content/uploads/First%20Week%20of%20June/img_5745.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/13/first-week-of-june-2.md b/content/posts/2009/06/13/first-week-of-june-2.md
new file mode 100644
index 00000000..9d0bc17f
--- /dev/null
+++ b/content/posts/2009/06/13/first-week-of-june-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-13T06:52:12-07:00"
+title = "First Week of June - 2"
+image = "/wp-content/uploads/First%20Week%20of%20June/img_5861.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/14/first-week-of-june-3.md b/content/posts/2009/06/14/first-week-of-june-3.md
new file mode 100644
index 00000000..fba9fab6
--- /dev/null
+++ b/content/posts/2009/06/14/first-week-of-june-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-14T06:52:12-07:00"
+title = "First Week of June - 3"
+image = "/wp-content/uploads/First%20Week%20of%20June/img_5866.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/15/first-week-of-june-4.md b/content/posts/2009/06/15/first-week-of-june-4.md
new file mode 100644
index 00000000..edfdb22f
--- /dev/null
+++ b/content/posts/2009/06/15/first-week-of-june-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-15T06:52:12-07:00"
+title = "First Week of June - 4"
+image = "/wp-content/uploads/First%20Week%20of%20June/img_5888.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/16/first-week-of-june-5.md b/content/posts/2009/06/16/first-week-of-june-5.md
new file mode 100644
index 00000000..6ad8922e
--- /dev/null
+++ b/content/posts/2009/06/16/first-week-of-june-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-16T06:52:12-07:00"
+title = "First Week of June - 5"
+image = "/wp-content/uploads/First%20Week%20of%20June/img_5896.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/17/first-week-of-june-6.md b/content/posts/2009/06/17/first-week-of-june-6.md
new file mode 100644
index 00000000..59f13f92
--- /dev/null
+++ b/content/posts/2009/06/17/first-week-of-june-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-17T06:52:12-07:00"
+title = "First Week of June - 6"
+image = "/wp-content/uploads/First%20Week%20of%20June/img_5920.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/18/first-week-of-june-7.md b/content/posts/2009/06/18/first-week-of-june-7.md
new file mode 100644
index 00000000..d0a42769
--- /dev/null
+++ b/content/posts/2009/06/18/first-week-of-june-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-18T06:52:12-07:00"
+title = "First Week of June - 7"
+image = "/wp-content/uploads/First%20Week%20of%20June/img_5924.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/19/first-week-of-june-8.md b/content/posts/2009/06/19/first-week-of-june-8.md
new file mode 100644
index 00000000..e87621bd
--- /dev/null
+++ b/content/posts/2009/06/19/first-week-of-june-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-19T06:52:12-07:00"
+title = "First Week of June - 8"
+image = "/wp-content/uploads/First%20Week%20of%20June/img_5962.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/20/first-week-of-june-9.md b/content/posts/2009/06/20/first-week-of-june-9.md
new file mode 100644
index 00000000..5d34ee87
--- /dev/null
+++ b/content/posts/2009/06/20/first-week-of-june-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-20T06:52:12-07:00"
+title = "First Week of June - 9"
+image = "/wp-content/uploads/First%20Week%20of%20June/img_5975.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/21/church-steeples-1.md b/content/posts/2009/06/21/church-steeples-1.md
new file mode 100644
index 00000000..1c9670eb
--- /dev/null
+++ b/content/posts/2009/06/21/church-steeples-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-21T00:52:12-07:00"
+title = "Church Steeples - 1"
+image = "/wp-content/uploads/Church%20Steeples/img_5140.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/22/church-steeples-2.md b/content/posts/2009/06/22/church-steeples-2.md
new file mode 100644
index 00000000..89b9c34b
--- /dev/null
+++ b/content/posts/2009/06/22/church-steeples-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-22T00:52:12-07:00"
+title = "Church Steeples - 2"
+image = "/wp-content/uploads/Church%20Steeples/img_5176.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/23/church-steeples-3.md b/content/posts/2009/06/23/church-steeples-3.md
new file mode 100644
index 00000000..2c919fe1
--- /dev/null
+++ b/content/posts/2009/06/23/church-steeples-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-23T00:52:12-07:00"
+title = "Church Steeples - 3"
+image = "/wp-content/uploads/Church%20Steeples/img_5192.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/24/church-steeples-4.md b/content/posts/2009/06/24/church-steeples-4.md
new file mode 100644
index 00000000..a5473588
--- /dev/null
+++ b/content/posts/2009/06/24/church-steeples-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-24T00:52:12-07:00"
+title = "Church Steeples - 4"
+image = "/wp-content/uploads/Church%20Steeples/img_5271.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/25/church-steeples-5.md b/content/posts/2009/06/25/church-steeples-5.md
new file mode 100644
index 00000000..a89dac2e
--- /dev/null
+++ b/content/posts/2009/06/25/church-steeples-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-25T00:52:12-07:00"
+title = "Church Steeples - 5"
+image = "/wp-content/uploads/Church%20Steeples/img_5374.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/26/church-steeples-6.md b/content/posts/2009/06/26/church-steeples-6.md
new file mode 100644
index 00000000..54046b81
--- /dev/null
+++ b/content/posts/2009/06/26/church-steeples-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-26T00:52:12-07:00"
+title = "Church Steeples - 6"
+image = "/wp-content/uploads/Church%20Steeples/img_5396.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/26/stain-glass-1.md b/content/posts/2009/06/26/stain-glass-1.md
new file mode 100644
index 00000000..8ca2e72e
--- /dev/null
+++ b/content/posts/2009/06/26/stain-glass-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-26T18:52:12-07:00"
+title = "Stain Glass - 1"
+image = "/wp-content/uploads/Stain%20Glass/img_5296.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/27/stain-glass-2.md b/content/posts/2009/06/27/stain-glass-2.md
new file mode 100644
index 00000000..7abd75e6
--- /dev/null
+++ b/content/posts/2009/06/27/stain-glass-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-27T18:52:12-07:00"
+title = "Stain Glass - 2"
+image = "/wp-content/uploads/Stain%20Glass/img_5297.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/28/stain-glass-3.md b/content/posts/2009/06/28/stain-glass-3.md
new file mode 100644
index 00000000..3145a1b4
--- /dev/null
+++ b/content/posts/2009/06/28/stain-glass-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-28T18:52:12-07:00"
+title = "Stain Glass - 3"
+image = "/wp-content/uploads/Stain%20Glass/img_5299.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/29/stain-glass-4.md b/content/posts/2009/06/29/stain-glass-4.md
new file mode 100644
index 00000000..371f71dd
--- /dev/null
+++ b/content/posts/2009/06/29/stain-glass-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-29T18:52:12-07:00"
+title = "Stain Glass - 4"
+image = "/wp-content/uploads/Stain%20Glass/img_5364.jpg"
++++
+
+
+
diff --git a/content/posts/2009/06/30/mid-summerodds-and-ends-1.md b/content/posts/2009/06/30/mid-summerodds-and-ends-1.md
new file mode 100644
index 00000000..490e2e6c
--- /dev/null
+++ b/content/posts/2009/06/30/mid-summerodds-and-ends-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-06-30T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 1"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/01-eaglerock-burger-joint.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/01/mid-summerodds-and-ends-2.md b/content/posts/2009/07/01/mid-summerodds-and-ends-2.md
new file mode 100644
index 00000000..9e7bf3a0
--- /dev/null
+++ b/content/posts/2009/07/01/mid-summerodds-and-ends-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-01T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 2"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/02-P7274029.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/02/mid-summerodds-and-ends-3.md b/content/posts/2009/07/02/mid-summerodds-and-ends-3.md
new file mode 100644
index 00000000..2a43f91b
--- /dev/null
+++ b/content/posts/2009/07/02/mid-summerodds-and-ends-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-02T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 3"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5142.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/03/mid-summerodds-and-ends-4.md b/content/posts/2009/07/03/mid-summerodds-and-ends-4.md
new file mode 100644
index 00000000..da396b86
--- /dev/null
+++ b/content/posts/2009/07/03/mid-summerodds-and-ends-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-03T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 4"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5890.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/04/mid-summerodds-and-ends-5.md b/content/posts/2009/07/04/mid-summerodds-and-ends-5.md
new file mode 100644
index 00000000..1523a684
--- /dev/null
+++ b/content/posts/2009/07/04/mid-summerodds-and-ends-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-04T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 5"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5961.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/05/mid-summerodds-and-ends-6.md b/content/posts/2009/07/05/mid-summerodds-and-ends-6.md
new file mode 100644
index 00000000..0a59a397
--- /dev/null
+++ b/content/posts/2009/07/05/mid-summerodds-and-ends-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-05T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 6"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5985.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/06/mid-summerodds-and-ends-7.md b/content/posts/2009/07/06/mid-summerodds-and-ends-7.md
new file mode 100644
index 00000000..8184cc42
--- /dev/null
+++ b/content/posts/2009/07/06/mid-summerodds-and-ends-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-06T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 7"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5987.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/07/mid-summerodds-and-ends-8.md b/content/posts/2009/07/07/mid-summerodds-and-ends-8.md
new file mode 100644
index 00000000..4ec1b53e
--- /dev/null
+++ b/content/posts/2009/07/07/mid-summerodds-and-ends-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-07T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 8"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5994.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/08/mid-summerodds-and-ends-9.md b/content/posts/2009/07/08/mid-summerodds-and-ends-9.md
new file mode 100644
index 00000000..58dde372
--- /dev/null
+++ b/content/posts/2009/07/08/mid-summerodds-and-ends-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-08T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 9"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5995.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/09/mid-summerodds-and-ends-10.md b/content/posts/2009/07/09/mid-summerodds-and-ends-10.md
new file mode 100644
index 00000000..85a232ee
--- /dev/null
+++ b/content/posts/2009/07/09/mid-summerodds-and-ends-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-09T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 10"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_6017.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/10/mid-summerodds-and-ends-11.md b/content/posts/2009/07/10/mid-summerodds-and-ends-11.md
new file mode 100644
index 00000000..54d4454b
--- /dev/null
+++ b/content/posts/2009/07/10/mid-summerodds-and-ends-11.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-10T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 11"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_6191.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/11/mid-summerodds-and-ends-12.md b/content/posts/2009/07/11/mid-summerodds-and-ends-12.md
new file mode 100644
index 00000000..ac150e11
--- /dev/null
+++ b/content/posts/2009/07/11/mid-summerodds-and-ends-12.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-11T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 12"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6211477.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/12/mid-summerodds-and-ends-13.md b/content/posts/2009/07/12/mid-summerodds-and-ends-13.md
new file mode 100644
index 00000000..d1d25994
--- /dev/null
+++ b/content/posts/2009/07/12/mid-summerodds-and-ends-13.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-12T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 13"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6211486.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/13/mid-summerodds-and-ends-14.md b/content/posts/2009/07/13/mid-summerodds-and-ends-14.md
new file mode 100644
index 00000000..c48644ab
--- /dev/null
+++ b/content/posts/2009/07/13/mid-summerodds-and-ends-14.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-13T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 14"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6211498.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/14/mid-summerodds-and-ends-15.md b/content/posts/2009/07/14/mid-summerodds-and-ends-15.md
new file mode 100644
index 00000000..0300e22d
--- /dev/null
+++ b/content/posts/2009/07/14/mid-summerodds-and-ends-15.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-14T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 15"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6261606.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/15/mid-summerodds-and-ends-16.md b/content/posts/2009/07/15/mid-summerodds-and-ends-16.md
new file mode 100644
index 00000000..18233dc4
--- /dev/null
+++ b/content/posts/2009/07/15/mid-summerodds-and-ends-16.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-15T12:52:12-07:00"
+title = "Mid SummerOdds and Ends - 16"
+image = "/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6261625.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/16/more-stain-glass-1.md b/content/posts/2009/07/16/more-stain-glass-1.md
new file mode 100644
index 00000000..055ed2a2
--- /dev/null
+++ b/content/posts/2009/07/16/more-stain-glass-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-16T06:52:12-07:00"
+title = "More Stain Glass - 1"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7051925.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/17/more-stain-glass-2.md b/content/posts/2009/07/17/more-stain-glass-2.md
new file mode 100644
index 00000000..4bb5b56e
--- /dev/null
+++ b/content/posts/2009/07/17/more-stain-glass-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-17T06:52:12-07:00"
+title = "More Stain Glass - 2"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7061972.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/18/more-stain-glass-3.md b/content/posts/2009/07/18/more-stain-glass-3.md
new file mode 100644
index 00000000..243efbfc
--- /dev/null
+++ b/content/posts/2009/07/18/more-stain-glass-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-18T06:52:12-07:00"
+title = "More Stain Glass - 3"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7061973.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/19/more-stain-glass-4.md b/content/posts/2009/07/19/more-stain-glass-4.md
new file mode 100644
index 00000000..edcdcde0
--- /dev/null
+++ b/content/posts/2009/07/19/more-stain-glass-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-19T06:52:12-07:00"
+title = "More Stain Glass - 4"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7061974.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/20/more-stain-glass-5.md b/content/posts/2009/07/20/more-stain-glass-5.md
new file mode 100644
index 00000000..5b40a309
--- /dev/null
+++ b/content/posts/2009/07/20/more-stain-glass-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-20T06:52:12-07:00"
+title = "More Stain Glass - 5"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7061975.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/21/more-stain-glass-6.md b/content/posts/2009/07/21/more-stain-glass-6.md
new file mode 100644
index 00000000..faa652d0
--- /dev/null
+++ b/content/posts/2009/07/21/more-stain-glass-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-21T06:52:12-07:00"
+title = "More Stain Glass - 6"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7061976.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/22/more-stain-glass-7.md b/content/posts/2009/07/22/more-stain-glass-7.md
new file mode 100644
index 00000000..3d5f27a6
--- /dev/null
+++ b/content/posts/2009/07/22/more-stain-glass-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-22T06:52:12-07:00"
+title = "More Stain Glass - 7"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7061978.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/23/more-stain-glass-8.md b/content/posts/2009/07/23/more-stain-glass-8.md
new file mode 100644
index 00000000..578fe5dd
--- /dev/null
+++ b/content/posts/2009/07/23/more-stain-glass-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-23T06:52:12-07:00"
+title = "More Stain Glass - 8"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7061979.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/24/more-stain-glass-9.md b/content/posts/2009/07/24/more-stain-glass-9.md
new file mode 100644
index 00000000..54498269
--- /dev/null
+++ b/content/posts/2009/07/24/more-stain-glass-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-24T06:52:12-07:00"
+title = "More Stain Glass - 9"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7061980.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/25/more-stain-glass-10.md b/content/posts/2009/07/25/more-stain-glass-10.md
new file mode 100644
index 00000000..1a12414b
--- /dev/null
+++ b/content/posts/2009/07/25/more-stain-glass-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-25T06:52:12-07:00"
+title = "More Stain Glass - 10"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7092397.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/26/more-stain-glass-11.md b/content/posts/2009/07/26/more-stain-glass-11.md
new file mode 100644
index 00000000..9fcc0462
--- /dev/null
+++ b/content/posts/2009/07/26/more-stain-glass-11.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-26T06:52:12-07:00"
+title = "More Stain Glass - 11"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7092459.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/27/more-stain-glass-12.md b/content/posts/2009/07/27/more-stain-glass-12.md
new file mode 100644
index 00000000..9a041f9b
--- /dev/null
+++ b/content/posts/2009/07/27/more-stain-glass-12.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-27T06:52:12-07:00"
+title = "More Stain Glass - 12"
+image = "/wp-content/uploads/More%20Stain%20Glass/p7102556.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/28/neon-1.md b/content/posts/2009/07/28/neon-1.md
new file mode 100644
index 00000000..1e25524c
--- /dev/null
+++ b/content/posts/2009/07/28/neon-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-28T00:52:12-07:00"
+title = "Neon - 1"
+image = "/wp-content/uploads/Neon/p7183063.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/29/neon-2.md b/content/posts/2009/07/29/neon-2.md
new file mode 100644
index 00000000..8563221c
--- /dev/null
+++ b/content/posts/2009/07/29/neon-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-29T00:52:12-07:00"
+title = "Neon - 2"
+image = "/wp-content/uploads/Neon/p7183066.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/30/neon-3.md b/content/posts/2009/07/30/neon-3.md
new file mode 100644
index 00000000..8ec305fe
--- /dev/null
+++ b/content/posts/2009/07/30/neon-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-30T00:52:12-07:00"
+title = "Neon - 3"
+image = "/wp-content/uploads/Neon/p7183137.jpg"
++++
+
+
+
diff --git a/content/posts/2009/07/31/neon-4.md b/content/posts/2009/07/31/neon-4.md
new file mode 100644
index 00000000..daf60c47
--- /dev/null
+++ b/content/posts/2009/07/31/neon-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-07-31T00:52:12-07:00"
+title = "Neon - 4"
+image = "/wp-content/uploads/Neon/p7183164.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/01/neon-5.md b/content/posts/2009/08/01/neon-5.md
new file mode 100644
index 00000000..aea2de29
--- /dev/null
+++ b/content/posts/2009/08/01/neon-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-01T00:52:12-07:00"
+title = "Neon - 5"
+image = "/wp-content/uploads/Neon/p7183181.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/01/post-rain-sunset-1.md b/content/posts/2009/08/01/post-rain-sunset-1.md
new file mode 100644
index 00000000..f11c259a
--- /dev/null
+++ b/content/posts/2009/08/01/post-rain-sunset-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-01T18:52:12-07:00"
+title = "Post Rain Sunset - 1"
+image = "/wp-content/uploads/Post%20Rain%20Sunset/p7182877.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/02/post-rain-sunset-2.md b/content/posts/2009/08/02/post-rain-sunset-2.md
new file mode 100644
index 00000000..8e57fd33
--- /dev/null
+++ b/content/posts/2009/08/02/post-rain-sunset-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-02T18:52:12-07:00"
+title = "Post Rain Sunset - 2"
+image = "/wp-content/uploads/Post%20Rain%20Sunset/p7182888.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/03/post-rain-sunset-3.md b/content/posts/2009/08/03/post-rain-sunset-3.md
new file mode 100644
index 00000000..591f0944
--- /dev/null
+++ b/content/posts/2009/08/03/post-rain-sunset-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-03T18:52:12-07:00"
+title = "Post Rain Sunset - 3"
+image = "/wp-content/uploads/Post%20Rain%20Sunset/p7182925.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/04/post-rain-sunset-4.md b/content/posts/2009/08/04/post-rain-sunset-4.md
new file mode 100644
index 00000000..22a9ef51
--- /dev/null
+++ b/content/posts/2009/08/04/post-rain-sunset-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-04T18:52:12-07:00"
+title = "Post Rain Sunset - 4"
+image = "/wp-content/uploads/Post%20Rain%20Sunset/p7182961.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/05/july-2009-1.md b/content/posts/2009/08/05/july-2009-1.md
new file mode 100644
index 00000000..24d7217e
--- /dev/null
+++ b/content/posts/2009/08/05/july-2009-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-05T12:52:12-07:00"
+title = "July 2009 - 1"
+image = "/wp-content/uploads/July%202009/p7021772.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/06/july-2009-2.md b/content/posts/2009/08/06/july-2009-2.md
new file mode 100644
index 00000000..c30b1ff7
--- /dev/null
+++ b/content/posts/2009/08/06/july-2009-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-06T12:52:12-07:00"
+title = "July 2009 - 2"
+image = "/wp-content/uploads/July%202009/p7041820.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/07/july-2009-3.md b/content/posts/2009/08/07/july-2009-3.md
new file mode 100644
index 00000000..cba6bbba
--- /dev/null
+++ b/content/posts/2009/08/07/july-2009-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-07T12:52:12-07:00"
+title = "July 2009 - 3"
+image = "/wp-content/uploads/July%202009/p7102557.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/08/july-2009-4.md b/content/posts/2009/08/08/july-2009-4.md
new file mode 100644
index 00000000..a553f08b
--- /dev/null
+++ b/content/posts/2009/08/08/july-2009-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-08T12:52:12-07:00"
+title = "July 2009 - 4"
+image = "/wp-content/uploads/July%202009/p7132764.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/09/july-2009-5.md b/content/posts/2009/08/09/july-2009-5.md
new file mode 100644
index 00000000..2b9d0712
--- /dev/null
+++ b/content/posts/2009/08/09/july-2009-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-09T12:52:12-07:00"
+title = "July 2009 - 5"
+image = "/wp-content/uploads/July%202009/p7182888.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/10/july-2009-6.md b/content/posts/2009/08/10/july-2009-6.md
new file mode 100644
index 00000000..f860fe73
--- /dev/null
+++ b/content/posts/2009/08/10/july-2009-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-10T12:52:12-07:00"
+title = "July 2009 - 6"
+image = "/wp-content/uploads/July%202009/p7183070.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/11/july-2009-7.md b/content/posts/2009/08/11/july-2009-7.md
new file mode 100644
index 00000000..7919b812
--- /dev/null
+++ b/content/posts/2009/08/11/july-2009-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-11T12:52:12-07:00"
+title = "July 2009 - 7"
+image = "/wp-content/uploads/July%202009/p7273415.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/12/july-2009-8.md b/content/posts/2009/08/12/july-2009-8.md
new file mode 100644
index 00000000..0b188d68
--- /dev/null
+++ b/content/posts/2009/08/12/july-2009-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-12T12:52:12-07:00"
+title = "July 2009 - 8"
+image = "/wp-content/uploads/July%202009/p7293436.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/13/july-2009-9.md b/content/posts/2009/08/13/july-2009-9.md
new file mode 100644
index 00000000..347b944a
--- /dev/null
+++ b/content/posts/2009/08/13/july-2009-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-13T12:52:12-07:00"
+title = "July 2009 - 9"
+image = "/wp-content/uploads/July%202009/p7303448.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/14/b-and-w-musings-1.md b/content/posts/2009/08/14/b-and-w-musings-1.md
new file mode 100644
index 00000000..33ca9ddd
--- /dev/null
+++ b/content/posts/2009/08/14/b-and-w-musings-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-14T06:52:12-07:00"
+title = "B and W Musings - 1"
+image = "/wp-content/uploads/B%20and%20W%20Musings/p8023503.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/15/b-and-w-musings-2.md b/content/posts/2009/08/15/b-and-w-musings-2.md
new file mode 100644
index 00000000..18f24a44
--- /dev/null
+++ b/content/posts/2009/08/15/b-and-w-musings-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-15T06:52:12-07:00"
+title = "B and W Musings - 2"
+image = "/wp-content/uploads/B%20and%20W%20Musings/p8023504.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/16/b-and-w-musings-3.md b/content/posts/2009/08/16/b-and-w-musings-3.md
new file mode 100644
index 00000000..2c53d34d
--- /dev/null
+++ b/content/posts/2009/08/16/b-and-w-musings-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-16T06:52:12-07:00"
+title = "B and W Musings - 3"
+image = "/wp-content/uploads/B%20and%20W%20Musings/p8023561.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/17/b-and-w-musings-4.md b/content/posts/2009/08/17/b-and-w-musings-4.md
new file mode 100644
index 00000000..169d297a
--- /dev/null
+++ b/content/posts/2009/08/17/b-and-w-musings-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-17T06:52:12-07:00"
+title = "B and W Musings - 4"
+image = "/wp-content/uploads/B%20and%20W%20Musings/p8023613.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/18/why-to-carry-a-camera-1.md b/content/posts/2009/08/18/why-to-carry-a-camera-1.md
new file mode 100644
index 00000000..7f9a56b0
--- /dev/null
+++ b/content/posts/2009/08/18/why-to-carry-a-camera-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-18T00:52:12-07:00"
+title = "Why to Carry a Camera - 1"
+image = "/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083826.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/19/why-to-carry-a-camera-2.md b/content/posts/2009/08/19/why-to-carry-a-camera-2.md
new file mode 100644
index 00000000..9d5ef78a
--- /dev/null
+++ b/content/posts/2009/08/19/why-to-carry-a-camera-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-19T00:52:12-07:00"
+title = "Why to Carry a Camera - 2"
+image = "/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083838.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/20/why-to-carry-a-camera-3.md b/content/posts/2009/08/20/why-to-carry-a-camera-3.md
new file mode 100644
index 00000000..a3b84648
--- /dev/null
+++ b/content/posts/2009/08/20/why-to-carry-a-camera-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-20T00:52:12-07:00"
+title = "Why to Carry a Camera - 3"
+image = "/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083845.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/21/why-to-carry-a-camera-4.md b/content/posts/2009/08/21/why-to-carry-a-camera-4.md
new file mode 100644
index 00000000..f12d23e4
--- /dev/null
+++ b/content/posts/2009/08/21/why-to-carry-a-camera-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-21T00:52:12-07:00"
+title = "Why to Carry a Camera - 4"
+image = "/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083975.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/22/why-to-carry-a-camera-5.md b/content/posts/2009/08/22/why-to-carry-a-camera-5.md
new file mode 100644
index 00000000..32f5f931
--- /dev/null
+++ b/content/posts/2009/08/22/why-to-carry-a-camera-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-22T00:52:12-07:00"
+title = "Why to Carry a Camera - 5"
+image = "/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083976.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/23/katy-summer-evening-1.md b/content/posts/2009/08/23/katy-summer-evening-1.md
new file mode 100644
index 00000000..5f9c2977
--- /dev/null
+++ b/content/posts/2009/08/23/katy-summer-evening-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-23T18:52:12-07:00"
+title = "Katy Summer Evening - 1"
+image = "/wp-content/uploads/Katy%20Summer%20Evening/p8104276.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/23/why-to-carry-a-camera-6.md b/content/posts/2009/08/23/why-to-carry-a-camera-6.md
new file mode 100644
index 00000000..df93bf62
--- /dev/null
+++ b/content/posts/2009/08/23/why-to-carry-a-camera-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-23T00:52:12-07:00"
+title = "Why to Carry a Camera - 6"
+image = "/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083977.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/24/katy-summer-evening-2.md b/content/posts/2009/08/24/katy-summer-evening-2.md
new file mode 100644
index 00000000..43832de1
--- /dev/null
+++ b/content/posts/2009/08/24/katy-summer-evening-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-24T18:52:12-07:00"
+title = "Katy Summer Evening - 2"
+image = "/wp-content/uploads/Katy%20Summer%20Evening/p8104277.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/25/katy-summer-evening-3.md b/content/posts/2009/08/25/katy-summer-evening-3.md
new file mode 100644
index 00000000..a05e7605
--- /dev/null
+++ b/content/posts/2009/08/25/katy-summer-evening-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-25T18:52:12-07:00"
+title = "Katy Summer Evening - 3"
+image = "/wp-content/uploads/Katy%20Summer%20Evening/p8104280.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/26/katy-summer-evening-4.md b/content/posts/2009/08/26/katy-summer-evening-4.md
new file mode 100644
index 00000000..6331fbb2
--- /dev/null
+++ b/content/posts/2009/08/26/katy-summer-evening-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-26T18:52:12-07:00"
+title = "Katy Summer Evening - 4"
+image = "/wp-content/uploads/Katy%20Summer%20Evening/p8104283.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/27/katy-summer-evening-5.md b/content/posts/2009/08/27/katy-summer-evening-5.md
new file mode 100644
index 00000000..f170b04e
--- /dev/null
+++ b/content/posts/2009/08/27/katy-summer-evening-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-27T18:52:12-07:00"
+title = "Katy Summer Evening - 5"
+image = "/wp-content/uploads/Katy%20Summer%20Evening/p8104289.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/28/beach-birds-1.md b/content/posts/2009/08/28/beach-birds-1.md
new file mode 100644
index 00000000..bd830860
--- /dev/null
+++ b/content/posts/2009/08/28/beach-birds-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-28T12:52:12-07:00"
+title = "Beach Birds - 1"
+image = "/wp-content/uploads/Beach%20Birds/p8144465.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/29/beach-birds-2.md b/content/posts/2009/08/29/beach-birds-2.md
new file mode 100644
index 00000000..35bc0e50
--- /dev/null
+++ b/content/posts/2009/08/29/beach-birds-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-29T12:52:12-07:00"
+title = "Beach Birds - 2"
+image = "/wp-content/uploads/Beach%20Birds/p8144519.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/30/beach-birds-3.md b/content/posts/2009/08/30/beach-birds-3.md
new file mode 100644
index 00000000..b34cb54c
--- /dev/null
+++ b/content/posts/2009/08/30/beach-birds-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-30T12:52:12-07:00"
+title = "Beach Birds - 3"
+image = "/wp-content/uploads/Beach%20Birds/p8154752.jpg"
++++
+
+
+
diff --git a/content/posts/2009/08/31/beach-birds-4.md b/content/posts/2009/08/31/beach-birds-4.md
new file mode 100644
index 00000000..cf5a350d
--- /dev/null
+++ b/content/posts/2009/08/31/beach-birds-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-08-31T12:52:12-07:00"
+title = "Beach Birds - 4"
+image = "/wp-content/uploads/Beach%20Birds/p8154778.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/01/beach-birds-5.md b/content/posts/2009/09/01/beach-birds-5.md
new file mode 100644
index 00000000..a1d8529a
--- /dev/null
+++ b/content/posts/2009/09/01/beach-birds-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-01T12:52:12-07:00"
+title = "Beach Birds - 5"
+image = "/wp-content/uploads/Beach%20Birds/p8154827.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/02/beach-birds-6.md b/content/posts/2009/09/02/beach-birds-6.md
new file mode 100644
index 00000000..1235301e
--- /dev/null
+++ b/content/posts/2009/09/02/beach-birds-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-02T12:52:12-07:00"
+title = "Beach Birds - 6"
+image = "/wp-content/uploads/Beach%20Birds/p8154833.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/03/backyard-challenge-1.md b/content/posts/2009/09/03/backyard-challenge-1.md
new file mode 100644
index 00000000..cb85dc6b
--- /dev/null
+++ b/content/posts/2009/09/03/backyard-challenge-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-03T06:52:12-07:00"
+title = "Backyard Challenge - 1"
+image = "/wp-content/uploads/Backyard%20Challenge/img_4107.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/04/backyard-challenge-2.md b/content/posts/2009/09/04/backyard-challenge-2.md
new file mode 100644
index 00000000..e5e51ac0
--- /dev/null
+++ b/content/posts/2009/09/04/backyard-challenge-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-04T06:52:12-07:00"
+title = "Backyard Challenge - 2"
+image = "/wp-content/uploads/Backyard%20Challenge/img_4125.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/05/backyard-challenge-3.md b/content/posts/2009/09/05/backyard-challenge-3.md
new file mode 100644
index 00000000..66895ad6
--- /dev/null
+++ b/content/posts/2009/09/05/backyard-challenge-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-05T06:52:12-07:00"
+title = "Backyard Challenge - 3"
+image = "/wp-content/uploads/Backyard%20Challenge/img_4126.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/06/backyard-challenge-4.md b/content/posts/2009/09/06/backyard-challenge-4.md
new file mode 100644
index 00000000..0147a93c
--- /dev/null
+++ b/content/posts/2009/09/06/backyard-challenge-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-06T06:52:12-07:00"
+title = "Backyard Challenge - 4"
+image = "/wp-content/uploads/Backyard%20Challenge/img_4140.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/07/backyard-challenge-5.md b/content/posts/2009/09/07/backyard-challenge-5.md
new file mode 100644
index 00000000..bdc6bcfa
--- /dev/null
+++ b/content/posts/2009/09/07/backyard-challenge-5.md
@@ -0,0 +1,9 @@
++++
+date = "2009-09-07T06:52:12-07:00"
+title = "Backyard Challenge - 5"
+image = "/albums/albums/Backyard%20Challenge/img_4164.jpg"
++++
+
+
+
+
diff --git a/content/posts/2009/09/08/dragonflies-1.md b/content/posts/2009/09/08/dragonflies-1.md
new file mode 100644
index 00000000..cf9fe418
--- /dev/null
+++ b/content/posts/2009/09/08/dragonflies-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-08T00:52:12-07:00"
+title = "Dragonflies - 1"
+image = "/wp-content/uploads/Dragonflies/img_4018.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/09/dragonflies-2.md b/content/posts/2009/09/09/dragonflies-2.md
new file mode 100644
index 00000000..d1ea5192
--- /dev/null
+++ b/content/posts/2009/09/09/dragonflies-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-09T00:52:12-07:00"
+title = "Dragonflies - 2"
+image = "/wp-content/uploads/Dragonflies/img_4035.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/10/dragonflies-3.md b/content/posts/2009/09/10/dragonflies-3.md
new file mode 100644
index 00000000..9d48d1c4
--- /dev/null
+++ b/content/posts/2009/09/10/dragonflies-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-10T00:52:12-07:00"
+title = "Dragonflies - 3"
+image = "/wp-content/uploads/Dragonflies/img_4126.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/11/dragonflies-4.md b/content/posts/2009/09/11/dragonflies-4.md
new file mode 100644
index 00000000..f4d51d6f
--- /dev/null
+++ b/content/posts/2009/09/11/dragonflies-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-11T00:52:12-07:00"
+title = "Dragonflies - 4"
+image = "/wp-content/uploads/Dragonflies/img_4247.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/12/dragonflies-5.md b/content/posts/2009/09/12/dragonflies-5.md
new file mode 100644
index 00000000..36e42add
--- /dev/null
+++ b/content/posts/2009/09/12/dragonflies-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-12T00:52:12-07:00"
+title = "Dragonflies - 5"
+image = "/wp-content/uploads/Dragonflies/img_4310.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/12/summer-flowers-1.md b/content/posts/2009/09/12/summer-flowers-1.md
new file mode 100644
index 00000000..4937d0d5
--- /dev/null
+++ b/content/posts/2009/09/12/summer-flowers-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-12T18:52:12-07:00"
+title = "Summer Flowers - 1"
+image = "/wp-content/uploads/Summer%20Flowers/img_4107.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/13/summer-flowers-2.md b/content/posts/2009/09/13/summer-flowers-2.md
new file mode 100644
index 00000000..1223e021
--- /dev/null
+++ b/content/posts/2009/09/13/summer-flowers-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-13T18:52:12-07:00"
+title = "Summer Flowers - 2"
+image = "/wp-content/uploads/Summer%20Flowers/img_4125.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/14/summer-flowers-3.md b/content/posts/2009/09/14/summer-flowers-3.md
new file mode 100644
index 00000000..403b75a2
--- /dev/null
+++ b/content/posts/2009/09/14/summer-flowers-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-14T18:52:12-07:00"
+title = "Summer Flowers - 3"
+image = "/wp-content/uploads/Summer%20Flowers/p8033622.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/15/summer-flowers-4.md b/content/posts/2009/09/15/summer-flowers-4.md
new file mode 100644
index 00000000..5dc9e7c8
--- /dev/null
+++ b/content/posts/2009/09/15/summer-flowers-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-15T18:52:12-07:00"
+title = "Summer Flowers - 4"
+image = "/wp-content/uploads/Summer%20Flowers/p8033625.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/16/summer-flowers-5.md b/content/posts/2009/09/16/summer-flowers-5.md
new file mode 100644
index 00000000..c2b21670
--- /dev/null
+++ b/content/posts/2009/09/16/summer-flowers-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-16T18:52:12-07:00"
+title = "Summer Flowers - 5"
+image = "/wp-content/uploads/Summer%20Flowers/p8033627.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/17/flowers-1.md b/content/posts/2009/09/17/flowers-1.md
new file mode 100644
index 00000000..c035680e
--- /dev/null
+++ b/content/posts/2009/09/17/flowers-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-17T12:52:12-07:00"
+title = "Flowers - 1"
+image = "/wp-content/uploads/Flowers/img_4511.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/18/flowers-2.md b/content/posts/2009/09/18/flowers-2.md
new file mode 100644
index 00000000..7380c678
--- /dev/null
+++ b/content/posts/2009/09/18/flowers-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-18T12:52:12-07:00"
+title = "Flowers - 2"
+image = "/wp-content/uploads/Flowers/img_4529.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/19/flowers-3.md b/content/posts/2009/09/19/flowers-3.md
new file mode 100644
index 00000000..c9d1505f
--- /dev/null
+++ b/content/posts/2009/09/19/flowers-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-19T12:52:12-07:00"
+title = "Flowers - 3"
+image = "/wp-content/uploads/Flowers/img_4531.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/21/flowers-4-2.md b/content/posts/2009/09/21/flowers-4-2.md
new file mode 100644
index 00000000..9176542a
--- /dev/null
+++ b/content/posts/2009/09/21/flowers-4-2.md
@@ -0,0 +1,9 @@
++++
+date = "2009-09-21T06:15:00-07:00"
+title = "Flowers - 4"
+image = "/wp-content/uploads/Flowers/img_4532.jpg"
++++
+
+
+
+There was a glitch publishing this image...sorry to be late
diff --git a/content/posts/2009/09/21/mushrooms-1.md b/content/posts/2009/09/21/mushrooms-1.md
new file mode 100644
index 00000000..83f7715b
--- /dev/null
+++ b/content/posts/2009/09/21/mushrooms-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-21T06:52:12-07:00"
+title = "Mushrooms - 1"
+image = "/wp-content/uploads/Mushrooms/img_4671.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/22/mushrooms-2.md b/content/posts/2009/09/22/mushrooms-2.md
new file mode 100644
index 00000000..c9b981a2
--- /dev/null
+++ b/content/posts/2009/09/22/mushrooms-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-22T06:52:12-07:00"
+title = "Mushrooms - 2"
+image = "/wp-content/uploads/Mushrooms/img_4675.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/23/mushrooms-3.md b/content/posts/2009/09/23/mushrooms-3.md
new file mode 100644
index 00000000..950ba57c
--- /dev/null
+++ b/content/posts/2009/09/23/mushrooms-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-23T06:52:12-07:00"
+title = "Mushrooms - 3"
+image = "/wp-content/uploads/Mushrooms/img_4676.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/24/pictures-of-summer-red-don-juan.md b/content/posts/2009/09/24/pictures-of-summer-red-don-juan.md
new file mode 100644
index 00000000..a596db15
--- /dev/null
+++ b/content/posts/2009/09/24/pictures-of-summer-red-don-juan.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-24T00:52:12-07:00"
+title = "Pictures of Summer : Red Don Juan"
+image = "/wp-content/uploads/Pictures%20of%20Summer/img_3654.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/25/pictures-of-summer-rose.md b/content/posts/2009/09/25/pictures-of-summer-rose.md
new file mode 100644
index 00000000..f4934da5
--- /dev/null
+++ b/content/posts/2009/09/25/pictures-of-summer-rose.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-25T00:52:12-07:00"
+title = "Pictures of Summer : Rose"
+image = "/wp-content/uploads/Pictures%20of%20Summer/img_3656.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/26/pictures-of-summer-busy-as-a-bee.md b/content/posts/2009/09/26/pictures-of-summer-busy-as-a-bee.md
new file mode 100644
index 00000000..43726a3c
--- /dev/null
+++ b/content/posts/2009/09/26/pictures-of-summer-busy-as-a-bee.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-26T00:52:12-07:00"
+title = "Pictures of Summer : Busy as a Bee"
+image = "/wp-content/uploads/Pictures%20of%20Summer/img_3703.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/27/pictures-of-summer-a-new-day-dawns.md b/content/posts/2009/09/27/pictures-of-summer-a-new-day-dawns.md
new file mode 100644
index 00000000..ad283b8b
--- /dev/null
+++ b/content/posts/2009/09/27/pictures-of-summer-a-new-day-dawns.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-27T00:52:12-07:00"
+title = "Pictures of Summer : A New Day Dawns"
+image = "/wp-content/uploads/Pictures%20of%20Summer/img_3769.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/28/pictures-of-summer-roadside-color.md b/content/posts/2009/09/28/pictures-of-summer-roadside-color.md
new file mode 100644
index 00000000..42616a3f
--- /dev/null
+++ b/content/posts/2009/09/28/pictures-of-summer-roadside-color.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-28T00:52:12-07:00"
+title = "Pictures of Summer : Roadside Color"
+image = "/wp-content/uploads/Pictures%20of%20Summer/p8114292.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/29/pictures-of-summer-morning-fishing.md b/content/posts/2009/09/29/pictures-of-summer-morning-fishing.md
new file mode 100644
index 00000000..675594a2
--- /dev/null
+++ b/content/posts/2009/09/29/pictures-of-summer-morning-fishing.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-29T00:52:12-07:00"
+title = "Pictures of Summer : Morning Fishing"
+image = "/wp-content/uploads/Pictures%20of%20Summer/p8154767.jpg"
++++
+
+
+
diff --git a/content/posts/2009/09/30/pictures-of-summer-footprints-in-the-sand.md b/content/posts/2009/09/30/pictures-of-summer-footprints-in-the-sand.md
new file mode 100644
index 00000000..0144157c
--- /dev/null
+++ b/content/posts/2009/09/30/pictures-of-summer-footprints-in-the-sand.md
@@ -0,0 +1,8 @@
++++
+date = "2009-09-30T00:52:12-07:00"
+title = "Pictures of Summer : Footprints in the Sand"
+image = "/wp-content/uploads/Pictures%20of%20Summer/p8154774.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/01/pictures-of-summer-deck-chair.md b/content/posts/2009/10/01/pictures-of-summer-deck-chair.md
new file mode 100644
index 00000000..35bc4152
--- /dev/null
+++ b/content/posts/2009/10/01/pictures-of-summer-deck-chair.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-01T00:52:12-07:00"
+title = "Pictures of Summer : Deck Chair"
+image = "/wp-content/uploads/Pictures%20of%20Summer/p8154797.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/02/october-1.md b/content/posts/2009/10/02/october-1.md
new file mode 100644
index 00000000..84cb6a39
--- /dev/null
+++ b/content/posts/2009/10/02/october-1.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-02T18:52:12-07:00"
+title = "October 1 :"
+image = "/wp-content/uploads/October%201/img_4858.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/02/pictures-of-summer-sand-towers.md b/content/posts/2009/10/02/pictures-of-summer-sand-towers.md
new file mode 100644
index 00000000..644f65de
--- /dev/null
+++ b/content/posts/2009/10/02/pictures-of-summer-sand-towers.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-02T00:52:12-07:00"
+title = "Pictures of Summer : Sand Towers"
+image = "/wp-content/uploads/Pictures%20of%20Summer/p8154850.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/03/october-1-2.md b/content/posts/2009/10/03/october-1-2.md
new file mode 100644
index 00000000..956cd856
--- /dev/null
+++ b/content/posts/2009/10/03/october-1-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-03T18:52:12-07:00"
+title = "October 1 :"
+image = "/wp-content/uploads/October%201/img_4875.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/04/october-1-3.md b/content/posts/2009/10/04/october-1-3.md
new file mode 100644
index 00000000..02ebe151
--- /dev/null
+++ b/content/posts/2009/10/04/october-1-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-04T18:52:12-07:00"
+title = "October 1 :"
+image = "/wp-content/uploads/October%201/img_4880.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/05/october-1-4.md b/content/posts/2009/10/05/october-1-4.md
new file mode 100644
index 00000000..bba0d45a
--- /dev/null
+++ b/content/posts/2009/10/05/october-1-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-05T18:52:12-07:00"
+title = "October 1 :"
+image = "/wp-content/uploads/October%201/img_4892.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/06/october-1-5.md b/content/posts/2009/10/06/october-1-5.md
new file mode 100644
index 00000000..b81cf3d3
--- /dev/null
+++ b/content/posts/2009/10/06/october-1-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-06T18:52:12-07:00"
+title = "October 1 :"
+image = "/wp-content/uploads/October%201/img_4901.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/07/black-and-yellow-flower.md b/content/posts/2009/10/07/black-and-yellow-flower.md
new file mode 100644
index 00000000..9278d7b8
--- /dev/null
+++ b/content/posts/2009/10/07/black-and-yellow-flower.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-07T12:52:12-07:00"
+title = "Black and Yellow Flower :"
+image = "/wp-content/uploads/Black%20and%20Yellow%20Flower/img_4736.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/08/black-and-yellow-flower-2.md b/content/posts/2009/10/08/black-and-yellow-flower-2.md
new file mode 100644
index 00000000..56bde0a2
--- /dev/null
+++ b/content/posts/2009/10/08/black-and-yellow-flower-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-08T12:52:12-07:00"
+title = "Black and Yellow Flower :"
+image = "/wp-content/uploads/Black%20and%20Yellow%20Flower/img_4737.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/09/black-and-yellow-flower-3.md b/content/posts/2009/10/09/black-and-yellow-flower-3.md
new file mode 100644
index 00000000..1d2ebe4a
--- /dev/null
+++ b/content/posts/2009/10/09/black-and-yellow-flower-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-09T12:52:12-07:00"
+title = "Black and Yellow Flower :"
+image = "/wp-content/uploads/Black%20and%20Yellow%20Flower/img_4744.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/10/trf-2009.md b/content/posts/2009/10/10/trf-2009.md
new file mode 100644
index 00000000..8f562387
--- /dev/null
+++ b/content/posts/2009/10/10/trf-2009.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-10T06:52:12-07:00"
+title = "TRF - 2009 :"
+image = "/wp-content/uploads/TRF%20-%202009/pa105579.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/11/trf-2009-2.md b/content/posts/2009/10/11/trf-2009-2.md
new file mode 100644
index 00000000..4e71e118
--- /dev/null
+++ b/content/posts/2009/10/11/trf-2009-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-11T06:52:12-07:00"
+title = "TRF - 2009 :"
+image = "/wp-content/uploads/TRF%20-%202009/pa105580.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/12/trf-2009-3.md b/content/posts/2009/10/12/trf-2009-3.md
new file mode 100644
index 00000000..ffa171e0
--- /dev/null
+++ b/content/posts/2009/10/12/trf-2009-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-12T06:52:12-07:00"
+title = "TRF - 2009 :"
+image = "/wp-content/uploads/TRF%20-%202009/pa105583.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/13/trf-2009-4.md b/content/posts/2009/10/13/trf-2009-4.md
new file mode 100644
index 00000000..7ab816e3
--- /dev/null
+++ b/content/posts/2009/10/13/trf-2009-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-13T06:52:12-07:00"
+title = "TRF - 2009 :"
+image = "/wp-content/uploads/TRF%20-%202009/pa105627.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/14/trf-2009-5.md b/content/posts/2009/10/14/trf-2009-5.md
new file mode 100644
index 00000000..a2aec2ae
--- /dev/null
+++ b/content/posts/2009/10/14/trf-2009-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-14T06:52:12-07:00"
+title = "TRF - 2009 :"
+image = "/wp-content/uploads/TRF%20-%202009/pa105638.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/15/trf-2009-6.md b/content/posts/2009/10/15/trf-2009-6.md
new file mode 100644
index 00000000..60038162
--- /dev/null
+++ b/content/posts/2009/10/15/trf-2009-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-15T06:52:12-07:00"
+title = "TRF - 2009 :"
+image = "/wp-content/uploads/TRF%20-%202009/pa105661.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/16/trf-2009-7.md b/content/posts/2009/10/16/trf-2009-7.md
new file mode 100644
index 00000000..6f668457
--- /dev/null
+++ b/content/posts/2009/10/16/trf-2009-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-16T06:52:12-07:00"
+title = "TRF - 2009 :"
+image = "/wp-content/uploads/TRF%20-%202009/pa105770.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/17/trf-2009-8.md b/content/posts/2009/10/17/trf-2009-8.md
new file mode 100644
index 00000000..a8f181fb
--- /dev/null
+++ b/content/posts/2009/10/17/trf-2009-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-17T06:52:12-07:00"
+title = "TRF - 2009 :"
+image = "/wp-content/uploads/TRF%20-%202009/pa105772.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/18/forbidden-gardens-lion-stands-gaurd.md b/content/posts/2009/10/18/forbidden-gardens-lion-stands-gaurd.md
new file mode 100644
index 00000000..6a83c24f
--- /dev/null
+++ b/content/posts/2009/10/18/forbidden-gardens-lion-stands-gaurd.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-18T00:52:12-07:00"
+title = "Forbidden Gardens : Lion Stands Gaurd"
+image = "/wp-content/uploads/Forbidden%20Gardens/img_4954.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/19/forbidden-gardens-dragon-on-lookout.md b/content/posts/2009/10/19/forbidden-gardens-dragon-on-lookout.md
new file mode 100644
index 00000000..bf116f04
--- /dev/null
+++ b/content/posts/2009/10/19/forbidden-gardens-dragon-on-lookout.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-19T00:52:12-07:00"
+title = "Forbidden Gardens : Dragon on Lookout"
+image = "/wp-content/uploads/Forbidden%20Gardens/img_4959.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/20/forbidden-gardens-quiet-before-the-journey.md b/content/posts/2009/10/20/forbidden-gardens-quiet-before-the-journey.md
new file mode 100644
index 00000000..0150ab07
--- /dev/null
+++ b/content/posts/2009/10/20/forbidden-gardens-quiet-before-the-journey.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-20T00:52:12-07:00"
+title = "Forbidden Gardens : Quiet before the Journey"
+image = "/wp-content/uploads/Forbidden%20Gardens/img_5006.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/21/forbidden-gardens-shattered-soul.md b/content/posts/2009/10/21/forbidden-gardens-shattered-soul.md
new file mode 100644
index 00000000..c4f2ac34
--- /dev/null
+++ b/content/posts/2009/10/21/forbidden-gardens-shattered-soul.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-21T00:52:12-07:00"
+title = "Forbidden Gardens : Shattered Soul"
+image = "/wp-content/uploads/Forbidden%20Gardens/img_5044.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/22/forbidden-gardens-monks-praying.md b/content/posts/2009/10/22/forbidden-gardens-monks-praying.md
new file mode 100644
index 00000000..b16acf38
--- /dev/null
+++ b/content/posts/2009/10/22/forbidden-gardens-monks-praying.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-22T00:52:12-07:00"
+title = "Forbidden Gardens : Monks Praying"
+image = "/wp-content/uploads/Forbidden%20Gardens/img_5208.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/23/forbidden-gardens-ruins.md b/content/posts/2009/10/23/forbidden-gardens-ruins.md
new file mode 100644
index 00000000..1531fc89
--- /dev/null
+++ b/content/posts/2009/10/23/forbidden-gardens-ruins.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-23T00:52:12-07:00"
+title = "Forbidden Gardens : Ruins"
+image = "/wp-content/uploads/Forbidden%20Gardens/img_5222.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/24/forbidden-gardens-gargoyle-water-spout.md b/content/posts/2009/10/24/forbidden-gardens-gargoyle-water-spout.md
new file mode 100644
index 00000000..fcd407ac
--- /dev/null
+++ b/content/posts/2009/10/24/forbidden-gardens-gargoyle-water-spout.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-24T00:52:12-07:00"
+title = "Forbidden Gardens : Gargoyle Water Spout"
+image = "/wp-content/uploads/Forbidden%20Gardens/pa055399.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/25/forbidden-gardens-horse-forever-ready.md b/content/posts/2009/10/25/forbidden-gardens-horse-forever-ready.md
new file mode 100644
index 00000000..9d983cda
--- /dev/null
+++ b/content/posts/2009/10/25/forbidden-gardens-horse-forever-ready.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-25T00:52:12-07:00"
+title = "Forbidden Gardens : Horse forever ready"
+image = "/wp-content/uploads/Forbidden%20Gardens/pa055413.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/26/forbidden-gardens-army-stands-ready.md b/content/posts/2009/10/26/forbidden-gardens-army-stands-ready.md
new file mode 100644
index 00000000..eb304a05
--- /dev/null
+++ b/content/posts/2009/10/26/forbidden-gardens-army-stands-ready.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-26T00:52:12-07:00"
+title = "Forbidden Gardens : Army stands ready"
+image = "/wp-content/uploads/Forbidden%20Gardens/pa055427.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/27/forbidden-gardens-thoughtfull-soldier.md b/content/posts/2009/10/27/forbidden-gardens-thoughtfull-soldier.md
new file mode 100644
index 00000000..0fe28f8a
--- /dev/null
+++ b/content/posts/2009/10/27/forbidden-gardens-thoughtfull-soldier.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-27T00:52:12-07:00"
+title = "Forbidden Gardens : Thoughtfull Soldier"
+image = "/wp-content/uploads/Forbidden%20Gardens/pa055449.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/28/end-of-october.md b/content/posts/2009/10/28/end-of-october.md
new file mode 100644
index 00000000..043cd48d
--- /dev/null
+++ b/content/posts/2009/10/28/end-of-october.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-28T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/img_5267.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/28/forbidden-gardens-fallen-in-court.md b/content/posts/2009/10/28/forbidden-gardens-fallen-in-court.md
new file mode 100644
index 00000000..e626fcd5
--- /dev/null
+++ b/content/posts/2009/10/28/forbidden-gardens-fallen-in-court.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-28T00:52:12-07:00"
+title = "Forbidden Gardens : Fallen in Court"
+image = "/wp-content/uploads/Forbidden%20Gardens/pa055527.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/29/end-of-october-2.md b/content/posts/2009/10/29/end-of-october-2.md
new file mode 100644
index 00000000..1adef60b
--- /dev/null
+++ b/content/posts/2009/10/29/end-of-october-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-29T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/img_5286.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/30/end-of-october-3.md b/content/posts/2009/10/30/end-of-october-3.md
new file mode 100644
index 00000000..25ce9c7d
--- /dev/null
+++ b/content/posts/2009/10/30/end-of-october-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-30T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/img_5287.jpg"
++++
+
+
+
diff --git a/content/posts/2009/10/31/end-of-october-4.md b/content/posts/2009/10/31/end-of-october-4.md
new file mode 100644
index 00000000..0ff706c7
--- /dev/null
+++ b/content/posts/2009/10/31/end-of-october-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-10-31T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/img_5294.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/01/end-of-october-5.md b/content/posts/2009/11/01/end-of-october-5.md
new file mode 100644
index 00000000..f7116fed
--- /dev/null
+++ b/content/posts/2009/11/01/end-of-october-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-01T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/img_5357.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/02/end-of-october-6.md b/content/posts/2009/11/02/end-of-october-6.md
new file mode 100644
index 00000000..1d567310
--- /dev/null
+++ b/content/posts/2009/11/02/end-of-october-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-02T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/img_5407.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/03/end-of-october-7.md b/content/posts/2009/11/03/end-of-october-7.md
new file mode 100644
index 00000000..61665c16
--- /dev/null
+++ b/content/posts/2009/11/03/end-of-october-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-03T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/img_5430.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/04/end-of-october-8.md b/content/posts/2009/11/04/end-of-october-8.md
new file mode 100644
index 00000000..314e4057
--- /dev/null
+++ b/content/posts/2009/11/04/end-of-october-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-04T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/img_5670.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/05/end-of-october-9.md b/content/posts/2009/11/05/end-of-october-9.md
new file mode 100644
index 00000000..7ff31e14
--- /dev/null
+++ b/content/posts/2009/11/05/end-of-october-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-05T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/pa115811.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/06/end-of-october-10.md b/content/posts/2009/11/06/end-of-october-10.md
new file mode 100644
index 00000000..9696ec20
--- /dev/null
+++ b/content/posts/2009/11/06/end-of-october-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-06T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/pa176009.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/07/end-of-october-11.md b/content/posts/2009/11/07/end-of-october-11.md
new file mode 100644
index 00000000..5102bd3b
--- /dev/null
+++ b/content/posts/2009/11/07/end-of-october-11.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-07T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/pa226172.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/08/end-of-october-12.md b/content/posts/2009/11/08/end-of-october-12.md
new file mode 100644
index 00000000..d8199489
--- /dev/null
+++ b/content/posts/2009/11/08/end-of-october-12.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-08T18:52:12-07:00"
+title = "End of October :"
+image = "/wp-content/uploads/End%20of%20October/pa276229.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/09/random-in-november.md b/content/posts/2009/11/09/random-in-november.md
new file mode 100644
index 00000000..8fecd171
--- /dev/null
+++ b/content/posts/2009/11/09/random-in-november.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-09T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/PIC-0136.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/10/random-in-november-2.md b/content/posts/2009/11/10/random-in-november-2.md
new file mode 100644
index 00000000..78416b25
--- /dev/null
+++ b/content/posts/2009/11/10/random-in-november-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-10T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5001.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/11/random-in-november-3.md b/content/posts/2009/11/11/random-in-november-3.md
new file mode 100644
index 00000000..d4d4acff
--- /dev/null
+++ b/content/posts/2009/11/11/random-in-november-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-11T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5245.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/12/random-in-november-4.md b/content/posts/2009/11/12/random-in-november-4.md
new file mode 100644
index 00000000..2ca100af
--- /dev/null
+++ b/content/posts/2009/11/12/random-in-november-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-12T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5247.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/13/random-in-november-5.md b/content/posts/2009/11/13/random-in-november-5.md
new file mode 100644
index 00000000..56b225f0
--- /dev/null
+++ b/content/posts/2009/11/13/random-in-november-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-13T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5267.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/14/random-in-november-6.md b/content/posts/2009/11/14/random-in-november-6.md
new file mode 100644
index 00000000..b7f3ab8a
--- /dev/null
+++ b/content/posts/2009/11/14/random-in-november-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-14T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5287.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/15/random-in-november-7.md b/content/posts/2009/11/15/random-in-november-7.md
new file mode 100644
index 00000000..6976a4be
--- /dev/null
+++ b/content/posts/2009/11/15/random-in-november-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-15T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5294.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/16/random-in-november-8.md b/content/posts/2009/11/16/random-in-november-8.md
new file mode 100644
index 00000000..d7324da3
--- /dev/null
+++ b/content/posts/2009/11/16/random-in-november-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-16T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5670.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/17/random-in-november-9.md b/content/posts/2009/11/17/random-in-november-9.md
new file mode 100644
index 00000000..2d95f74d
--- /dev/null
+++ b/content/posts/2009/11/17/random-in-november-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-17T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5673.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/18/random-in-november-10.md b/content/posts/2009/11/18/random-in-november-10.md
new file mode 100644
index 00000000..ac553ae0
--- /dev/null
+++ b/content/posts/2009/11/18/random-in-november-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-18T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5697-processes.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/19/random-in-november-11.md b/content/posts/2009/11/19/random-in-november-11.md
new file mode 100644
index 00000000..c1afec8c
--- /dev/null
+++ b/content/posts/2009/11/19/random-in-november-11.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-19T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5803.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/20/random-in-november-12.md b/content/posts/2009/11/20/random-in-november-12.md
new file mode 100644
index 00000000..691e55ba
--- /dev/null
+++ b/content/posts/2009/11/20/random-in-november-12.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-20T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5825.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/21/random-in-november-13.md b/content/posts/2009/11/21/random-in-november-13.md
new file mode 100644
index 00000000..f053901b
--- /dev/null
+++ b/content/posts/2009/11/21/random-in-november-13.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-21T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5881.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/22/random-in-november-14.md b/content/posts/2009/11/22/random-in-november-14.md
new file mode 100644
index 00000000..d0376313
--- /dev/null
+++ b/content/posts/2009/11/22/random-in-november-14.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-22T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/img_5883.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/23/random-in-november-15.md b/content/posts/2009/11/23/random-in-november-15.md
new file mode 100644
index 00000000..774d5be8
--- /dev/null
+++ b/content/posts/2009/11/23/random-in-november-15.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-23T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/pa135833.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/24/random-in-november-16.md b/content/posts/2009/11/24/random-in-november-16.md
new file mode 100644
index 00000000..e5e463a2
--- /dev/null
+++ b/content/posts/2009/11/24/random-in-november-16.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-24T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/pa176009.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/25/random-in-november-17.md b/content/posts/2009/11/25/random-in-november-17.md
new file mode 100644
index 00000000..a07d692a
--- /dev/null
+++ b/content/posts/2009/11/25/random-in-november-17.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-25T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/pa226180.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/26/random-in-november-18.md b/content/posts/2009/11/26/random-in-november-18.md
new file mode 100644
index 00000000..c95bd90e
--- /dev/null
+++ b/content/posts/2009/11/26/random-in-november-18.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-26T12:52:12-07:00"
+title = "Random in November :"
+image = "/wp-content/uploads/Random%20in%20November/pa266209.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/27/time-warp-2007.md b/content/posts/2009/11/27/time-warp-2007.md
new file mode 100644
index 00000000..b0d0bd06
--- /dev/null
+++ b/content/posts/2009/11/27/time-warp-2007.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-27T06:52:12-07:00"
+title = "Time Warp - 2007 :"
+image = "/wp-content/uploads/Time%20Warp%20-%202007/P3020312.JPG"
++++
+
+
+
diff --git a/content/posts/2009/11/28/time-warp-2007-2.md b/content/posts/2009/11/28/time-warp-2007-2.md
new file mode 100644
index 00000000..45db452f
--- /dev/null
+++ b/content/posts/2009/11/28/time-warp-2007-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-28T06:52:12-07:00"
+title = "Time Warp - 2007 :"
+image = "/wp-content/uploads/Time%20Warp%20-%202007/P3020324.JPG"
++++
+
+
+
diff --git a/content/posts/2009/11/29/time-warp-2007-3.md b/content/posts/2009/11/29/time-warp-2007-3.md
new file mode 100644
index 00000000..610cbc51
--- /dev/null
+++ b/content/posts/2009/11/29/time-warp-2007-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-29T06:52:12-07:00"
+title = "Time Warp - 2007 :"
+image = "/wp-content/uploads/Time%20Warp%20-%202007/P3230687.jpg"
++++
+
+
+
diff --git a/content/posts/2009/11/30/time-warp-2007-4.md b/content/posts/2009/11/30/time-warp-2007-4.md
new file mode 100644
index 00000000..d182fdf8
--- /dev/null
+++ b/content/posts/2009/11/30/time-warp-2007-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-11-30T06:52:12-07:00"
+title = "Time Warp - 2007 :"
+image = "/wp-content/uploads/Time%20Warp%20-%202007/P4050996.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/01/time-warp-2007-5.md b/content/posts/2009/12/01/time-warp-2007-5.md
new file mode 100644
index 00000000..e4e83d71
--- /dev/null
+++ b/content/posts/2009/12/01/time-warp-2007-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-01T06:52:12-07:00"
+title = "Time Warp - 2007 :"
+image = "/wp-content/uploads/Time%20Warp%20-%202007/P8193358.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/02/time-warp-2007-6.md b/content/posts/2009/12/02/time-warp-2007-6.md
new file mode 100644
index 00000000..ecb6e53a
--- /dev/null
+++ b/content/posts/2009/12/02/time-warp-2007-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-02T06:52:12-07:00"
+title = "Time Warp - 2007 :"
+image = "/wp-content/uploads/Time%20Warp%20-%202007/P8213403.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/03/time-warp-2007-7.md b/content/posts/2009/12/03/time-warp-2007-7.md
new file mode 100644
index 00000000..4312a623
--- /dev/null
+++ b/content/posts/2009/12/03/time-warp-2007-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-03T06:52:12-07:00"
+title = "Time Warp - 2007 :"
+image = "/wp-content/uploads/Time%20Warp%20-%202007/p8313472.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/04/end-of-november.md b/content/posts/2009/12/04/end-of-november.md
new file mode 100644
index 00000000..fc083bab
--- /dev/null
+++ b/content/posts/2009/12/04/end-of-november.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-04T00:52:12-07:00"
+title = "End of November :"
+image = "/wp-content/uploads/End%20of%20November/img_6143.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/05/end-of-november-2.md b/content/posts/2009/12/05/end-of-november-2.md
new file mode 100644
index 00000000..53f01654
--- /dev/null
+++ b/content/posts/2009/12/05/end-of-november-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-05T00:52:12-07:00"
+title = "End of November :"
+image = "/wp-content/uploads/End%20of%20November/pb266733.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/06/end-of-november-3.md b/content/posts/2009/12/06/end-of-november-3.md
new file mode 100644
index 00000000..93957cf6
--- /dev/null
+++ b/content/posts/2009/12/06/end-of-november-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-06T00:52:12-07:00"
+title = "End of November :"
+image = "/wp-content/uploads/End%20of%20November/pb266739.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/07/end-of-november-4.md b/content/posts/2009/12/07/end-of-november-4.md
new file mode 100644
index 00000000..ad6e5cef
--- /dev/null
+++ b/content/posts/2009/12/07/end-of-november-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-07T00:52:12-07:00"
+title = "End of November :"
+image = "/wp-content/uploads/End%20of%20November/pb266740.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/08/end-of-november-5.md b/content/posts/2009/12/08/end-of-november-5.md
new file mode 100644
index 00000000..c31186e8
--- /dev/null
+++ b/content/posts/2009/12/08/end-of-november-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-08T00:52:12-07:00"
+title = "End of November :"
+image = "/wp-content/uploads/End%20of%20November/pb266742.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/09/end-of-november-6.md b/content/posts/2009/12/09/end-of-november-6.md
new file mode 100644
index 00000000..8ff50197
--- /dev/null
+++ b/content/posts/2009/12/09/end-of-november-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-09T00:52:12-07:00"
+title = "End of November :"
+image = "/wp-content/uploads/End%20of%20November/pb266797.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/10/end-of-november-7.md b/content/posts/2009/12/10/end-of-november-7.md
new file mode 100644
index 00000000..ee761e94
--- /dev/null
+++ b/content/posts/2009/12/10/end-of-november-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-10T00:52:12-07:00"
+title = "End of November :"
+image = "/wp-content/uploads/End%20of%20November/pb266835.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/11/end-of-november-8.md b/content/posts/2009/12/11/end-of-november-8.md
new file mode 100644
index 00000000..9194bcef
--- /dev/null
+++ b/content/posts/2009/12/11/end-of-november-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-11T00:52:12-07:00"
+title = "End of November :"
+image = "/wp-content/uploads/End%20of%20November/pb286902.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/12/end-of-november-9.md b/content/posts/2009/12/12/end-of-november-9.md
new file mode 100644
index 00000000..6f063e0d
--- /dev/null
+++ b/content/posts/2009/12/12/end-of-november-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-12T00:52:12-07:00"
+title = "End of November :"
+image = "/wp-content/uploads/End%20of%20November/pb286939.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/13/end-of-november-10.md b/content/posts/2009/12/13/end-of-november-10.md
new file mode 100644
index 00000000..24fae127
--- /dev/null
+++ b/content/posts/2009/12/13/end-of-november-10.md
@@ -0,0 +1,9 @@
++++
+date = "2009-12-13T00:52:12-07:00"
+title = "End of November :"
+image = "/albums/albums/End%20of%20November/pb286943.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2009/12/13/end-of-the-year.md b/content/posts/2009/12/13/end-of-the-year.md
new file mode 100644
index 00000000..e5926fad
--- /dev/null
+++ b/content/posts/2009/12/13/end-of-the-year.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-13T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/img_5294-2.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/14/end-of-the-year-2.md b/content/posts/2009/12/14/end-of-the-year-2.md
new file mode 100644
index 00000000..c3678f45
--- /dev/null
+++ b/content/posts/2009/12/14/end-of-the-year-2.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-14T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/img_5881-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/15/end-of-the-year-3.md b/content/posts/2009/12/15/end-of-the-year-3.md
new file mode 100644
index 00000000..9346d2c1
--- /dev/null
+++ b/content/posts/2009/12/15/end-of-the-year-3.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-15T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/img_5984-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/16/end-of-the-year-4.md b/content/posts/2009/12/16/end-of-the-year-4.md
new file mode 100644
index 00000000..dff73573
--- /dev/null
+++ b/content/posts/2009/12/16/end-of-the-year-4.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-16T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/img_6110-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/17/end-of-the-year-5.md b/content/posts/2009/12/17/end-of-the-year-5.md
new file mode 100644
index 00000000..aa2e4c94
--- /dev/null
+++ b/content/posts/2009/12/17/end-of-the-year-5.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-17T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/img_6143-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/18/end-of-the-year-6.md b/content/posts/2009/12/18/end-of-the-year-6.md
new file mode 100644
index 00000000..e2404b78
--- /dev/null
+++ b/content/posts/2009/12/18/end-of-the-year-6.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-18T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/img_6169-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/19/end-of-the-year-7.md b/content/posts/2009/12/19/end-of-the-year-7.md
new file mode 100644
index 00000000..7f0a30de
--- /dev/null
+++ b/content/posts/2009/12/19/end-of-the-year-7.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-19T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/img_6182-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/20/end-of-the-year-8.md b/content/posts/2009/12/20/end-of-the-year-8.md
new file mode 100644
index 00000000..1bea17e0
--- /dev/null
+++ b/content/posts/2009/12/20/end-of-the-year-8.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-20T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/img_6244-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/21/end-of-the-year-9.md b/content/posts/2009/12/21/end-of-the-year-9.md
new file mode 100644
index 00000000..16f5391c
--- /dev/null
+++ b/content/posts/2009/12/21/end-of-the-year-9.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-21T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pb096314.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/22/end-of-the-year-10.md b/content/posts/2009/12/22/end-of-the-year-10.md
new file mode 100644
index 00000000..23965611
--- /dev/null
+++ b/content/posts/2009/12/22/end-of-the-year-10.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-22T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pb176612-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/23/end-of-the-year-11.md b/content/posts/2009/12/23/end-of-the-year-11.md
new file mode 100644
index 00000000..7ba94c55
--- /dev/null
+++ b/content/posts/2009/12/23/end-of-the-year-11.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-23T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pb236674-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/24/end-of-the-year-12.md b/content/posts/2009/12/24/end-of-the-year-12.md
new file mode 100644
index 00000000..16480d1d
--- /dev/null
+++ b/content/posts/2009/12/24/end-of-the-year-12.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-24T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pb286939-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/25/end-of-the-year-13.md b/content/posts/2009/12/25/end-of-the-year-13.md
new file mode 100644
index 00000000..f7749513
--- /dev/null
+++ b/content/posts/2009/12/25/end-of-the-year-13.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-25T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pc036996-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/26/end-of-the-year-14.md b/content/posts/2009/12/26/end-of-the-year-14.md
new file mode 100644
index 00000000..c2b1bdf7
--- /dev/null
+++ b/content/posts/2009/12/26/end-of-the-year-14.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-26T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pc047042-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/27/end-of-the-year-15.md b/content/posts/2009/12/27/end-of-the-year-15.md
new file mode 100644
index 00000000..1252b6b1
--- /dev/null
+++ b/content/posts/2009/12/27/end-of-the-year-15.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-27T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pc047052-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/28/end-of-the-year-16.md b/content/posts/2009/12/28/end-of-the-year-16.md
new file mode 100644
index 00000000..8b7ca7b5
--- /dev/null
+++ b/content/posts/2009/12/28/end-of-the-year-16.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-28T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pc087058-4.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/29/end-of-the-year-17.md b/content/posts/2009/12/29/end-of-the-year-17.md
new file mode 100644
index 00000000..5daac93f
--- /dev/null
+++ b/content/posts/2009/12/29/end-of-the-year-17.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-29T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pc107081-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/30/end-of-the-year-18.md b/content/posts/2009/12/30/end-of-the-year-18.md
new file mode 100644
index 00000000..601c4886
--- /dev/null
+++ b/content/posts/2009/12/30/end-of-the-year-18.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-30T18:52:12-07:00"
+title = "End of The Year :"
+image = "/wp-content/uploads/End%20of%20The%20Year/pc107087-1.jpg"
++++
+
+
+
diff --git a/content/posts/2009/12/31/retrospective.md b/content/posts/2009/12/31/retrospective.md
new file mode 100644
index 00000000..9e8f241e
--- /dev/null
+++ b/content/posts/2009/12/31/retrospective.md
@@ -0,0 +1,8 @@
++++
+date = "2009-12-31T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/01/retrospective-2.md b/content/posts/2010/01/01/retrospective-2.md
new file mode 100644
index 00000000..845a26db
--- /dev/null
+++ b/content/posts/2010/01/01/retrospective-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-01T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/02/retrospective-3.md b/content/posts/2010/01/02/retrospective-3.md
new file mode 100644
index 00000000..cdb17d76
--- /dev/null
+++ b/content/posts/2010/01/02/retrospective-3.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-02T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/03/retrospective-4.md b/content/posts/2010/01/03/retrospective-4.md
new file mode 100644
index 00000000..c6f6c5b5
--- /dev/null
+++ b/content/posts/2010/01/03/retrospective-4.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-03T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/04/retrospective-5.md b/content/posts/2010/01/04/retrospective-5.md
new file mode 100644
index 00000000..45fa2bd7
--- /dev/null
+++ b/content/posts/2010/01/04/retrospective-5.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-04T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/05/retrospective-6.md b/content/posts/2010/01/05/retrospective-6.md
new file mode 100644
index 00000000..c50b49ff
--- /dev/null
+++ b/content/posts/2010/01/05/retrospective-6.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-05T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/06/retrospective-7.md b/content/posts/2010/01/06/retrospective-7.md
new file mode 100644
index 00000000..7318f232
--- /dev/null
+++ b/content/posts/2010/01/06/retrospective-7.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-06T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/07/retrospective-8.md b/content/posts/2010/01/07/retrospective-8.md
new file mode 100644
index 00000000..c04671bb
--- /dev/null
+++ b/content/posts/2010/01/07/retrospective-8.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-07T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/08/retrospective-9.md b/content/posts/2010/01/08/retrospective-9.md
new file mode 100644
index 00000000..c4adfccd
--- /dev/null
+++ b/content/posts/2010/01/08/retrospective-9.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-08T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/09/retrospective-10.md b/content/posts/2010/01/09/retrospective-10.md
new file mode 100644
index 00000000..4ed82fed
--- /dev/null
+++ b/content/posts/2010/01/09/retrospective-10.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-09T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/10/retrospective-11.md b/content/posts/2010/01/10/retrospective-11.md
new file mode 100644
index 00000000..dfe06b87
--- /dev/null
+++ b/content/posts/2010/01/10/retrospective-11.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-10T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/11/retrospective-12.md b/content/posts/2010/01/11/retrospective-12.md
new file mode 100644
index 00000000..3a09ca9d
--- /dev/null
+++ b/content/posts/2010/01/11/retrospective-12.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-11T12:52:12-07:00"
+title = "Retrospective :"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/01/12/monochrome-start.md b/content/posts/2010/01/12/monochrome-start.md
new file mode 100644
index 00000000..a988dc45
--- /dev/null
+++ b/content/posts/2010/01/12/monochrome-start.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-12T06:52:12-07:00"
+title = "Monochrome Start :"
+image = "/wp-content/uploads/Monochrome%20Start/img_6986-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/13/monochrome-start-2.md b/content/posts/2010/01/13/monochrome-start-2.md
new file mode 100644
index 00000000..5aa09cf6
--- /dev/null
+++ b/content/posts/2010/01/13/monochrome-start-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-13T06:52:12-07:00"
+title = "Monochrome Start :"
+image = "/wp-content/uploads/Monochrome%20Start/img_6991-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/14/monochrome-start-3.md b/content/posts/2010/01/14/monochrome-start-3.md
new file mode 100644
index 00000000..bcef42f7
--- /dev/null
+++ b/content/posts/2010/01/14/monochrome-start-3.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-14T06:52:12-07:00"
+title = "Monochrome Start :"
+image = "/wp-content/uploads/Monochrome%20Start/img_6995-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/15/monochrome-start-4.md b/content/posts/2010/01/15/monochrome-start-4.md
new file mode 100644
index 00000000..a9eedbef
--- /dev/null
+++ b/content/posts/2010/01/15/monochrome-start-4.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-15T06:52:12-07:00"
+title = "Monochrome Start :"
+image = "/wp-content/uploads/Monochrome%20Start/img_7005.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/16/monochrome-start-5.md b/content/posts/2010/01/16/monochrome-start-5.md
new file mode 100644
index 00000000..30efaa20
--- /dev/null
+++ b/content/posts/2010/01/16/monochrome-start-5.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-16T06:52:12-07:00"
+title = "Monochrome Start :"
+image = "/wp-content/uploads/Monochrome%20Start/img_7011-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/17/monochrome-start-6.md b/content/posts/2010/01/17/monochrome-start-6.md
new file mode 100644
index 00000000..8a25489c
--- /dev/null
+++ b/content/posts/2010/01/17/monochrome-start-6.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-17T06:52:12-07:00"
+title = "Monochrome Start :"
+image = "/wp-content/uploads/Monochrome%20Start/img_7017-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/18/monochrome-start-7.md b/content/posts/2010/01/18/monochrome-start-7.md
new file mode 100644
index 00000000..317f7e4c
--- /dev/null
+++ b/content/posts/2010/01/18/monochrome-start-7.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-18T06:52:12-07:00"
+title = "Monochrome Start :"
+image = "/wp-content/uploads/Monochrome%20Start/img_7020-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/19/monochrome-start-8.md b/content/posts/2010/01/19/monochrome-start-8.md
new file mode 100644
index 00000000..f823845a
--- /dev/null
+++ b/content/posts/2010/01/19/monochrome-start-8.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-19T06:30:12-07:00"
+title = "Monochrome Start :"
+image = "/wp-content/uploads/Monochrome%20Start/img_7024-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/20/monochrome-january-garden-fairy.md b/content/posts/2010/01/20/monochrome-january-garden-fairy.md
new file mode 100644
index 00000000..192c9967
--- /dev/null
+++ b/content/posts/2010/01/20/monochrome-january-garden-fairy.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-20T00:52:12-07:00"
+title = "Monochrome January : Garden Fairy"
+image = "/wp-content/uploads/Monochrome%20January/img_7035-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/21/monochrome-january-lamp-at-starbucks.md b/content/posts/2010/01/21/monochrome-january-lamp-at-starbucks.md
new file mode 100644
index 00000000..82cbd234
--- /dev/null
+++ b/content/posts/2010/01/21/monochrome-january-lamp-at-starbucks.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-21T00:52:12-07:00"
+title = "Monochrome January : Lamp at Starbucks"
+image = "/wp-content/uploads/Monochrome%20January/img_7038-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/22/monochrome-january-hard-working-toy.md b/content/posts/2010/01/22/monochrome-january-hard-working-toy.md
new file mode 100644
index 00000000..2361cf41
--- /dev/null
+++ b/content/posts/2010/01/22/monochrome-january-hard-working-toy.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-22T00:52:12-07:00"
+title = "Monochrome January : Hard Working Toy"
+image = "/wp-content/uploads/Monochrome%20January/img_7048-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/23/monochrome-january-winter-tree.md b/content/posts/2010/01/23/monochrome-january-winter-tree.md
new file mode 100644
index 00000000..120d619a
--- /dev/null
+++ b/content/posts/2010/01/23/monochrome-january-winter-tree.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-23T00:52:12-07:00"
+title = "Monochrome January : Winter Tree"
+image = "/wp-content/uploads/Monochrome%20January/img_7050-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/24/bug-on-rose-2.md b/content/posts/2010/01/24/bug-on-rose-2.md
new file mode 100644
index 00000000..35559d63
--- /dev/null
+++ b/content/posts/2010/01/24/bug-on-rose-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-24T18:52:12-07:00"
+title = "Bug on Rose"
+image = "/wp-content/uploads/2010/01/PB076354-edit1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/24/monochrome-january-jet-train-in-a-winters-sky.md b/content/posts/2010/01/24/monochrome-january-jet-train-in-a-winters-sky.md
new file mode 100644
index 00000000..23f2b4b8
--- /dev/null
+++ b/content/posts/2010/01/24/monochrome-january-jet-train-in-a-winters-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-24T00:52:12-07:00"
+title = "Monochrome January : Jet Train in a Winter's Sky"
+image = "/wp-content/uploads/Monochrome%20January/img_7051-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/25/downtown-houston-at-sunset-2.md b/content/posts/2010/01/25/downtown-houston-at-sunset-2.md
new file mode 100644
index 00000000..655dabdf
--- /dev/null
+++ b/content/posts/2010/01/25/downtown-houston-at-sunset-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-25T18:52:12-07:00"
+title = "Downtown Houston at Sunset"
+image = "/wp-content/uploads/2010/01/pa084630-edit1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/26/road-to-adventure.md b/content/posts/2010/01/26/road-to-adventure.md
new file mode 100644
index 00000000..b4505ab5
--- /dev/null
+++ b/content/posts/2010/01/26/road-to-adventure.md
@@ -0,0 +1,8 @@
++++
+date = "2010-01-26T12:52:12-07:00"
+title = "Road To Adventure"
+image = "/wp-content/uploads/2010/01/p1237246-11.jpg"
++++
+
+
+
diff --git a/content/posts/2010/01/27/dead-leaf-hanging.md b/content/posts/2010/01/27/dead-leaf-hanging.md
new file mode 100644
index 00000000..2b88d18a
--- /dev/null
+++ b/content/posts/2010/01/27/dead-leaf-hanging.md
@@ -0,0 +1,9 @@
++++
+date = "2010-01-27T12:52:12-07:00"
+title = "Dead Leaf Hanging"
+image = "/wp-content/uploads/2010/01/p1237283-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/01/28/paster-under-winter-sky.md b/content/posts/2010/01/28/paster-under-winter-sky.md
new file mode 100644
index 00000000..dd6fd9a4
--- /dev/null
+++ b/content/posts/2010/01/28/paster-under-winter-sky.md
@@ -0,0 +1,9 @@
++++
+date = "2010-01-28T12:52:12-07:00"
+title = "Paster under Winter Sky"
+image = "/wp-content/uploads/2010/01/p1237321-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/01/29/purple-coneflower.md b/content/posts/2010/01/29/purple-coneflower.md
new file mode 100644
index 00000000..9bf7c114
--- /dev/null
+++ b/content/posts/2010/01/29/purple-coneflower.md
@@ -0,0 +1,9 @@
++++
+date = "2010-01-29T06:52:12-07:00"
+title = "Purple Coneflower"
+image = "/wp-content/uploads/2010/01/P9163792-2-edit.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/01/30/male-queen-butterfly.md b/content/posts/2010/01/30/male-queen-butterfly.md
new file mode 100644
index 00000000..b51cc738
--- /dev/null
+++ b/content/posts/2010/01/30/male-queen-butterfly.md
@@ -0,0 +1,9 @@
++++
+date = "2010-01-30T06:52:12-07:00"
+title = "Male Queen Butterfly"
+image = "/wp-content/uploads/2010/01/P9163796-2-edit.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/01/31/white-water-lily.md b/content/posts/2010/01/31/white-water-lily.md
new file mode 100644
index 00000000..a6f1bd03
--- /dev/null
+++ b/content/posts/2010/01/31/white-water-lily.md
@@ -0,0 +1,9 @@
++++
+date = "2010-01-31T06:52:12-07:00"
+title = "White Water Lily"
+image = "/wp-content/uploads/2010/01/P9163801-2-edit.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/01/coreopsis-moonbeam.md b/content/posts/2010/02/01/coreopsis-moonbeam.md
new file mode 100644
index 00000000..8459d85d
--- /dev/null
+++ b/content/posts/2010/02/01/coreopsis-moonbeam.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-01T06:52:12-07:00"
+title = "Coreopsis Moonbeam"
+image = "/wp-content/uploads/2010/01/P9163804-1-edit.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/02/goblin-gaillardia.md b/content/posts/2010/02/02/goblin-gaillardia.md
new file mode 100644
index 00000000..6d658501
--- /dev/null
+++ b/content/posts/2010/02/02/goblin-gaillardia.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-02T06:52:12-07:00"
+title = "Goblin Gaillardia"
+image = "/wp-content/uploads/2010/01/P9163818-1-edit.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/03/backlit-sunflower.md b/content/posts/2010/02/03/backlit-sunflower.md
new file mode 100644
index 00000000..b3ccaba7
--- /dev/null
+++ b/content/posts/2010/02/03/backlit-sunflower.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-03T06:52:12-07:00"
+title = "Backlit Sunflower"
+image = "/wp-content/uploads/2010/01/P9163828-2-edit.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/04/white-hibiscus.md b/content/posts/2010/02/04/white-hibiscus.md
new file mode 100644
index 00000000..c7957f79
--- /dev/null
+++ b/content/posts/2010/02/04/white-hibiscus.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-04T06:52:12-07:00"
+title = "White Hibiscus"
+image = "/wp-content/uploads/2010/01/P9163857-1-edit.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/05/oil-pump-at-sunset-2.md b/content/posts/2010/02/05/oil-pump-at-sunset-2.md
new file mode 100644
index 00000000..d8d76057
--- /dev/null
+++ b/content/posts/2010/02/05/oil-pump-at-sunset-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-05T00:57:31-07:00"
+title = "Oil Pump at Sunset"
+image = "/wp-content/uploads/2010/02/PB216661-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/06/starlight-2.md b/content/posts/2010/02/06/starlight-2.md
new file mode 100644
index 00000000..a4b49ab3
--- /dev/null
+++ b/content/posts/2010/02/06/starlight-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-06T00:58:58-07:00"
+title = "Starlight"
+image = "/wp-content/uploads/2010/02/img_7056-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/07/starlight-ii.md b/content/posts/2010/02/07/starlight-ii.md
new file mode 100644
index 00000000..8ee5d52d
--- /dev/null
+++ b/content/posts/2010/02/07/starlight-ii.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-07T00:52:12-07:00"
+title = "Starlight II"
+image = "/wp-content/uploads/2010/02/img_7056-22.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/08/camp-fire.md b/content/posts/2010/02/08/camp-fire.md
new file mode 100644
index 00000000..8a245324
--- /dev/null
+++ b/content/posts/2010/02/08/camp-fire.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-08T00:52:12-07:00"
+title = "Camp Fire"
+image = "/wp-content/uploads/2010/02/p1237430-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/09/houston-city-hall.md b/content/posts/2010/02/09/houston-city-hall.md
new file mode 100644
index 00000000..772f3948
--- /dev/null
+++ b/content/posts/2010/02/09/houston-city-hall.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-09T00:52:12-07:00"
+title = "Houston City Hall"
+image = "/wp-content/uploads/2010/02/p2027443-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/10/tall-buildings-blue-sky.md b/content/posts/2010/02/10/tall-buildings-blue-sky.md
new file mode 100644
index 00000000..b73b4d84
--- /dev/null
+++ b/content/posts/2010/02/10/tall-buildings-blue-sky.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-10T00:06:14-07:00"
+title = "Tall Buildings, Blue Sky"
+image = "/wp-content/uploads/2010/02/p2057457-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/11/blue-car-on-green-wall.md b/content/posts/2010/02/11/blue-car-on-green-wall.md
new file mode 100644
index 00000000..0e7d1b9f
--- /dev/null
+++ b/content/posts/2010/02/11/blue-car-on-green-wall.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-11T00:17:22-07:00"
+title = "Blue Car on Green Wall"
+image = "/wp-content/uploads/2010/02/p2067458-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/12/early-morning-traffic.md b/content/posts/2010/02/12/early-morning-traffic.md
new file mode 100644
index 00000000..56facacc
--- /dev/null
+++ b/content/posts/2010/02/12/early-morning-traffic.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-12T00:17:22-07:00"
+title = "Early Morning Traffic"
+image = "/wp-content/uploads/2010/02/p2057451-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/13/froggie-planter.md b/content/posts/2010/02/13/froggie-planter.md
new file mode 100644
index 00000000..bd573d65
--- /dev/null
+++ b/content/posts/2010/02/13/froggie-planter.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-13T18:17:22-07:00"
+title = "Froggie Planter"
+image = "/wp-content/uploads/2010/02/p2077479-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/13/waiting-for-customers.md b/content/posts/2010/02/13/waiting-for-customers.md
new file mode 100644
index 00000000..131ca68f
--- /dev/null
+++ b/content/posts/2010/02/13/waiting-for-customers.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-13T00:17:22-07:00"
+title = "Waiting for Customers"
+image = "/wp-content/uploads/2010/02/p2057452-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/14/waiting-for-summer.md b/content/posts/2010/02/14/waiting-for-summer.md
new file mode 100644
index 00000000..f9e7dedf
--- /dev/null
+++ b/content/posts/2010/02/14/waiting-for-summer.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-14T18:17:22-07:00"
+title = "Waiting For Summer"
+image = "/wp-content/uploads/2010/02/p2087486-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/15/froggie-planter-2.md b/content/posts/2010/02/15/froggie-planter-2.md
new file mode 100644
index 00000000..9820c017
--- /dev/null
+++ b/content/posts/2010/02/15/froggie-planter-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-15T12:17:22-07:00"
+title = "Froggie Planter"
+image = "/wp-content/uploads/2010/02/p2077479-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/16/waiting-for-summer-2.md b/content/posts/2010/02/16/waiting-for-summer-2.md
new file mode 100644
index 00000000..57ab7d72
--- /dev/null
+++ b/content/posts/2010/02/16/waiting-for-summer-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-16T12:17:22-07:00"
+title = "Waiting For Summer"
+image = "/wp-content/uploads/2010/02/p2087486-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/17/gnomes-marching.md b/content/posts/2010/02/17/gnomes-marching.md
new file mode 100644
index 00000000..34b03cb8
--- /dev/null
+++ b/content/posts/2010/02/17/gnomes-marching.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-17T12:17:22-07:00"
+title = "Gnomes Marching"
+image = "/wp-content/uploads/2010/02/p2097488-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/18/earth-gnome.md b/content/posts/2010/02/18/earth-gnome.md
new file mode 100644
index 00000000..faab2eba
--- /dev/null
+++ b/content/posts/2010/02/18/earth-gnome.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-18T12:17:22-07:00"
+title = "Earth Gnome"
+image = "/wp-content/uploads/2010/02/p2097492-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/19/reflections-downtown.md b/content/posts/2010/02/19/reflections-downtown.md
new file mode 100644
index 00000000..8acd525e
--- /dev/null
+++ b/content/posts/2010/02/19/reflections-downtown.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-19T12:17:22-07:00"
+title = "Reflections Downtown"
+image = "/wp-content/uploads/2010/02/p2107502-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/20/wet-morning.md b/content/posts/2010/02/20/wet-morning.md
new file mode 100644
index 00000000..338fc13e
--- /dev/null
+++ b/content/posts/2010/02/20/wet-morning.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-20T12:17:22-07:00"
+title = "Wet Morning"
+image = "/wp-content/uploads/2010/02/p2117504-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/21/sunrise-at-60.md b/content/posts/2010/02/21/sunrise-at-60.md
new file mode 100644
index 00000000..c2719c46
--- /dev/null
+++ b/content/posts/2010/02/21/sunrise-at-60.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-21T06:17:22-07:00"
+title = "Sunrise at 60"
+image = "/wp-content/uploads/2010/02/p2107501-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/22/sunbeam-in-clouds.md b/content/posts/2010/02/22/sunbeam-in-clouds.md
new file mode 100644
index 00000000..fa74a19a
--- /dev/null
+++ b/content/posts/2010/02/22/sunbeam-in-clouds.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-22T06:17:22-07:00"
+title = "Sunbeam in clouds"
+image = "/wp-content/uploads/2010/02/p2147524-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/23/reflections-of-tall-buildings.md b/content/posts/2010/02/23/reflections-of-tall-buildings.md
new file mode 100644
index 00000000..b79be805
--- /dev/null
+++ b/content/posts/2010/02/23/reflections-of-tall-buildings.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-23T06:17:22-07:00"
+title = "Reflections of Tall Buildings"
+image = "/wp-content/uploads/2010/02/p2177542-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/24/monochromatic-union-jack.md b/content/posts/2010/02/24/monochromatic-union-jack.md
new file mode 100644
index 00000000..a2848779
--- /dev/null
+++ b/content/posts/2010/02/24/monochromatic-union-jack.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-24T06:17:22-07:00"
+title = "Monochromatic Union Jack"
+image = "/wp-content/uploads/2010/02/p2177544-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/25/signs-allen-center.md b/content/posts/2010/02/25/signs-allen-center.md
new file mode 100644
index 00000000..e6c7cf21
--- /dev/null
+++ b/content/posts/2010/02/25/signs-allen-center.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-25T06:17:22-07:00"
+title = "Signs: Allen Center"
+image = "/wp-content/uploads/2010/02/p2187547-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/26/tall-reflections.md b/content/posts/2010/02/26/tall-reflections.md
new file mode 100644
index 00000000..586aa800
--- /dev/null
+++ b/content/posts/2010/02/26/tall-reflections.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-26T06:17:22-07:00"
+title = "Tall Reflections"
+image = "/wp-content/uploads/2010/02/p2187548-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/27/don-juan-spring-comes.md b/content/posts/2010/02/27/don-juan-spring-comes.md
new file mode 100644
index 00000000..b67e6129
--- /dev/null
+++ b/content/posts/2010/02/27/don-juan-spring-comes.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-27T00:17:22-07:00"
+title = "Don Juan: Spring Comes"
+image = "/wp-content/uploads/2010/02/p2067461-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/02/28/gnomes.md b/content/posts/2010/02/28/gnomes.md
new file mode 100644
index 00000000..017d1698
--- /dev/null
+++ b/content/posts/2010/02/28/gnomes.md
@@ -0,0 +1,9 @@
++++
+date = "2010-02-28T00:17:22-07:00"
+title = "GNOMES!"
+image = "/wp-content/uploads/2010/02/p2097491-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/01/two-allen-center.md b/content/posts/2010/03/01/two-allen-center.md
new file mode 100644
index 00000000..7457c6ab
--- /dev/null
+++ b/content/posts/2010/03/01/two-allen-center.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-01T00:17:22-07:00"
+title = "Two Allen Center"
+image = "/wp-content/uploads/2010/03/p2187545-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/02/downtown-black-and-white.md b/content/posts/2010/03/02/downtown-black-and-white.md
new file mode 100644
index 00000000..4836221b
--- /dev/null
+++ b/content/posts/2010/03/02/downtown-black-and-white.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-02T00:17:22-07:00"
+title = "Downtown, Black and White"
+image = "/wp-content/uploads/2010/03/p2247607-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/03/reflections-black-andwhite.md b/content/posts/2010/03/03/reflections-black-andwhite.md
new file mode 100644
index 00000000..6f26e1dd
--- /dev/null
+++ b/content/posts/2010/03/03/reflections-black-andwhite.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-03T00:17:22-07:00"
+title = "Reflections, Black andWhite"
+image = "/wp-content/uploads/2010/03/p2247608-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/04/reflections-of-money-temple.md b/content/posts/2010/03/04/reflections-of-money-temple.md
new file mode 100644
index 00000000..88bb231a
--- /dev/null
+++ b/content/posts/2010/03/04/reflections-of-money-temple.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-04T00:17:22-07:00"
+title = "Reflections of Money Temple"
+image = "/wp-content/uploads/2010/03/p2267617-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/05/moon-photochromed.md b/content/posts/2010/03/05/moon-photochromed.md
new file mode 100644
index 00000000..2a6eda87
--- /dev/null
+++ b/content/posts/2010/03/05/moon-photochromed.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-05T06:03:08-07:00"
+title = "Moon Photochromed"
+image = "/wp-content/uploads/2010/03/2010.02.27.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/06/tree-tunnel.md b/content/posts/2010/03/06/tree-tunnel.md
new file mode 100644
index 00000000..41a4db07
--- /dev/null
+++ b/content/posts/2010/03/06/tree-tunnel.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-06T06:03:13-07:00"
+title = "Tree Tunnel"
+image = "/wp-content/uploads/2010/03/2009.12.30.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/07/morning-walk-after-rain.md b/content/posts/2010/03/07/morning-walk-after-rain.md
new file mode 100644
index 00000000..b86b5874
--- /dev/null
+++ b/content/posts/2010/03/07/morning-walk-after-rain.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-07T06:03:56-07:00"
+title = "Morning Walk After Rain"
+image = "/wp-content/uploads/2010/03/2009.12.231.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/08/la-centera-water-fall.md b/content/posts/2010/03/08/la-centera-water-fall.md
new file mode 100644
index 00000000..208baad8
--- /dev/null
+++ b/content/posts/2010/03/08/la-centera-water-fall.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-08T06:37:27-07:00"
+title = "La Centera Water Fall"
+image = "/wp-content/uploads/2010/03/p3067709-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/09/yellow-rain-coat-2.md b/content/posts/2010/03/09/yellow-rain-coat-2.md
new file mode 100644
index 00000000..484159fb
--- /dev/null
+++ b/content/posts/2010/03/09/yellow-rain-coat-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-09T06:00:03-07:00"
+title = "Yellow Rain Coat"
+image = "/wp-content/uploads/2010/03/p3027680-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/10/power-sunset.md b/content/posts/2010/03/10/power-sunset.md
new file mode 100644
index 00000000..ffb7325c
--- /dev/null
+++ b/content/posts/2010/03/10/power-sunset.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-10T06:00:11-07:00"
+title = "Power Sunset"
+image = "/wp-content/uploads/2010/03/p3037684-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/11/the-morning-drive.md b/content/posts/2010/03/11/the-morning-drive.md
new file mode 100644
index 00000000..22aec956
--- /dev/null
+++ b/content/posts/2010/03/11/the-morning-drive.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-11T06:00:43-07:00"
+title = "The Morning Drive"
+image = "/wp-content/uploads/2010/03/p3057687-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/12/public-art.md b/content/posts/2010/03/12/public-art.md
new file mode 100644
index 00000000..3ce3d52f
--- /dev/null
+++ b/content/posts/2010/03/12/public-art.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-12T06:00:52-07:00"
+title = "Public Art"
+image = "/wp-content/uploads/2010/03/p3107764-1.jpg"
++++
+
+
+
+
diff --git a/content/posts/2010/03/13/cactus-anyone.md b/content/posts/2010/03/13/cactus-anyone.md
new file mode 100644
index 00000000..91a1861b
--- /dev/null
+++ b/content/posts/2010/03/13/cactus-anyone.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-13T15:22:42-07:00"
+title = "Cactus, Anyone?"
+image = "/wp-content/uploads/2010/03/p2277628-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/14/red-and-green.md b/content/posts/2010/03/14/red-and-green.md
new file mode 100644
index 00000000..758cafcf
--- /dev/null
+++ b/content/posts/2010/03/14/red-and-green.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-14T06:00:53-07:00"
+title = "Red and Green"
+image = "/wp-content/uploads/2010/03/p2277627-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/15/peach-bloom.md b/content/posts/2010/03/15/peach-bloom.md
new file mode 100644
index 00000000..aa2666ad
--- /dev/null
+++ b/content/posts/2010/03/15/peach-bloom.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-15T06:00:48-07:00"
+title = "Peach Bloom"
+image = "/wp-content/uploads/2010/03/p2277623-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/16/firepoll-with-trashcan.md b/content/posts/2010/03/16/firepoll-with-trashcan.md
new file mode 100644
index 00000000..68a9b71e
--- /dev/null
+++ b/content/posts/2010/03/16/firepoll-with-trashcan.md
@@ -0,0 +1,8 @@
++++
+date = "2010-03-16T06:00:54-07:00"
+title = "Firepoll with trashcan"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/03/17/fire-connection.md b/content/posts/2010/03/17/fire-connection.md
new file mode 100644
index 00000000..1078f866
--- /dev/null
+++ b/content/posts/2010/03/17/fire-connection.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-17T06:00:46-07:00"
+title = "Fire Connection"
+image = "/wp-content/uploads/2010/03/p3107769-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/18/fotofest-in-town.md b/content/posts/2010/03/18/fotofest-in-town.md
new file mode 100644
index 00000000..65b58f8f
--- /dev/null
+++ b/content/posts/2010/03/18/fotofest-in-town.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-18T06:00:52-07:00"
+title = "Fotofest in Town"
+image = "/wp-content/uploads/2010/03/p3107770-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/19/reflections-and-fog.md b/content/posts/2010/03/19/reflections-and-fog.md
new file mode 100644
index 00000000..85d34b90
--- /dev/null
+++ b/content/posts/2010/03/19/reflections-and-fog.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-19T06:00:24-07:00"
+title = "Reflections and Fog"
+image = "/wp-content/uploads/2010/03/p3107768-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/20/brids-on-the-wire-at-sunset.md b/content/posts/2010/03/20/brids-on-the-wire-at-sunset.md
new file mode 100644
index 00000000..4f2ca3f9
--- /dev/null
+++ b/content/posts/2010/03/20/brids-on-the-wire-at-sunset.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-20T06:00:20-07:00"
+title = "Brids on the Wire at Sunset"
+image = "/wp-content/uploads/2010/03/p3107772-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/21/grackel-on-prowl.md b/content/posts/2010/03/21/grackel-on-prowl.md
new file mode 100644
index 00000000..be970307
--- /dev/null
+++ b/content/posts/2010/03/21/grackel-on-prowl.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-21T06:00:27-07:00"
+title = "Grackel on Prowl"
+image = "/wp-content/uploads/2010/03/p3117776-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/22/model-man-goes-to-washington-dc.md b/content/posts/2010/03/22/model-man-goes-to-washington-dc.md
new file mode 100644
index 00000000..8fcb44bf
--- /dev/null
+++ b/content/posts/2010/03/22/model-man-goes-to-washington-dc.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-22T06:00:43-07:00"
+title = "Model Man Goes to Washington DC"
+image = "/wp-content/uploads/2010/03/p3177846-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/23/sunset-over-lincon.md b/content/posts/2010/03/23/sunset-over-lincon.md
new file mode 100644
index 00000000..c30af0b2
--- /dev/null
+++ b/content/posts/2010/03/23/sunset-over-lincon.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-23T06:00:21-07:00"
+title = "Sunset Over Lincon"
+image = "/wp-content/uploads/2010/03/p3177893-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/24/the-capital.md b/content/posts/2010/03/24/the-capital.md
new file mode 100644
index 00000000..d7a39876
--- /dev/null
+++ b/content/posts/2010/03/24/the-capital.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-24T01:00:21-07:00"
+title = "The Capital"
+image = "/wp-content/uploads/2010/03/p3177829-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/25/wwii-fountain.md b/content/posts/2010/03/25/wwii-fountain.md
new file mode 100644
index 00000000..d236a180
--- /dev/null
+++ b/content/posts/2010/03/25/wwii-fountain.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-25T01:00:21-07:00"
+title = "WWII Fountain"
+image = "/wp-content/uploads/2010/03/p3177843-12.jpg"
++++
+
+
+
+
diff --git a/content/posts/2010/03/26/visiting-the-wwii-memorial.md b/content/posts/2010/03/26/visiting-the-wwii-memorial.md
new file mode 100644
index 00000000..0906b97b
--- /dev/null
+++ b/content/posts/2010/03/26/visiting-the-wwii-memorial.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-26T01:00:21-07:00"
+title = "Visiting the WWII Memorial"
+image = "/wp-content/uploads/2010/03/p3177871-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/27/sunset-over-lincon-2.md b/content/posts/2010/03/27/sunset-over-lincon-2.md
new file mode 100644
index 00000000..f8142a8a
--- /dev/null
+++ b/content/posts/2010/03/27/sunset-over-lincon-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-27T01:00:21-07:00"
+title = "Sunset Over Lincon"
+image = "/wp-content/uploads/2010/03/p3177893-12.jpg"
++++
+
+
+5 
+
\ No newline at end of file
diff --git a/content/posts/2010/03/28/wwii-memorial-at-sunset.md b/content/posts/2010/03/28/wwii-memorial-at-sunset.md
new file mode 100644
index 00000000..bd34cd55
--- /dev/null
+++ b/content/posts/2010/03/28/wwii-memorial-at-sunset.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-28T01:00:21-07:00"
+title = "WWII Memorial at Sunset"
+image = "/wp-content/uploads/2010/03/p3177909-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/29/lincon-memorial-at-sunset.md b/content/posts/2010/03/29/lincon-memorial-at-sunset.md
new file mode 100644
index 00000000..bd127c28
--- /dev/null
+++ b/content/posts/2010/03/29/lincon-memorial-at-sunset.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-29T01:00:07-07:00"
+title = "Lincon Memorial at Sunset"
+image = "/wp-content/uploads/2010/03/p3177909-22.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/30/national-lawn-sunset.md b/content/posts/2010/03/30/national-lawn-sunset.md
new file mode 100644
index 00000000..ae206361
--- /dev/null
+++ b/content/posts/2010/03/30/national-lawn-sunset.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-30T01:00:58-07:00"
+title = "National Lawn Sunset"
+image = "/wp-content/uploads/2010/03/p3177919-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/03/31/leaf-on-sidewalk.md b/content/posts/2010/03/31/leaf-on-sidewalk.md
new file mode 100644
index 00000000..13a2d3cd
--- /dev/null
+++ b/content/posts/2010/03/31/leaf-on-sidewalk.md
@@ -0,0 +1,9 @@
++++
+date = "2010-03-31T01:00:14-07:00"
+title = "Leaf on Sidewalk"
+image = "/wp-content/uploads/2010/03/p3177914-22.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/01/wild-onion-detail-1-2.md b/content/posts/2010/04/01/wild-onion-detail-1-2.md
new file mode 100644
index 00000000..cd2c1eea
--- /dev/null
+++ b/content/posts/2010/04/01/wild-onion-detail-1-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-01T01:00:14-07:00"
+title = "Wild Onion Detail 1"
+image = "/wp-content/uploads/2010/03/P32779411.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/02/wild-onion-detail-2-2.md b/content/posts/2010/04/02/wild-onion-detail-2-2.md
new file mode 100644
index 00000000..a6afea27
--- /dev/null
+++ b/content/posts/2010/04/02/wild-onion-detail-2-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-02T01:00:14-07:00"
+title = "Wild Onion Detail 2"
+image = "/wp-content/uploads/2010/04/P3277944.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/03/wild-onion-detail-3-2.md b/content/posts/2010/04/03/wild-onion-detail-3-2.md
new file mode 100644
index 00000000..b4e32436
--- /dev/null
+++ b/content/posts/2010/04/03/wild-onion-detail-3-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-03T01:00:14-07:00"
+title = "Wild Onion Detail 3"
+image = "/wp-content/uploads/2010/04/P3277945.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/04/wild-onion-detail-4.md b/content/posts/2010/04/04/wild-onion-detail-4.md
new file mode 100644
index 00000000..2b5aaa72
--- /dev/null
+++ b/content/posts/2010/04/04/wild-onion-detail-4.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-04T01:00:46-07:00"
+title = "Wild Onion Detail 4"
+image = "/wp-content/uploads/2010/03/P32779461.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/05/crown-vetch.md b/content/posts/2010/04/05/crown-vetch.md
new file mode 100644
index 00000000..9b24f78a
--- /dev/null
+++ b/content/posts/2010/04/05/crown-vetch.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-05T06:00:05-07:00"
+title = "Crown Vetch"
+image = "/wp-content/uploads/2010/03/P32779651.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/06/sad-flamingo.md b/content/posts/2010/04/06/sad-flamingo.md
new file mode 100644
index 00000000..dfd2c7e1
--- /dev/null
+++ b/content/posts/2010/04/06/sad-flamingo.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-06T02:00:53-07:00"
+title = "Sad Flamingo"
+image = "/wp-content/uploads/2010/03/P32779682.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/07/dew-on-bluebonnet.md b/content/posts/2010/04/07/dew-on-bluebonnet.md
new file mode 100644
index 00000000..95f62f59
--- /dev/null
+++ b/content/posts/2010/04/07/dew-on-bluebonnet.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-07T01:00:53-07:00"
+title = "Dew On Bluebonnet"
+image = "/wp-content/uploads/2010/04/P4038046-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/08/spideweb-with-bluebonnets-2.md b/content/posts/2010/04/08/spideweb-with-bluebonnets-2.md
new file mode 100644
index 00000000..3558499c
--- /dev/null
+++ b/content/posts/2010/04/08/spideweb-with-bluebonnets-2.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-08T01:00:53-07:00"
+title = "Spideweb with Bluebonnets 2"
+image = "/wp-content/uploads/2010/04/P4038053-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/09/i-stand-alone.md b/content/posts/2010/04/09/i-stand-alone.md
new file mode 100644
index 00000000..edd75119
--- /dev/null
+++ b/content/posts/2010/04/09/i-stand-alone.md
@@ -0,0 +1,7 @@
++++
+date = "2010-04-09T01:00:53-07:00"
+title = "I Stand Alone"
+image = "/wp-content/uploads/2010/04/P4038059-11.jpg"
++++
+
+
diff --git a/content/posts/2010/04/10/texas-bluebonnet.md b/content/posts/2010/04/10/texas-bluebonnet.md
new file mode 100644
index 00000000..fd833fef
--- /dev/null
+++ b/content/posts/2010/04/10/texas-bluebonnet.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-10T01:00:53-07:00"
+title = "Texas Bluebonnet"
+image = "/wp-content/uploads/2010/04/P4038060-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/11/fog-over-bluebonnets.md b/content/posts/2010/04/11/fog-over-bluebonnets.md
new file mode 100644
index 00000000..705ec5e2
--- /dev/null
+++ b/content/posts/2010/04/11/fog-over-bluebonnets.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-11T01:00:53-07:00"
+title = "Fog Over Bluebonnets"
+image = "/wp-content/uploads/2010/04/P4038065-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/12/field-of-color.md b/content/posts/2010/04/12/field-of-color.md
new file mode 100644
index 00000000..e2531bbb
--- /dev/null
+++ b/content/posts/2010/04/12/field-of-color.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-12T01:00:53-07:00"
+title = "Field of Color"
+image = "/wp-content/uploads/2010/04/P4038102-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/13/broken-dreams.md b/content/posts/2010/04/13/broken-dreams.md
new file mode 100644
index 00000000..b71166ca
--- /dev/null
+++ b/content/posts/2010/04/13/broken-dreams.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-13T01:00:53-07:00"
+title = "Broken Dreams"
+image = "/wp-content/uploads/2010/04/P4038113-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/14/side-yard-of-bluebonnets.md b/content/posts/2010/04/14/side-yard-of-bluebonnets.md
new file mode 100644
index 00000000..b0c3ca0f
--- /dev/null
+++ b/content/posts/2010/04/14/side-yard-of-bluebonnets.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-14T01:00:53-07:00"
+title = "Side Yard of Bluebonnets"
+image = "/wp-content/uploads/2010/04/P4038121-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/15/kitchen-wall.md b/content/posts/2010/04/15/kitchen-wall.md
new file mode 100644
index 00000000..58a68248
--- /dev/null
+++ b/content/posts/2010/04/15/kitchen-wall.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-15T01:00:53-07:00"
+title = "Kitchen Wall"
+image = "/wp-content/uploads/2010/04/P4038122-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/16/fence-and-bluebonnets.md b/content/posts/2010/04/16/fence-and-bluebonnets.md
new file mode 100644
index 00000000..0b67f600
--- /dev/null
+++ b/content/posts/2010/04/16/fence-and-bluebonnets.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-16T01:00:53-07:00"
+title = "Fence and Bluebonnets"
+image = "/wp-content/uploads/2010/04/P4038122-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/17/flea-circus.md b/content/posts/2010/04/17/flea-circus.md
new file mode 100644
index 00000000..e618ba88
--- /dev/null
+++ b/content/posts/2010/04/17/flea-circus.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-17T01:00:53-07:00"
+title = "Flea Circus"
+image = "/wp-content/uploads/2010/04/P41185521.jpg"
++++
+
+
+
+ Last weekend, I was able to take part in [The Houston Museum of Natural Science's Flicker Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/content/posts/2010/04/18/magic-balls.md b/content/posts/2010/04/18/magic-balls.md
new file mode 100644
index 00000000..cbf7e377
--- /dev/null
+++ b/content/posts/2010/04/18/magic-balls.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-18T01:00:53-07:00"
+title = "Magic Balls"
+image = "/wp-content/uploads/2010/04/P41185621.jpg"
++++
+
+
+
+ Last weekend, I was able to take part in [The Houston Museum of Natural Science's Flicker Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/content/posts/2010/04/19/golden-cup.md b/content/posts/2010/04/19/golden-cup.md
new file mode 100644
index 00000000..72e33d92
--- /dev/null
+++ b/content/posts/2010/04/19/golden-cup.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-19T01:00:53-07:00"
+title = "Golden Cup"
+image = "/wp-content/uploads/2010/04/P41185631.jpg"
++++
+
+
+
+ Last weekend, I was able to take part in [The Houston Museum of Natural Science's Flicker Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/content/posts/2010/04/21/magic-brass.md b/content/posts/2010/04/21/magic-brass.md
new file mode 100644
index 00000000..b9a1f04d
--- /dev/null
+++ b/content/posts/2010/04/21/magic-brass.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-20T01:00:53-07:00"
+title = "Magic Brass"
+image = "/wp-content/uploads/2010/04/P41185671.jpg"
++++
+
+
+
+ Last weekend, I was able to take part in [The Houston Museum of Natural Science's Flicker Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/content/posts/2010/04/21/magic-hand.md b/content/posts/2010/04/21/magic-hand.md
new file mode 100644
index 00000000..5c0187a7
--- /dev/null
+++ b/content/posts/2010/04/21/magic-hand.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-21T01:00:53-07:00"
+title = "Magic Hand"
+image = "/wp-content/uploads/2010/04/P41185681.jpg"
++++
+
+
+
+ Last weekend, I was able to take part in [The Houston Museum of Natural Science's Flicker Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/content/posts/2010/04/22/the-uss-enterprise.md b/content/posts/2010/04/22/the-uss-enterprise.md
new file mode 100644
index 00000000..44905adc
--- /dev/null
+++ b/content/posts/2010/04/22/the-uss-enterprise.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-22T01:00:53-07:00"
+title = "The USS Enterprise"
+image = "/wp-content/uploads/2010/04/P3167800-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/23/the-enola-gay.md b/content/posts/2010/04/23/the-enola-gay.md
new file mode 100644
index 00000000..4fe751f2
--- /dev/null
+++ b/content/posts/2010/04/23/the-enola-gay.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-23T01:00:53-07:00"
+title = "The Enola Gay"
+image = "/wp-content/uploads/2010/04/P3167808-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/24/wright-flyer-ii.md b/content/posts/2010/04/24/wright-flyer-ii.md
new file mode 100644
index 00000000..f3ee095c
--- /dev/null
+++ b/content/posts/2010/04/24/wright-flyer-ii.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-24T01:00:53-07:00"
+title = "Wright Flyer II"
+image = "/wp-content/uploads/2010/04/P3167813-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/25/sr-71.md b/content/posts/2010/04/25/sr-71.md
new file mode 100644
index 00000000..448d2328
--- /dev/null
+++ b/content/posts/2010/04/25/sr-71.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-25T01:00:53-07:00"
+title = "SR-71"
+image = "/wp-content/uploads/2010/04/P3167814-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/26/tall-bluebonnet.md b/content/posts/2010/04/26/tall-bluebonnet.md
new file mode 100644
index 00000000..d85c7ef4
--- /dev/null
+++ b/content/posts/2010/04/26/tall-bluebonnet.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-26T01:00:53-07:00"
+title = "Tall Bluebonnet"
+image = "/wp-content/uploads/2010/04/P4038061-21.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/27/capturing-the-flowers.md b/content/posts/2010/04/27/capturing-the-flowers.md
new file mode 100644
index 00000000..11466a71
--- /dev/null
+++ b/content/posts/2010/04/27/capturing-the-flowers.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-27T01:00:53-07:00"
+title = "Capturing the Flowers"
+image = "/wp-content/uploads/2010/04/P4038076-21.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/28/old-baylor.md b/content/posts/2010/04/28/old-baylor.md
new file mode 100644
index 00000000..5786a8a9
--- /dev/null
+++ b/content/posts/2010/04/28/old-baylor.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-28T01:00:53-07:00"
+title = "Old Baylor"
+image = "/wp-content/uploads/2010/04/P4038115-hdr1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/29/windmill-in-the-sky.md b/content/posts/2010/04/29/windmill-in-the-sky.md
new file mode 100644
index 00000000..2b8f104a
--- /dev/null
+++ b/content/posts/2010/04/29/windmill-in-the-sky.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-29T01:00:53-07:00"
+title = "Windmill In The Sky"
+image = "/wp-content/uploads/2010/04/P4038136-21.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/04/30/pollen.md b/content/posts/2010/04/30/pollen.md
new file mode 100644
index 00000000..cbee3ab7
--- /dev/null
+++ b/content/posts/2010/04/30/pollen.md
@@ -0,0 +1,9 @@
++++
+date = "2010-04-30T01:00:53-07:00"
+title = "Pollen"
+image = "/wp-content/uploads/2010/04/P4038186-21.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/01/red-church.md b/content/posts/2010/05/01/red-church.md
new file mode 100644
index 00000000..25dc6272
--- /dev/null
+++ b/content/posts/2010/05/01/red-church.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-01T01:00:53-07:00"
+title = "Red Church"
+image = "/wp-content/uploads/2010/04/P4038219-21.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/02/small-flower.md b/content/posts/2010/05/02/small-flower.md
new file mode 100644
index 00000000..f10f0ae7
--- /dev/null
+++ b/content/posts/2010/05/02/small-flower.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-02T01:00:53-07:00"
+title = "Small Flower"
+image = "/wp-content/uploads/2010/05/P4038228-2.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/03/flags-and-buildings.md b/content/posts/2010/05/03/flags-and-buildings.md
new file mode 100644
index 00000000..ce647e76
--- /dev/null
+++ b/content/posts/2010/05/03/flags-and-buildings.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-03T06:21:26-07:00"
+title = "Flags and Buildings"
+image = "/wp-content/uploads/2010/05/P4268863-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/04/after-the-party.md b/content/posts/2010/05/04/after-the-party.md
new file mode 100644
index 00000000..4d3b3e24
--- /dev/null
+++ b/content/posts/2010/05/04/after-the-party.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-04T01:00:48-07:00"
+title = "After the Party"
+image = "/wp-content/uploads/2010/05/P4268864-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/05/reflections-after-the-party.md b/content/posts/2010/05/05/reflections-after-the-party.md
new file mode 100644
index 00000000..2feee9c6
--- /dev/null
+++ b/content/posts/2010/05/05/reflections-after-the-party.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-05T01:00:21-07:00"
+title = "Reflections after the Party"
+image = "/wp-content/uploads/2010/05/P4268865-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/06/city-hall-ii.md b/content/posts/2010/05/06/city-hall-ii.md
new file mode 100644
index 00000000..7391b06d
--- /dev/null
+++ b/content/posts/2010/05/06/city-hall-ii.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-06T06:32:49-07:00"
+title = "City Hall II"
+image = "/wp-content/uploads/2010/05/DSCN2534-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/07/moon-and-building.md b/content/posts/2010/05/07/moon-and-building.md
new file mode 100644
index 00000000..354cf637
--- /dev/null
+++ b/content/posts/2010/05/07/moon-and-building.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-07T01:00:45-07:00"
+title = "Moon and Building"
+image = "/wp-content/uploads/2010/05/DSCN2535-1.jpg"
++++
+
+
+
+
diff --git a/content/posts/2010/05/08/skinny-reflection.md b/content/posts/2010/05/08/skinny-reflection.md
new file mode 100644
index 00000000..e9846227
--- /dev/null
+++ b/content/posts/2010/05/08/skinny-reflection.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-08T01:00:25-07:00"
+title = "Skinny Reflection"
+image = "/wp-content/uploads/2010/05/DSCN2536-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/09/no_escape.md b/content/posts/2010/05/09/no_escape.md
new file mode 100644
index 00000000..8d9d5cdb
--- /dev/null
+++ b/content/posts/2010/05/09/no_escape.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-09T01:00:57-07:00"
+title = "No escape"
+image = "/wp-content/uploads/2010/05/DSCN2538-1.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/10/row-of-jars.md b/content/posts/2010/05/10/row-of-jars.md
new file mode 100644
index 00000000..cdf7154d
--- /dev/null
+++ b/content/posts/2010/05/10/row-of-jars.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-10T01:00:37-07:00"
+title = "Row of Jars"
+image = "/wp-content/uploads/2010/05/DSCN2559-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/11/new-potatoes.md b/content/posts/2010/05/11/new-potatoes.md
new file mode 100644
index 00000000..7a83f7e3
--- /dev/null
+++ b/content/posts/2010/05/11/new-potatoes.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-11T01:01:37-07:00"
+title = "New Potatoes"
+image = "/wp-content/uploads/2010/05/DSCN2560-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/12/radish.md b/content/posts/2010/05/12/radish.md
new file mode 100644
index 00000000..974460d1
--- /dev/null
+++ b/content/posts/2010/05/12/radish.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-12T01:05:37-07:00"
+title = "Radish"
+image = "/wp-content/uploads/2010/05/DSCN2561-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/13/yellow-rose.md b/content/posts/2010/05/13/yellow-rose.md
new file mode 100644
index 00000000..58bdbced
--- /dev/null
+++ b/content/posts/2010/05/13/yellow-rose.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-13T01:05:37-07:00"
+title = "Yellow Rose"
+image = "/wp-content/uploads/2010/05/DSCN2563-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/14/metal-star-and-rocks.md b/content/posts/2010/05/14/metal-star-and-rocks.md
new file mode 100644
index 00000000..14fe4802
--- /dev/null
+++ b/content/posts/2010/05/14/metal-star-and-rocks.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-14T01:05:37-07:00"
+title = "Metal Star and Rocks"
+image = "/wp-content/uploads/2010/05/DSCN2569-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/15/empty-cafe.md b/content/posts/2010/05/15/empty-cafe.md
new file mode 100644
index 00000000..85a0d238
--- /dev/null
+++ b/content/posts/2010/05/15/empty-cafe.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-15T01:05:37-07:00"
+title = "Empty Cafe"
+image = "/wp-content/uploads/2010/05/DSCN2583-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/16/roof-beam-and-sign.md b/content/posts/2010/05/16/roof-beam-and-sign.md
new file mode 100644
index 00000000..56d36e6d
--- /dev/null
+++ b/content/posts/2010/05/16/roof-beam-and-sign.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-16T01:05:37-07:00"
+title = "Roof Beam and Sign"
+image = "/wp-content/uploads/2010/05/DSCN2593-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/17/magnolia.md b/content/posts/2010/05/17/magnolia.md
new file mode 100644
index 00000000..d0e8fddc
--- /dev/null
+++ b/content/posts/2010/05/17/magnolia.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-17T01:05:37-07:00"
+title = "Magnolia"
+image = "/wp-content/uploads/2010/05/DSCN2624-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/18/you-say-pecans.md b/content/posts/2010/05/18/you-say-pecans.md
new file mode 100644
index 00000000..62344846
--- /dev/null
+++ b/content/posts/2010/05/18/you-say-pecans.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-18T01:05:37-07:00"
+title = "You Say Pecans..."
+image = "/wp-content/uploads/2010/05/DSCN2643-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/19/clasping-leaf-coneflower.md b/content/posts/2010/05/19/clasping-leaf-coneflower.md
new file mode 100644
index 00000000..c6ce99d1
--- /dev/null
+++ b/content/posts/2010/05/19/clasping-leaf-coneflower.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-19T01:00:37-07:00"
+title = "Clasping-leaf Coneflower"
+image = "/wp-content/uploads/2010/05/P5159076-11.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/20/field-of-coneflowers.md b/content/posts/2010/05/20/field-of-coneflowers.md
new file mode 100644
index 00000000..1a98b449
--- /dev/null
+++ b/content/posts/2010/05/20/field-of-coneflowers.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-20T00:05:37-07:00"
+title = "Field of Coneflowers"
+image = "/wp-content/uploads/2010/05/P5159107-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/21/texas-thistle-and-friend.md b/content/posts/2010/05/21/texas-thistle-and-friend.md
new file mode 100644
index 00000000..4df68019
--- /dev/null
+++ b/content/posts/2010/05/21/texas-thistle-and-friend.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-21T00:05:37-07:00"
+title = "Texas Thistle and Friend"
+image = "/wp-content/uploads/2010/05/P5159273-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/22/texas-thistle-and-coneflowers.md b/content/posts/2010/05/22/texas-thistle-and-coneflowers.md
new file mode 100644
index 00000000..cd5383e1
--- /dev/null
+++ b/content/posts/2010/05/22/texas-thistle-and-coneflowers.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-22T00:05:37-07:00"
+title = "Texas Thistle and Coneflowers"
+image = "/wp-content/uploads/2010/05/P5159274-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/23/texas-thistle-ii.md b/content/posts/2010/05/23/texas-thistle-ii.md
new file mode 100644
index 00000000..b1796ac0
--- /dev/null
+++ b/content/posts/2010/05/23/texas-thistle-ii.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-23T00:05:37-07:00"
+title = "Texas Thistle II"
+image = "/wp-content/uploads/2010/05/P5159280-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/24/coneflowers-in-the-woods.md b/content/posts/2010/05/24/coneflowers-in-the-woods.md
new file mode 100644
index 00000000..d27ae464
--- /dev/null
+++ b/content/posts/2010/05/24/coneflowers-in-the-woods.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-24T01:05:37-07:00"
+title = "Coneflowers in the Woods"
+image = "/wp-content/uploads/2010/05/P5159304-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/25/butterfly-on-coneflower.md b/content/posts/2010/05/25/butterfly-on-coneflower.md
new file mode 100644
index 00000000..fb7359d6
--- /dev/null
+++ b/content/posts/2010/05/25/butterfly-on-coneflower.md
@@ -0,0 +1,9 @@
++++
+date = "2010-05-25T00:05:37-07:00"
+title = "Butterfly on Coneflower"
+image = "/wp-content/uploads/2010/05/P5159343-12.jpg"
++++
+
+
+
+
\ No newline at end of file
diff --git a/content/posts/2010/05/25/metal-star.md b/content/posts/2010/05/25/metal-star.md
new file mode 100644
index 00000000..e1f94c0f
--- /dev/null
+++ b/content/posts/2010/05/25/metal-star.md
@@ -0,0 +1,8 @@
++++
+date = "2010-05-25T19:05:37-07:00"
+title = "Metal Star"
+image = "/wp-content/uploads/2010/05/DSCN2566.jpg"
++++
+
+
+
diff --git a/content/posts/2010/05/26/wall-lock.md b/content/posts/2010/05/26/wall-lock.md
new file mode 100644
index 00000000..f3d60a74
--- /dev/null
+++ b/content/posts/2010/05/26/wall-lock.md
@@ -0,0 +1,8 @@
++++
+date = "2010-05-26T01:05:37-07:00"
+title = "Wall Lock"
+image = "/wp-content/uploads/2010/05/DSCN2575.jpg"
++++
+
+
+
diff --git a/content/posts/2010/05/27/water-fall.md b/content/posts/2010/05/27/water-fall.md
new file mode 100644
index 00000000..a87d40c7
--- /dev/null
+++ b/content/posts/2010/05/27/water-fall.md
@@ -0,0 +1,8 @@
++++
+date = "2010-05-27T01:05:37-07:00"
+title = "Water Fall"
+image = "/wp-content/uploads/2010/05/DSCN2576.jpg"
++++
+
+
+
diff --git a/content/posts/2010/05/28/down-spout.md b/content/posts/2010/05/28/down-spout.md
new file mode 100644
index 00000000..b4c72db6
--- /dev/null
+++ b/content/posts/2010/05/28/down-spout.md
@@ -0,0 +1,8 @@
++++
+date = "2010-05-28T01:05:37-07:00"
+title = "Down Spout"
+image = "/wp-content/uploads/2010/05/DSCN2603.jpg"
++++
+
+
+
diff --git a/content/posts/2010/05/29/lights-in-the-corner.md b/content/posts/2010/05/29/lights-in-the-corner.md
new file mode 100644
index 00000000..fb5bcc69
--- /dev/null
+++ b/content/posts/2010/05/29/lights-in-the-corner.md
@@ -0,0 +1,8 @@
++++
+date = "2010-05-29T01:05:37-07:00"
+title = "Lights In The Corner"
+image = "/wp-content/uploads/2010/05/DSCN2607.jpg"
++++
+
+
+
diff --git a/content/posts/2010/05/30/rusty-support.md b/content/posts/2010/05/30/rusty-support.md
new file mode 100644
index 00000000..f8e16aea
--- /dev/null
+++ b/content/posts/2010/05/30/rusty-support.md
@@ -0,0 +1,8 @@
++++
+date = "2010-05-30T01:05:37-07:00"
+title = "Rusty Support"
+image = "/wp-content/uploads/2010/05/DSCN2633.jpg"
++++
+
+
+
diff --git a/content/posts/2010/05/31/fancy-fork.md b/content/posts/2010/05/31/fancy-fork.md
new file mode 100644
index 00000000..39cc5abf
--- /dev/null
+++ b/content/posts/2010/05/31/fancy-fork.md
@@ -0,0 +1,8 @@
++++
+date = "2010-05-31T01:05:37-07:00"
+title = "Fancy Fork"
+image = "/wp-content/uploads/2010/05/DSCN2641.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/01/captured.md b/content/posts/2010/06/01/captured.md
new file mode 100644
index 00000000..6d3f3f70
--- /dev/null
+++ b/content/posts/2010/06/01/captured.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-01T01:05:37-07:00"
+title = "Captured!"
+image = "/wp-content/uploads/2010/05/DSCN2645.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/02/abandoned-fun.md b/content/posts/2010/06/02/abandoned-fun.md
new file mode 100644
index 00000000..6675206d
--- /dev/null
+++ b/content/posts/2010/06/02/abandoned-fun.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-02T01:05:37-07:00"
+title = "Abandoned Fun"
+image = "/wp-content/uploads/2010/05/DSCN2652.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/03/polkadot-bike.md b/content/posts/2010/06/03/polkadot-bike.md
new file mode 100644
index 00000000..98e01664
--- /dev/null
+++ b/content/posts/2010/06/03/polkadot-bike.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-03T01:05:37-07:00"
+title = "PolkaDot Bike"
+image = "/wp-content/uploads/2010/05/DSCN2673.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/04/blue-on-red.md b/content/posts/2010/06/04/blue-on-red.md
new file mode 100644
index 00000000..309dbccb
--- /dev/null
+++ b/content/posts/2010/06/04/blue-on-red.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-04T01:05:37-07:00"
+title = "Blue on Red"
+image = "/wp-content/uploads/2010/05/P5169412.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/05/warped-sign.md b/content/posts/2010/06/05/warped-sign.md
new file mode 100644
index 00000000..d18b3064
--- /dev/null
+++ b/content/posts/2010/06/05/warped-sign.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-05T01:05:37-07:00"
+title = "Warped Sign"
+image = "/wp-content/uploads/2010/06/DSCN2656-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/06/sunrise-through-condensation.md b/content/posts/2010/06/06/sunrise-through-condensation.md
new file mode 100644
index 00000000..f40f1d87
--- /dev/null
+++ b/content/posts/2010/06/06/sunrise-through-condensation.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-06T01:05:37-07:00"
+title = "Sunrise Through Condensation "
+image = "/wp-content/uploads/2010/06/DSCN2678-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/07/sunrise-under-beltway-8.md b/content/posts/2010/06/07/sunrise-under-beltway-8.md
new file mode 100644
index 00000000..a550b044
--- /dev/null
+++ b/content/posts/2010/06/07/sunrise-under-beltway-8.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-07T01:05:37-07:00"
+title = "Sunrise Under Beltway 8"
+image = "/wp-content/uploads/2010/06/DSCN2680-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/08/above-it-all.md b/content/posts/2010/06/08/above-it-all.md
new file mode 100644
index 00000000..1179503e
--- /dev/null
+++ b/content/posts/2010/06/08/above-it-all.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-08T01:05:37-07:00"
+title = "Above It All"
+image = "/wp-content/uploads/2010/06/P3147781-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/09/fire-system-behind-bars.md b/content/posts/2010/06/09/fire-system-behind-bars.md
new file mode 100644
index 00000000..778d0cb2
--- /dev/null
+++ b/content/posts/2010/06/09/fire-system-behind-bars.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-09T01:05:37-07:00"
+title = "Fire System Behind Bars"
+image = "/wp-content/uploads/2010/06/P3267927-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/10/path-to-fun.md b/content/posts/2010/06/10/path-to-fun.md
new file mode 100644
index 00000000..6fabde0e
--- /dev/null
+++ b/content/posts/2010/06/10/path-to-fun.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-10T01:05:37-07:00"
+title = "Path to Fun?"
+image = "/wp-content/uploads/2010/06/P4288889-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/11/moon-and-streetlight.md b/content/posts/2010/06/11/moon-and-streetlight.md
new file mode 100644
index 00000000..56683938
--- /dev/null
+++ b/content/posts/2010/06/11/moon-and-streetlight.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-11T01:05:37-07:00"
+title = "Moon and Streetlight"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/06/12/light-and-shadow-on-steps.md b/content/posts/2010/06/12/light-and-shadow-on-steps.md
new file mode 100644
index 00000000..7d3f95d1
--- /dev/null
+++ b/content/posts/2010/06/12/light-and-shadow-on-steps.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-12T00:03:01-07:00"
+title = "Light and Shadow on Steps"
+image = "/wp-content/uploads/2010/06/DSCN25446.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/13/flowers-before-justice.md b/content/posts/2010/06/13/flowers-before-justice.md
new file mode 100644
index 00000000..dd437e8b
--- /dev/null
+++ b/content/posts/2010/06/13/flowers-before-justice.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-13T00:03:01-07:00"
+title = "Flowers before Justice"
+image = "/wp-content/uploads/2010/06/P4288885-14.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/14/roadside-color.md b/content/posts/2010/06/14/roadside-color.md
new file mode 100644
index 00000000..da977e76
--- /dev/null
+++ b/content/posts/2010/06/14/roadside-color.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-14T00:03:01-07:00"
+title = "Roadside Color"
+image = "/wp-content/uploads/2010/06/P50390524.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/15/java-can-be-pretty-2.md b/content/posts/2010/06/15/java-can-be-pretty-2.md
new file mode 100644
index 00000000..1d36723c
--- /dev/null
+++ b/content/posts/2010/06/15/java-can-be-pretty-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-15T00:03:01-07:00"
+title = "Java Can Be Pretty"
+image = "/wp-content/uploads/2010/06/img_48351.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/16/string-of-stars-2.md b/content/posts/2010/06/16/string-of-stars-2.md
new file mode 100644
index 00000000..cddb4363
--- /dev/null
+++ b/content/posts/2010/06/16/string-of-stars-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-16T00:03:01-07:00"
+title = "String of Stars"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/06/17/metro-rail-blur.md b/content/posts/2010/06/17/metro-rail-blur.md
new file mode 100644
index 00000000..83fcfb18
--- /dev/null
+++ b/content/posts/2010/06/17/metro-rail-blur.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-17T00:03:01-07:00"
+title = "Metro Rail Blur"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/06/18/ghost-car.md b/content/posts/2010/06/18/ghost-car.md
new file mode 100644
index 00000000..d107ada9
--- /dev/null
+++ b/content/posts/2010/06/18/ghost-car.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-18T00:03:01-07:00"
+title = "Ghost Car"
+image = "/wp-content/uploads/2010/06/p7183205.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/19/sunrise-over-lake-livingston.md b/content/posts/2010/06/19/sunrise-over-lake-livingston.md
new file mode 100644
index 00000000..56eb28ca
--- /dev/null
+++ b/content/posts/2010/06/19/sunrise-over-lake-livingston.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-19T00:03:01-07:00"
+title = "Sunrise over Lake Livingston"
+image = "/wp-content/uploads/2010/06/pb146389.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/20/wisps.md b/content/posts/2010/06/20/wisps.md
new file mode 100644
index 00000000..4ede10a0
--- /dev/null
+++ b/content/posts/2010/06/20/wisps.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-20T00:03:01-07:00"
+title = "Wisps"
+image = "/wp-content/uploads/2010/06/img_6930-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/21/power-skyline.md b/content/posts/2010/06/21/power-skyline.md
new file mode 100644
index 00000000..54772e1c
--- /dev/null
+++ b/content/posts/2010/06/21/power-skyline.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-21T00:03:01-07:00"
+title = "Power Skyline"
+image = "/wp-content/uploads/2010/06/img_6947.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/22/jesus-saves.md b/content/posts/2010/06/22/jesus-saves.md
new file mode 100644
index 00000000..4422ea65
--- /dev/null
+++ b/content/posts/2010/06/22/jesus-saves.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-22T00:03:01-07:00"
+title = "Jesus Saves"
+image = "/wp-content/uploads/2010/06/img_6949.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/23/reflections-of-progress.md b/content/posts/2010/06/23/reflections-of-progress.md
new file mode 100644
index 00000000..bd5319ba
--- /dev/null
+++ b/content/posts/2010/06/23/reflections-of-progress.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-23T00:03:01-07:00"
+title = "Reflections of Progress"
+image = "/wp-content/uploads/2010/06/img_6953.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/24/power-sunset-2.md b/content/posts/2010/06/24/power-sunset-2.md
new file mode 100644
index 00000000..9c548599
--- /dev/null
+++ b/content/posts/2010/06/24/power-sunset-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-24T00:03:01-07:00"
+title = "Power Sunset 2"
+image = "/wp-content/uploads/2010/06/pb166609.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/25/purple-lily.md b/content/posts/2010/06/25/purple-lily.md
new file mode 100644
index 00000000..d5dbb21f
--- /dev/null
+++ b/content/posts/2010/06/25/purple-lily.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-25T00:03:01-07:00"
+title = "Purple Lily"
+image = "/wp-content/uploads/2010/06/pb286923.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/26/red-tunnel.md b/content/posts/2010/06/26/red-tunnel.md
new file mode 100644
index 00000000..d59e8754
--- /dev/null
+++ b/content/posts/2010/06/26/red-tunnel.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-26T00:03:01-07:00"
+title = "Red Tunnel"
+image = "/wp-content/uploads/2010/06/pc117110.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/27/view-from-above.md b/content/posts/2010/06/27/view-from-above.md
new file mode 100644
index 00000000..898445f9
--- /dev/null
+++ b/content/posts/2010/06/27/view-from-above.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-27T00:03:13-07:00"
+title = "View from above"
+image = "/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/28/above-it-all-2.md b/content/posts/2010/06/28/above-it-all-2.md
new file mode 100644
index 00000000..8329a8ed
--- /dev/null
+++ b/content/posts/2010/06/28/above-it-all-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-28T00:03:01-07:00"
+title = "Above It All"
+image = "/wp-content/uploads/2010/06/P6229568.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/29/clouds-below.md b/content/posts/2010/06/29/clouds-below.md
new file mode 100644
index 00000000..7a4d2b82
--- /dev/null
+++ b/content/posts/2010/06/29/clouds-below.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-29T00:03:01-07:00"
+title = "Clouds below"
+image = "/wp-content/uploads/2010/06/P6229569.jpg"
++++
+
+
+
diff --git a/content/posts/2010/06/30/the-world-below-clouds.md b/content/posts/2010/06/30/the-world-below-clouds.md
new file mode 100644
index 00000000..d75ab5cc
--- /dev/null
+++ b/content/posts/2010/06/30/the-world-below-clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2010-06-30T00:03:01-07:00"
+title = "The World Below Clouds"
+image = "/wp-content/uploads/2010/06/P6229570.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/01/boston-from-the-air.md b/content/posts/2010/07/01/boston-from-the-air.md
new file mode 100644
index 00000000..2fc9eba4
--- /dev/null
+++ b/content/posts/2010/07/01/boston-from-the-air.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-01T00:03:01-07:00"
+title = "Boston From The Air"
+image = "/wp-content/uploads/2010/06/P6229571.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/02/light-water-lilly.md b/content/posts/2010/07/02/light-water-lilly.md
new file mode 100644
index 00000000..6f9b3f98
--- /dev/null
+++ b/content/posts/2010/07/02/light-water-lilly.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-02T00:03:01-07:00"
+title = "Light Water Lilly"
+image = "/wp-content/uploads/2010/07/P6299872.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/03/mopac-bridge-over-ladybird-lake.md b/content/posts/2010/07/03/mopac-bridge-over-ladybird-lake.md
new file mode 100644
index 00000000..243e247c
--- /dev/null
+++ b/content/posts/2010/07/03/mopac-bridge-over-ladybird-lake.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-03T00:03:01-07:00"
+title = "MoPac Bridge over Ladybird Lake"
+image = "/wp-content/uploads/2010/07/P6290047.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/04/spike-with-petals.md b/content/posts/2010/07/04/spike-with-petals.md
new file mode 100644
index 00000000..4931659c
--- /dev/null
+++ b/content/posts/2010/07/04/spike-with-petals.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-04T00:03:01-07:00"
+title = "Spike with Petals"
+image = "/wp-content/uploads/2010/07/P6299876.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/05/austin-sky-line.md b/content/posts/2010/07/05/austin-sky-line.md
new file mode 100644
index 00000000..7cc73470
--- /dev/null
+++ b/content/posts/2010/07/05/austin-sky-line.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-05T00:03:01-07:00"
+title = "Austin Sky Line"
+image = "/wp-content/uploads/2010/07/P6299897.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/06/zen-light.md b/content/posts/2010/07/06/zen-light.md
new file mode 100644
index 00000000..b908436d
--- /dev/null
+++ b/content/posts/2010/07/06/zen-light.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-06T00:03:01-07:00"
+title = "Zen Light"
+image = "/wp-content/uploads/2010/07/P6299919.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/07/congress-street-bridge-at-sunset.md b/content/posts/2010/07/07/congress-street-bridge-at-sunset.md
new file mode 100644
index 00000000..4c554521
--- /dev/null
+++ b/content/posts/2010/07/07/congress-street-bridge-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-07T00:03:01-07:00"
+title = "Congress Street Bridge at Sunset"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/07/08/red-door.md b/content/posts/2010/07/08/red-door.md
new file mode 100644
index 00000000..3f4fb9af
--- /dev/null
+++ b/content/posts/2010/07/08/red-door.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-08T00:03:01-07:00"
+title = "Red Door"
+image = "/wp-content/uploads/2010/07/P6300155.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/09/kaleidoscope-at-austin-childerns-museum.md b/content/posts/2010/07/09/kaleidoscope-at-austin-childerns-museum.md
new file mode 100644
index 00000000..da8ec31d
--- /dev/null
+++ b/content/posts/2010/07/09/kaleidoscope-at-austin-childerns-museum.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-09T00:03:01-07:00"
+title = "Kaleidoscope at Austin Childern’s Museum"
+image = "/wp-content/uploads/2010/07/P6300160.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/10/bottlecap-window.md b/content/posts/2010/07/10/bottlecap-window.md
new file mode 100644
index 00000000..ae7e2156
--- /dev/null
+++ b/content/posts/2010/07/10/bottlecap-window.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-10T00:03:01-07:00"
+title = "Bottlecap Window"
+image = "/wp-content/uploads/2010/07/P6300215.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/11/helix-of-life-for-play.md b/content/posts/2010/07/11/helix-of-life-for-play.md
new file mode 100644
index 00000000..3d5d8b27
--- /dev/null
+++ b/content/posts/2010/07/11/helix-of-life-for-play.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-11T00:03:01-07:00"
+title = "Helix of Life for Play"
+image = "/wp-content/uploads/2010/07/P6279615-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/12/water-lilly.md b/content/posts/2010/07/12/water-lilly.md
new file mode 100644
index 00000000..dd2c516e
--- /dev/null
+++ b/content/posts/2010/07/12/water-lilly.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-12T00:03:01-07:00"
+title = "Water Lilly"
+image = "/wp-content/uploads/2010/07/P6299872-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/13/reflection-place.md b/content/posts/2010/07/13/reflection-place.md
new file mode 100644
index 00000000..09a1c4eb
--- /dev/null
+++ b/content/posts/2010/07/13/reflection-place.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-13T00:03:01-07:00"
+title = "Reflection Place"
+image = "/wp-content/uploads/2010/07/P6299939-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/14/yellow-orage-rose.md b/content/posts/2010/07/14/yellow-orage-rose.md
new file mode 100644
index 00000000..2858710c
--- /dev/null
+++ b/content/posts/2010/07/14/yellow-orage-rose.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-14T00:03:01-07:00"
+title = "Yellow-Orage Rose"
+image = "/wp-content/uploads/2010/07/P6299968-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/15/feed-me.md b/content/posts/2010/07/15/feed-me.md
new file mode 100644
index 00000000..60a2cddf
--- /dev/null
+++ b/content/posts/2010/07/15/feed-me.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-15T00:03:01-07:00"
+title = "Feed Me!"
+image = "/wp-content/uploads/2010/07/P7010390-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/16/congress-st-bridge-at-sunset.md b/content/posts/2010/07/16/congress-st-bridge-at-sunset.md
new file mode 100644
index 00000000..a89dfde3
--- /dev/null
+++ b/content/posts/2010/07/16/congress-st-bridge-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-16T00:03:01-07:00"
+title = "Congress St. Bridge at Sunset"
+image = "/wp-content/uploads/2010/07/P6290081.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/17/spider.md b/content/posts/2010/07/17/spider.md
new file mode 100644
index 00000000..d5a0f560
--- /dev/null
+++ b/content/posts/2010/07/17/spider.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-17T00:03:01-07:00"
+title = "Spider!"
+image = "/wp-content/uploads/2010/07/P6299911.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/18/zen-path.md b/content/posts/2010/07/18/zen-path.md
new file mode 100644
index 00000000..1438049c
--- /dev/null
+++ b/content/posts/2010/07/18/zen-path.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-18T00:03:01-07:00"
+title = "Zen Path"
+image = "/wp-content/uploads/2010/07/P6299922.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/19/blue-and-white-flowers.md b/content/posts/2010/07/19/blue-and-white-flowers.md
new file mode 100644
index 00000000..7bf15510
--- /dev/null
+++ b/content/posts/2010/07/19/blue-and-white-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-19T00:03:01-07:00"
+title = "Blue and White Flowers"
+image = "/wp-content/uploads/2010/07/P6299955.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/20/austin-sky-line-reflected.md b/content/posts/2010/07/20/austin-sky-line-reflected.md
new file mode 100644
index 00000000..53324823
--- /dev/null
+++ b/content/posts/2010/07/20/austin-sky-line-reflected.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-20T00:03:01-07:00"
+title = "Austin Sky Line, Reflected"
+image = "/wp-content/uploads/2010/07/P6299999.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/21/light-and-shadow-on-steps-2.md b/content/posts/2010/07/21/light-and-shadow-on-steps-2.md
new file mode 100644
index 00000000..084c12d4
--- /dev/null
+++ b/content/posts/2010/07/21/light-and-shadow-on-steps-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-21T00:03:01-07:00"
+title = "Light and Shadow on Steps"
+image = "/wp-content/uploads/2010/07/DSCN2544.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/22/blue.md b/content/posts/2010/07/22/blue.md
new file mode 100644
index 00000000..f4b61140
--- /dev/null
+++ b/content/posts/2010/07/22/blue.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-22T00:03:01-07:00"
+title = "Blue"
+image = "/wp-content/uploads/2010/07/P6279780.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/23/water-filtering-plant.md b/content/posts/2010/07/23/water-filtering-plant.md
new file mode 100644
index 00000000..d6c5b11a
--- /dev/null
+++ b/content/posts/2010/07/23/water-filtering-plant.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-23T00:03:01-07:00"
+title = "Water Filtering Plant"
+image = "/wp-content/uploads/2010/07/P6290049.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/24/train-tressel.md b/content/posts/2010/07/24/train-tressel.md
new file mode 100644
index 00000000..cea160b5
--- /dev/null
+++ b/content/posts/2010/07/24/train-tressel.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-24T00:03:01-07:00"
+title = "Train Tressel"
+image = "/wp-content/uploads/2010/07/P6290053.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/25/red.md b/content/posts/2010/07/25/red.md
new file mode 100644
index 00000000..ac758b24
--- /dev/null
+++ b/content/posts/2010/07/25/red.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-25T00:03:01-07:00"
+title = "Red"
+image = "/wp-content/uploads/2010/07/P6299953.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/26/shovels-in-the-sky.md b/content/posts/2010/07/26/shovels-in-the-sky.md
new file mode 100644
index 00000000..e751e43f
--- /dev/null
+++ b/content/posts/2010/07/26/shovels-in-the-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-26T00:03:01-07:00"
+title = "Shovels in the Sky"
+image = "/wp-content/uploads/2010/07/P7240724-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/27/houston-at-sunset.md b/content/posts/2010/07/27/houston-at-sunset.md
new file mode 100644
index 00000000..f611a016
--- /dev/null
+++ b/content/posts/2010/07/27/houston-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-27T00:03:01-07:00"
+title = "Houston At Sunset"
+image = "/wp-content/uploads/2010/07/P7240780-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/28/ghost-train.md b/content/posts/2010/07/28/ghost-train.md
new file mode 100644
index 00000000..4bb4cd8a
--- /dev/null
+++ b/content/posts/2010/07/28/ghost-train.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-28T00:03:01-07:00"
+title = "Ghost Train"
+image = "/wp-content/uploads/2010/07/P7240943-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/29/ghost-train-2.md b/content/posts/2010/07/29/ghost-train-2.md
new file mode 100644
index 00000000..0ee58091
--- /dev/null
+++ b/content/posts/2010/07/29/ghost-train-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-29T00:03:01-07:00"
+title = "Ghost Train 2"
+image = "/wp-content/uploads/2010/07/P7240945-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/30/al.md b/content/posts/2010/07/30/al.md
new file mode 100644
index 00000000..57dd5cc6
--- /dev/null
+++ b/content/posts/2010/07/30/al.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-30T00:03:01-07:00"
+title = "AL"
+image = "/wp-content/uploads/2010/07/DSCN2683.jpg"
++++
+
+
+
diff --git a/content/posts/2010/07/31/a-b-mcgill-co.md b/content/posts/2010/07/31/a-b-mcgill-co.md
new file mode 100644
index 00000000..6dc064d0
--- /dev/null
+++ b/content/posts/2010/07/31/a-b-mcgill-co.md
@@ -0,0 +1,8 @@
++++
+date = "2010-07-31T00:03:01-07:00"
+title = "A.B. McGill & Co"
+image = "/wp-content/uploads/2010/07/P6279700.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/01/san-gabriel-river.md b/content/posts/2010/08/01/san-gabriel-river.md
new file mode 100644
index 00000000..b1dece3f
--- /dev/null
+++ b/content/posts/2010/08/01/san-gabriel-river.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-01T00:03:01-07:00"
+title = "San Gabriel River"
+image = "/wp-content/uploads/2010/07/P6279742.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/02/rain-on-the-ground.md b/content/posts/2010/08/02/rain-on-the-ground.md
new file mode 100644
index 00000000..7b86a25f
--- /dev/null
+++ b/content/posts/2010/08/02/rain-on-the-ground.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-02T00:03:01-07:00"
+title = "Rain on the Ground"
+image = "/wp-content/uploads/2010/07/pc177168.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/03/pink-lilly-with-bug.md b/content/posts/2010/08/03/pink-lilly-with-bug.md
new file mode 100644
index 00000000..aedd0f40
--- /dev/null
+++ b/content/posts/2010/08/03/pink-lilly-with-bug.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-03T00:03:01-07:00"
+title = "Pink Lilly with Bug"
+image = "/wp-content/uploads/2010/08/P6299898.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/04/pink-moon.md b/content/posts/2010/08/04/pink-moon.md
new file mode 100644
index 00000000..3a3fdc08
--- /dev/null
+++ b/content/posts/2010/08/04/pink-moon.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-04T00:03:01-07:00"
+title = "Pink Moon"
+image = "/wp-content/uploads/2010/08/P7240806.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/05/night-lights.md b/content/posts/2010/08/05/night-lights.md
new file mode 100644
index 00000000..61508070
--- /dev/null
+++ b/content/posts/2010/08/05/night-lights.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-05T00:03:01-07:00"
+title = "Night Lights"
+image = "/wp-content/uploads/2010/08/P7240852.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/06/reflections-of-neon.md b/content/posts/2010/08/06/reflections-of-neon.md
new file mode 100644
index 00000000..0bb8b4a6
--- /dev/null
+++ b/content/posts/2010/08/06/reflections-of-neon.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-06T00:03:01-07:00"
+title = "Reflections of Neon"
+image = "/wp-content/uploads/2010/08/P7240897.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/07/downtown-houston-in-monochrome.md b/content/posts/2010/08/07/downtown-houston-in-monochrome.md
new file mode 100644
index 00000000..279f1520
--- /dev/null
+++ b/content/posts/2010/08/07/downtown-houston-in-monochrome.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-07T00:03:01-07:00"
+title = "Downtown Houston in Monochrome"
+image = "/wp-content/uploads/2010/08/img_6948.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/08/temple-in-the-sky.md b/content/posts/2010/08/08/temple-in-the-sky.md
new file mode 100644
index 00000000..0d6f5631
--- /dev/null
+++ b/content/posts/2010/08/08/temple-in-the-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-08T00:03:01-07:00"
+title = "Temple in the sky"
+image = "/wp-content/uploads/2010/08/P3318032.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/09/clouds.md b/content/posts/2010/08/09/clouds.md
new file mode 100644
index 00000000..2feb80b9
--- /dev/null
+++ b/content/posts/2010/08/09/clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-09T00:03:01-07:00"
+title = "Clouds"
+image = "/wp-content/uploads/2010/08/P4108512.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/10/cone-on-corner.md b/content/posts/2010/08/10/cone-on-corner.md
new file mode 100644
index 00000000..41c6b710
--- /dev/null
+++ b/content/posts/2010/08/10/cone-on-corner.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-10T00:03:01-07:00"
+title = "Cone on Corner"
+image = "/wp-content/uploads/2010/08/img_7003.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/11/red-2.md b/content/posts/2010/08/11/red-2.md
new file mode 100644
index 00000000..96f0d0b3
--- /dev/null
+++ b/content/posts/2010/08/11/red-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-11T00:03:01-07:00"
+title = "Red!"
+image = "/wp-content/uploads/2010/08/img_7080.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/12/whooos-there.md b/content/posts/2010/08/12/whooos-there.md
new file mode 100644
index 00000000..c1fdcc1a
--- /dev/null
+++ b/content/posts/2010/08/12/whooos-there.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-12T00:03:01-07:00"
+title = "Whooo’s there?"
+image = "/wp-content/uploads/2010/08/p1247435.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/13/day-of-the-dead.md b/content/posts/2010/08/13/day-of-the-dead.md
new file mode 100644
index 00000000..07f174fd
--- /dev/null
+++ b/content/posts/2010/08/13/day-of-the-dead.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-13T21:46:28-07:00"
+title = "Day of the Dead"
+image = "/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/14/sign-at-sunset.md b/content/posts/2010/08/14/sign-at-sunset.md
new file mode 100644
index 00000000..8b47c694
--- /dev/null
+++ b/content/posts/2010/08/14/sign-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-14T00:03:01-07:00"
+title = "Sign at Sunset"
+image = "/wp-content/uploads/2010/08/p1131308-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/15/stop-for-the-clouds.md b/content/posts/2010/08/15/stop-for-the-clouds.md
new file mode 100644
index 00000000..7f6a0be5
--- /dev/null
+++ b/content/posts/2010/08/15/stop-for-the-clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-15T00:03:01-07:00"
+title = "Stop for the Clouds"
+image = "/wp-content/uploads/2010/08/p7264697-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/16/rockies.md b/content/posts/2010/08/16/rockies.md
new file mode 100644
index 00000000..71bec18d
--- /dev/null
+++ b/content/posts/2010/08/16/rockies.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-16T00:03:01-07:00"
+title = "Rockies"
+image = "/wp-content/uploads/2010/08/p7285015-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/17/the-balinese-room.md b/content/posts/2010/08/17/the-balinese-room.md
new file mode 100644
index 00000000..43381059
--- /dev/null
+++ b/content/posts/2010/08/17/the-balinese-room.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-17T00:03:01-07:00"
+title = "The Balinese Room"
+image = "/wp-content/uploads/2010/08/p9115694-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/18/flagship-at-sunrise.md b/content/posts/2010/08/18/flagship-at-sunrise.md
new file mode 100644
index 00000000..2b7f5df9
--- /dev/null
+++ b/content/posts/2010/08/18/flagship-at-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-18T00:03:01-07:00"
+title = "Flagship At Sunrise"
+image = "/wp-content/uploads/2010/08/p9156397-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/19/field-of-sunflowers-2.md b/content/posts/2010/08/19/field-of-sunflowers-2.md
new file mode 100644
index 00000000..955cd265
--- /dev/null
+++ b/content/posts/2010/08/19/field-of-sunflowers-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-19T00:03:01-07:00"
+title = "Field of Sunflowers"
+image = "/wp-content/uploads/2010/08/pa016964-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/20/lone-color.md b/content/posts/2010/08/20/lone-color.md
new file mode 100644
index 00000000..58594c5f
--- /dev/null
+++ b/content/posts/2010/08/20/lone-color.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-20T00:03:01-07:00"
+title = "Lone Color"
+image = "/wp-content/uploads/2010/08/pa017019-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/21/reflected-neighbors.md b/content/posts/2010/08/21/reflected-neighbors.md
new file mode 100644
index 00000000..1e573ec8
--- /dev/null
+++ b/content/posts/2010/08/21/reflected-neighbors.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-21T00:03:01-07:00"
+title = "Reflected Neighbors"
+image = "/wp-content/uploads/2010/08/IMG_7493-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/22/purple-2.md b/content/posts/2010/08/22/purple-2.md
new file mode 100644
index 00000000..0280d824
--- /dev/null
+++ b/content/posts/2010/08/22/purple-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-22T00:03:01-07:00"
+title = "Purple"
+image = "/wp-content/uploads/2010/08/P4038111-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/23/purple-groups.md b/content/posts/2010/08/23/purple-groups.md
new file mode 100644
index 00000000..1653302c
--- /dev/null
+++ b/content/posts/2010/08/23/purple-groups.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-23T00:03:01-07:00"
+title = "Purple Groups"
+image = "/wp-content/uploads/2010/08/P4038144-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/24/stone-circles.md b/content/posts/2010/08/24/stone-circles.md
new file mode 100644
index 00000000..5cdadc91
--- /dev/null
+++ b/content/posts/2010/08/24/stone-circles.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-24T00:03:01-07:00"
+title = "Stone Circles"
+image = "/wp-content/uploads/2010/08/P4038338-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/25/sunset-light-on-downtown.md b/content/posts/2010/08/25/sunset-light-on-downtown.md
new file mode 100644
index 00000000..9fe102ad
--- /dev/null
+++ b/content/posts/2010/08/25/sunset-light-on-downtown.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-25T00:03:01-07:00"
+title = "Sunset Light on Downtown"
+image = "/wp-content/uploads/2010/08/P7240740.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/26/blue-heron.md b/content/posts/2010/08/26/blue-heron.md
new file mode 100644
index 00000000..f762cab0
--- /dev/null
+++ b/content/posts/2010/08/26/blue-heron.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-26T00:03:01-07:00"
+title = "Blue Heron"
+image = "/wp-content/uploads/2010/08/P2220213.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/27/bleak-winter.md b/content/posts/2010/08/27/bleak-winter.md
new file mode 100644
index 00000000..df034444
--- /dev/null
+++ b/content/posts/2010/08/27/bleak-winter.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-27T00:03:01-07:00"
+title = "Bleak Winter"
+image = "/wp-content/uploads/2010/08/P2220221.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/28/washers-on-high.md b/content/posts/2010/08/28/washers-on-high.md
new file mode 100644
index 00000000..682c0e1a
--- /dev/null
+++ b/content/posts/2010/08/28/washers-on-high.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-28T00:03:01-07:00"
+title = "Washers on High"
+image = "/wp-content/uploads/2010/08/IMG_7492-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/29/reflection-of-neighbors.md b/content/posts/2010/08/29/reflection-of-neighbors.md
new file mode 100644
index 00000000..d1c512e5
--- /dev/null
+++ b/content/posts/2010/08/29/reflection-of-neighbors.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-29T00:03:01-07:00"
+title = "Reflection of Neighbors"
+image = "/wp-content/uploads/2010/08/IMG_7493-2.jpg"
++++
+
+
+
diff --git a/content/posts/2010/08/30/sunrise-over-construction.md b/content/posts/2010/08/30/sunrise-over-construction.md
new file mode 100644
index 00000000..4e4b0183
--- /dev/null
+++ b/content/posts/2010/08/30/sunrise-over-construction.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-30T00:03:01-07:00"
+title = "Sunrise over Construction"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/08/31/ft-dewhickey.md b/content/posts/2010/08/31/ft-dewhickey.md
new file mode 100644
index 00000000..f3b2f8f7
--- /dev/null
+++ b/content/posts/2010/08/31/ft-dewhickey.md
@@ -0,0 +1,8 @@
++++
+date = "2010-08-31T00:03:01-07:00"
+title = "Ft. DewHickey"
+image = "/wp-content/uploads/2010/09/PA205504.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/01/take-the-long-way-home.md b/content/posts/2010/09/01/take-the-long-way-home.md
new file mode 100644
index 00000000..5ebdab99
--- /dev/null
+++ b/content/posts/2010/09/01/take-the-long-way-home.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-01T00:03:01-07:00"
+title = "Take the long way home"
+image = "/wp-content/uploads/2010/09/p9234105.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/02/some-pig.md b/content/posts/2010/09/02/some-pig.md
new file mode 100644
index 00000000..f2822a76
--- /dev/null
+++ b/content/posts/2010/09/02/some-pig.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-02T00:03:01-07:00"
+title = "Some Pig!"
+image = "/wp-content/uploads/2010/09/p9294137-CC.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/03/rose-in-the-sky-2.md b/content/posts/2010/09/03/rose-in-the-sky-2.md
new file mode 100644
index 00000000..151435f7
--- /dev/null
+++ b/content/posts/2010/09/03/rose-in-the-sky-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-03T00:03:01-07:00"
+title = "Rose in the sky"
+image = "/wp-content/uploads/2010/09/DSCN2774.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/04/water-on-walk.md b/content/posts/2010/09/04/water-on-walk.md
new file mode 100644
index 00000000..7f1adea0
--- /dev/null
+++ b/content/posts/2010/09/04/water-on-walk.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-04T00:03:01-07:00"
+title = "Water on Walk"
+image = "/wp-content/uploads/2010/09/IMG_7577.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/05/bad-day.md b/content/posts/2010/09/05/bad-day.md
new file mode 100644
index 00000000..45c49878
--- /dev/null
+++ b/content/posts/2010/09/05/bad-day.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-05T00:03:01-07:00"
+title = "Bad Day"
+image = "/wp-content/uploads/2010/09/IMG_7582-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/06/canyon-sunrise.md b/content/posts/2010/09/06/canyon-sunrise.md
new file mode 100644
index 00000000..c7bc8b12
--- /dev/null
+++ b/content/posts/2010/09/06/canyon-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-06T00:03:01-07:00"
+title = "Canyon Sunrise"
+image = "/wp-content/uploads/2010/09/IMG_7586.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/07/hot-stuff.md b/content/posts/2010/09/07/hot-stuff.md
new file mode 100644
index 00000000..609f687a
--- /dev/null
+++ b/content/posts/2010/09/07/hot-stuff.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-07T00:03:01-07:00"
+title = "Hot Stuff"
+image = "/wp-content/uploads/2010/09/IMG_7588.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/08/pokes.md b/content/posts/2010/09/08/pokes.md
new file mode 100644
index 00000000..92175a6a
--- /dev/null
+++ b/content/posts/2010/09/08/pokes.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-08T00:03:01-07:00"
+title = "Pokes"
+image = "/wp-content/uploads/2010/09/IMG_7589.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/09/lots-of-okra.md b/content/posts/2010/09/09/lots-of-okra.md
new file mode 100644
index 00000000..170e6252
--- /dev/null
+++ b/content/posts/2010/09/09/lots-of-okra.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-09T00:03:01-07:00"
+title = "Lots of Okra"
+image = "/wp-content/uploads/2010/09/IMG_7606.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/10/green-monster.md b/content/posts/2010/09/10/green-monster.md
new file mode 100644
index 00000000..e2bd1731
--- /dev/null
+++ b/content/posts/2010/09/10/green-monster.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-10T00:03:01-07:00"
+title = "Green Monster"
+image = "/wp-content/uploads/2010/09/IMG_7608.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/11/bling-for-shoes.md b/content/posts/2010/09/11/bling-for-shoes.md
new file mode 100644
index 00000000..2a5291c4
--- /dev/null
+++ b/content/posts/2010/09/11/bling-for-shoes.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-11T00:03:01-07:00"
+title = "Bling for Shoes"
+image = "/wp-content/uploads/2010/09/IMG_7628.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/12/sunrise-and-cars.md b/content/posts/2010/09/12/sunrise-and-cars.md
new file mode 100644
index 00000000..cf8be3e7
--- /dev/null
+++ b/content/posts/2010/09/12/sunrise-and-cars.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-12T00:03:01-07:00"
+title = "Sunrise and Cars"
+image = "/wp-content/uploads/2010/09/2010-07-20-06.29.53.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/13/sunset-above-it-all.md b/content/posts/2010/09/13/sunset-above-it-all.md
new file mode 100644
index 00000000..20436d00
--- /dev/null
+++ b/content/posts/2010/09/13/sunset-above-it-all.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-13T00:03:01-07:00"
+title = "Sunset Above It All"
+image = "/wp-content/uploads/2010/09/2010-07-22-20.30.04.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/14/gull-above-beach-goers.md b/content/posts/2010/09/14/gull-above-beach-goers.md
new file mode 100644
index 00000000..1edaa7ed
--- /dev/null
+++ b/content/posts/2010/09/14/gull-above-beach-goers.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-14T00:03:01-07:00"
+title = "Gull Above Beach Goers"
+image = "/wp-content/uploads/2010/09/2010-07-31-16.04.13.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/15/snail.md b/content/posts/2010/09/15/snail.md
new file mode 100644
index 00000000..e4617283
--- /dev/null
+++ b/content/posts/2010/09/15/snail.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-15T00:03:01-07:00"
+title = "Snail"
+image = "/wp-content/uploads/2010/09/IMG_20100906_181541.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/16/new-old-library.md b/content/posts/2010/09/16/new-old-library.md
new file mode 100644
index 00000000..70aa8aad
--- /dev/null
+++ b/content/posts/2010/09/16/new-old-library.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-16T00:03:01-07:00"
+title = "New, Old Library"
+image = "/wp-content/uploads/2010/09/IMG_20100915_081423.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/17/wall-art.md b/content/posts/2010/09/17/wall-art.md
new file mode 100644
index 00000000..7c68d17b
--- /dev/null
+++ b/content/posts/2010/09/17/wall-art.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-17T00:03:01-07:00"
+title = "Wall Art"
+image = "/wp-content/uploads/2010/09/IMG_20100915_112924.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/18/bright-line.md b/content/posts/2010/09/18/bright-line.md
new file mode 100644
index 00000000..6949634e
--- /dev/null
+++ b/content/posts/2010/09/18/bright-line.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-18T00:03:01-07:00"
+title = "Bright Line"
+image = "/wp-content/uploads/2010/09/IMG_20100915_113004.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/19/nature-survives.md b/content/posts/2010/09/19/nature-survives.md
new file mode 100644
index 00000000..2fb68d14
--- /dev/null
+++ b/content/posts/2010/09/19/nature-survives.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-19T00:03:01-07:00"
+title = "Nature Survives"
+image = "/wp-content/uploads/2010/09/IMG_20100915_113036.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/20/green-on-blue.md b/content/posts/2010/09/20/green-on-blue.md
new file mode 100644
index 00000000..2e870eee
--- /dev/null
+++ b/content/posts/2010/09/20/green-on-blue.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-20T00:03:01-07:00"
+title = "Green on Blue"
+image = "/wp-content/uploads/2010/09/img_6828-2.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/21/smile.md b/content/posts/2010/09/21/smile.md
new file mode 100644
index 00000000..ff1a1ae6
--- /dev/null
+++ b/content/posts/2010/09/21/smile.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-21T00:03:01-07:00"
+title = "Smile"
+image = "/wp-content/uploads/2010/09/IMG_20100919_115211.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/22/storms-acomin.md b/content/posts/2010/09/22/storms-acomin.md
new file mode 100644
index 00000000..fa5cd8bc
--- /dev/null
+++ b/content/posts/2010/09/22/storms-acomin.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-22T00:03:01-07:00"
+title = "Storm's acomin'"
+image = "/wp-content/uploads/2010/09/IMG_20100920_192328.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/23/rain-on-leaf.md b/content/posts/2010/09/23/rain-on-leaf.md
new file mode 100644
index 00000000..c478780a
--- /dev/null
+++ b/content/posts/2010/09/23/rain-on-leaf.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-23T00:03:01-07:00"
+title = "Rain on Leaf"
+image = "/wp-content/uploads/2010/09/IMG_7656.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/24/sitting-pretty-2.md b/content/posts/2010/09/24/sitting-pretty-2.md
new file mode 100644
index 00000000..955f79fe
--- /dev/null
+++ b/content/posts/2010/09/24/sitting-pretty-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-24T00:03:01-07:00"
+title = "Sitting Pretty"
+image = "/wp-content/uploads/2010/09/IMG_7687.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/25/detail-of-rose.md b/content/posts/2010/09/25/detail-of-rose.md
new file mode 100644
index 00000000..107662c6
--- /dev/null
+++ b/content/posts/2010/09/25/detail-of-rose.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-25T00:03:01-07:00"
+title = "Detail of Rose"
+image = "/wp-content/uploads/2010/09/P4038261.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/26/standing-tall.md b/content/posts/2010/09/26/standing-tall.md
new file mode 100644
index 00000000..90a680e3
--- /dev/null
+++ b/content/posts/2010/09/26/standing-tall.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-26T00:03:01-07:00"
+title = "Standing Tall"
+image = "/wp-content/uploads/2010/09/P4178686.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/27/tall.md b/content/posts/2010/09/27/tall.md
new file mode 100644
index 00000000..fb1527cd
--- /dev/null
+++ b/content/posts/2010/09/27/tall.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-27T00:03:01-07:00"
+title = "Tall"
+image = "/wp-content/uploads/2010/09/pc117125.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/28/end-of-the-week.md b/content/posts/2010/09/28/end-of-the-week.md
new file mode 100644
index 00000000..d12cd446
--- /dev/null
+++ b/content/posts/2010/09/28/end-of-the-week.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-28T00:03:01-07:00"
+title = "End of the Week"
+image = "/wp-content/uploads/2010/09/IMG_7700.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/29/foggy-morning-2.md b/content/posts/2010/09/29/foggy-morning-2.md
new file mode 100644
index 00000000..ae959fa2
--- /dev/null
+++ b/content/posts/2010/09/29/foggy-morning-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-29T00:03:01-07:00"
+title = "Foggy Morning"
+image = "/wp-content/uploads/2010/09/IMG_7713.jpg"
++++
+
+
+
diff --git a/content/posts/2010/09/30/lost-in-thought.md b/content/posts/2010/09/30/lost-in-thought.md
new file mode 100644
index 00000000..c2901b77
--- /dev/null
+++ b/content/posts/2010/09/30/lost-in-thought.md
@@ -0,0 +1,8 @@
++++
+date = "2010-09-30T00:03:01-07:00"
+title = "Lost In Thought"
+image = "/wp-content/uploads/2010/09/IMG_7718.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/01/water-over-rocks.md b/content/posts/2010/10/01/water-over-rocks.md
new file mode 100644
index 00000000..0186f8cb
--- /dev/null
+++ b/content/posts/2010/10/01/water-over-rocks.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-01T00:03:01-07:00"
+title = "Water Over Rocks"
+image = "/wp-content/uploads/2010/10/IMG_7743.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/02/rr-12-over-the-blanco.md b/content/posts/2010/10/02/rr-12-over-the-blanco.md
new file mode 100644
index 00000000..00a1f5c6
--- /dev/null
+++ b/content/posts/2010/10/02/rr-12-over-the-blanco.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-02T00:03:01-07:00"
+title = "RR 12 Over The Blanco"
+image = "/wp-content/uploads/2010/10/IMG_7757.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/03/fall-is-here.md b/content/posts/2010/10/03/fall-is-here.md
new file mode 100644
index 00000000..0179dae6
--- /dev/null
+++ b/content/posts/2010/10/03/fall-is-here.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-03T00:03:01-07:00"
+title = "Fall Is Here"
+image = "/wp-content/uploads/2010/10/IMG_7761.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/04/stay-off.md b/content/posts/2010/10/04/stay-off.md
new file mode 100644
index 00000000..765bf0ca
--- /dev/null
+++ b/content/posts/2010/10/04/stay-off.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-04T00:03:01-07:00"
+title = "Stay Off!"
+image = "/wp-content/uploads/2010/10/IMG_7768.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/05/rused-roadrunner.md b/content/posts/2010/10/05/rused-roadrunner.md
new file mode 100644
index 00000000..86b6e102
--- /dev/null
+++ b/content/posts/2010/10/05/rused-roadrunner.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-05T00:03:01-07:00"
+title = "Rused Roadrunner"
+image = "/wp-content/uploads/2010/10/IMG_7787.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/06/details-of-a-harley.md b/content/posts/2010/10/06/details-of-a-harley.md
new file mode 100644
index 00000000..4e81b156
--- /dev/null
+++ b/content/posts/2010/10/06/details-of-a-harley.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-06T00:03:01-07:00"
+title = "Details of a Harley"
+image = "/wp-content/uploads/2010/10/IMG_7788.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/07/upside-down.md b/content/posts/2010/10/07/upside-down.md
new file mode 100644
index 00000000..384ab515
--- /dev/null
+++ b/content/posts/2010/10/07/upside-down.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-07T00:03:01-07:00"
+title = "Upside Down"
+image = "/wp-content/uploads/2010/10/IMG_7790.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/08/old-lamp.md b/content/posts/2010/10/08/old-lamp.md
new file mode 100644
index 00000000..a1e39350
--- /dev/null
+++ b/content/posts/2010/10/08/old-lamp.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-08T00:03:01-07:00"
+title = "Old Lamp"
+image = "/wp-content/uploads/2010/10/IMG_7791.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/09/end-of-the-day-2.md b/content/posts/2010/10/09/end-of-the-day-2.md
new file mode 100644
index 00000000..dfbc33ca
--- /dev/null
+++ b/content/posts/2010/10/09/end-of-the-day-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-09T00:03:01-07:00"
+title = "End of the Day"
+image = "/wp-content/uploads/2010/10/IMG_7819.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/10/first-shot-w-new-camera-09.md b/content/posts/2010/10/10/first-shot-w-new-camera-09.md
new file mode 100644
index 00000000..222d9b8a
--- /dev/null
+++ b/content/posts/2010/10/10/first-shot-w-new-camera-09.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-10T00:03:01-07:00"
+title = "First Shot w/ New Camera ('09)"
+image = "/wp-content/uploads/2010/10/IMG_0001.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/11/model-man-takes-a-break.md b/content/posts/2010/10/11/model-man-takes-a-break.md
new file mode 100644
index 00000000..aab80471
--- /dev/null
+++ b/content/posts/2010/10/11/model-man-takes-a-break.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-11T00:03:01-07:00"
+title = "Model Man takes a break"
+image = "/wp-content/uploads/2010/10/P1109034.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/12/model-man-checks-out-a-book.md b/content/posts/2010/10/12/model-man-checks-out-a-book.md
new file mode 100644
index 00000000..72efad2d
--- /dev/null
+++ b/content/posts/2010/10/12/model-man-checks-out-a-book.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-12T00:03:01-07:00"
+title = "Model Man checks out a book"
+image = "/wp-content/uploads/2010/10/P1109064.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/13/glass-and-steel-to-the-sky.md b/content/posts/2010/10/13/glass-and-steel-to-the-sky.md
new file mode 100644
index 00000000..856bde80
--- /dev/null
+++ b/content/posts/2010/10/13/glass-and-steel-to-the-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-13T00:03:01-07:00"
+title = "Glass and Steel to the Sky"
+image = "/wp-content/uploads/2010/10/P2040287.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/14/water-wall.md b/content/posts/2010/10/14/water-wall.md
new file mode 100644
index 00000000..b76a79dd
--- /dev/null
+++ b/content/posts/2010/10/14/water-wall.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-14T00:03:01-07:00"
+title = "Water Wall"
+image = "/wp-content/uploads/2010/10/P2040300.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/15/rusty-view.md b/content/posts/2010/10/15/rusty-view.md
new file mode 100644
index 00000000..a6a300bc
--- /dev/null
+++ b/content/posts/2010/10/15/rusty-view.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-15T00:03:01-07:00"
+title = "Rusty View"
+image = "/wp-content/uploads/2010/10/P2070491.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/16/flags-and-streamer.md b/content/posts/2010/10/16/flags-and-streamer.md
new file mode 100644
index 00000000..09adc8c1
--- /dev/null
+++ b/content/posts/2010/10/16/flags-and-streamer.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-16T00:03:01-07:00"
+title = "Flags and Streamer"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/10/17/orange-and-mini-pumkins.md b/content/posts/2010/10/17/orange-and-mini-pumkins.md
new file mode 100644
index 00000000..bdd71ff0
--- /dev/null
+++ b/content/posts/2010/10/17/orange-and-mini-pumkins.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-17T00:03:01-07:00"
+title = "Orange and Mini-Pumkins"
+image = "/wp-content/uploads/2010/10/IMG_7941.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/18/pumpkins.md b/content/posts/2010/10/18/pumpkins.md
new file mode 100644
index 00000000..f8954cde
--- /dev/null
+++ b/content/posts/2010/10/18/pumpkins.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-18T00:03:01-07:00"
+title = "Pumpkins"
+image = "/wp-content/uploads/2010/10/IMG_7956.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/19/white-kolanche.md b/content/posts/2010/10/19/white-kolanche.md
new file mode 100644
index 00000000..bd6a2008
--- /dev/null
+++ b/content/posts/2010/10/19/white-kolanche.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-19T00:03:01-07:00"
+title = "White Kolanche"
+image = "/wp-content/uploads/2010/10/IMG_7973.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/20/10-10-10-details-of-a-don-juan.md b/content/posts/2010/10/20/10-10-10-details-of-a-don-juan.md
new file mode 100644
index 00000000..b158637c
--- /dev/null
+++ b/content/posts/2010/10/20/10-10-10-details-of-a-don-juan.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-20T00:03:01-07:00"
+title = "10-10-10 Details of a Don Juan"
+image = "/wp-content/uploads/2010/10/IMG_7982.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/21/10-10-10-faded-red-rose.md b/content/posts/2010/10/21/10-10-10-faded-red-rose.md
new file mode 100644
index 00000000..b639180f
--- /dev/null
+++ b/content/posts/2010/10/21/10-10-10-faded-red-rose.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-21T00:03:01-07:00"
+title = "10-10-10 Faded Red Rose"
+image = "/wp-content/uploads/2010/10/IMG_7984.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/22/android-dreams-warped-cars.md b/content/posts/2010/10/22/android-dreams-warped-cars.md
new file mode 100644
index 00000000..77a3d26b
--- /dev/null
+++ b/content/posts/2010/10/22/android-dreams-warped-cars.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-22T00:03:01-07:00"
+title = "Android Dreams: Warped Cars"
+image = "/wp-content/uploads/2010/10/2010-10-13-08-41-12-312.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/23/android-dreams-ghost-car.md b/content/posts/2010/10/23/android-dreams-ghost-car.md
new file mode 100644
index 00000000..d5328a1f
--- /dev/null
+++ b/content/posts/2010/10/23/android-dreams-ghost-car.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-23T00:03:01-07:00"
+title = "Android Dreams: Ghost Car"
+image = "/wp-content/uploads/2010/10/2010-10-13-08-43-47-550.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/24/android-dreams-lift-for-exit.md b/content/posts/2010/10/24/android-dreams-lift-for-exit.md
new file mode 100644
index 00000000..3cadc6ec
--- /dev/null
+++ b/content/posts/2010/10/24/android-dreams-lift-for-exit.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-24T00:03:01-07:00"
+title = "Android Dreams: Lift for exit"
+image = "/wp-content/uploads/2010/10/2010-10-13-08-44-27-086.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/25/android-dreams-downtown.md b/content/posts/2010/10/25/android-dreams-downtown.md
new file mode 100644
index 00000000..889caec3
--- /dev/null
+++ b/content/posts/2010/10/25/android-dreams-downtown.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-25T00:03:01-07:00"
+title = "Android Dreams: Downtown"
+image = "/wp-content/uploads/2010/10/2010-10-13-08-47-32-403.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/26/android-dreams-line-of-trees.md b/content/posts/2010/10/26/android-dreams-line-of-trees.md
new file mode 100644
index 00000000..7c14bf2a
--- /dev/null
+++ b/content/posts/2010/10/26/android-dreams-line-of-trees.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-26T00:03:01-07:00"
+title = "Android Dreams: Line of Trees"
+image = "/wp-content/uploads/2010/10/2010-10-13-08-54-09-006.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/27/android-dreams-waiting-for-better-times.md b/content/posts/2010/10/27/android-dreams-waiting-for-better-times.md
new file mode 100644
index 00000000..12420c8f
--- /dev/null
+++ b/content/posts/2010/10/27/android-dreams-waiting-for-better-times.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-27T00:03:01-07:00"
+title = "Android Dreams: Waiting for Better Times"
+image = "/wp-content/uploads/2010/10/2010-10-13-08-55-35-772.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/28/android-dreams-tall-buildings.md b/content/posts/2010/10/28/android-dreams-tall-buildings.md
new file mode 100644
index 00000000..04c8c4f3
--- /dev/null
+++ b/content/posts/2010/10/28/android-dreams-tall-buildings.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-28T00:03:01-07:00"
+title = "Android Dreams: Tall Buildings"
+image = "/wp-content/uploads/2010/10/2010-10-13-17-45-58-166.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/29/tall-lines.md b/content/posts/2010/10/29/tall-lines.md
new file mode 100644
index 00000000..eaa3ceb9
--- /dev/null
+++ b/content/posts/2010/10/29/tall-lines.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-29T05:21:19-07:00"
+title = "Tall Lines"
+image = "/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/30/steel-sunflowers.md b/content/posts/2010/10/30/steel-sunflowers.md
new file mode 100644
index 00000000..a81176da
--- /dev/null
+++ b/content/posts/2010/10/30/steel-sunflowers.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-30T00:03:01-07:00"
+title = "Steel Sunflowers"
+image = "/wp-content/uploads/2010/10/IMG_8179.jpg"
++++
+
+
+
diff --git a/content/posts/2010/10/31/lone-color-2.md b/content/posts/2010/10/31/lone-color-2.md
new file mode 100644
index 00000000..3e4b2f29
--- /dev/null
+++ b/content/posts/2010/10/31/lone-color-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-10-31T00:03:01-07:00"
+title = "Lone Color"
+image = "/wp-content/uploads/2010/10/IMG_8189.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/01/storm-is-a-brewin.md b/content/posts/2010/11/01/storm-is-a-brewin.md
new file mode 100644
index 00000000..94245c5a
--- /dev/null
+++ b/content/posts/2010/11/01/storm-is-a-brewin.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-01T00:03:01-07:00"
+title = "Storm is a brewin'"
+image = "/wp-content/uploads/2010/10/IMG_8192.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/02/windmill-in-the-sky-2.md b/content/posts/2010/11/02/windmill-in-the-sky-2.md
new file mode 100644
index 00000000..92eac0e1
--- /dev/null
+++ b/content/posts/2010/11/02/windmill-in-the-sky-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-02T00:03:01-07:00"
+title = "Windmill in the Sky"
+image = "/wp-content/uploads/2010/10/IMG_8201.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/03/make-way-for-ducks.md b/content/posts/2010/11/03/make-way-for-ducks.md
new file mode 100644
index 00000000..f3a3509a
--- /dev/null
+++ b/content/posts/2010/11/03/make-way-for-ducks.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-03T00:03:01-07:00"
+title = "Make Way For Ducks"
+image = "/wp-content/uploads/2010/10/IMG_8205.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/04/field-of-color-2.md b/content/posts/2010/11/04/field-of-color-2.md
new file mode 100644
index 00000000..e1359d19
--- /dev/null
+++ b/content/posts/2010/11/04/field-of-color-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-04T00:03:01-07:00"
+title = "Field of Color"
+image = "/wp-content/uploads/2010/10/IMG_8206.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/05/windblown-sunflower.md b/content/posts/2010/11/05/windblown-sunflower.md
new file mode 100644
index 00000000..b9ab161b
--- /dev/null
+++ b/content/posts/2010/11/05/windblown-sunflower.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-05T00:03:01-07:00"
+title = "Windblown Sunflower"
+image = "/wp-content/uploads/2010/10/IMG_8209.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/06/bokeh-color.md b/content/posts/2010/11/06/bokeh-color.md
new file mode 100644
index 00000000..4f7de790
--- /dev/null
+++ b/content/posts/2010/11/06/bokeh-color.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-06T00:03:01-07:00"
+title = "Bokeh Color"
+image = "/wp-content/uploads/2010/10/IMG_8225.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/07/butterfly.md b/content/posts/2010/11/07/butterfly.md
new file mode 100644
index 00000000..0b342727
--- /dev/null
+++ b/content/posts/2010/11/07/butterfly.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-07T00:03:01-07:00"
+title = "Butterfly!"
+image = "/wp-content/uploads/2010/10/IMG_8231.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/08/purple-3.md b/content/posts/2010/11/08/purple-3.md
new file mode 100644
index 00000000..7a5a04a4
--- /dev/null
+++ b/content/posts/2010/11/08/purple-3.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-08T00:03:01-07:00"
+title = "Purple"
+image = "/wp-content/uploads/2010/10/IMG_8233.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/09/details-of-sunflower-vi.md b/content/posts/2010/11/09/details-of-sunflower-vi.md
new file mode 100644
index 00000000..02121aa6
--- /dev/null
+++ b/content/posts/2010/11/09/details-of-sunflower-vi.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-09T00:03:01-07:00"
+title = "Details of Sunflower VI"
+image = "/wp-content/uploads/2010/10/IMG_8235.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/10/march-of-the-office-gnomes.md b/content/posts/2010/11/10/march-of-the-office-gnomes.md
new file mode 100644
index 00000000..b52445bf
--- /dev/null
+++ b/content/posts/2010/11/10/march-of-the-office-gnomes.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-10T23:03:01-07:00"
+title = "March of the Office Gnomes"
+image = "/wp-content/uploads/2010/11/IMG_7514.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/10/white-flower-butterfly.md b/content/posts/2010/11/10/white-flower-butterfly.md
new file mode 100644
index 00000000..0f3b8871
--- /dev/null
+++ b/content/posts/2010/11/10/white-flower-butterfly.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-10T00:03:01-07:00"
+title = "White Flower, Butterfly"
+image = "/wp-content/uploads/2010/10/IMG_8238.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/11/windows.md b/content/posts/2010/11/11/windows.md
new file mode 100644
index 00000000..800c2429
--- /dev/null
+++ b/content/posts/2010/11/11/windows.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-11T23:03:01-07:00"
+title = "Windows"
+image = "/wp-content/uploads/2010/11/IMG_7695.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/12/butterfly-detail.md b/content/posts/2010/11/12/butterfly-detail.md
new file mode 100644
index 00000000..eca67589
--- /dev/null
+++ b/content/posts/2010/11/12/butterfly-detail.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-12T23:03:01-07:00"
+title = "Butterfly Detail"
+image = "/wp-content/uploads/2010/11/IMG_8261.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/13/blossom.md b/content/posts/2010/11/13/blossom.md
new file mode 100644
index 00000000..75594236
--- /dev/null
+++ b/content/posts/2010/11/13/blossom.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-13T23:03:01-07:00"
+title = "Blossom"
+image = "/wp-content/uploads/2010/11/P3201240.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/14/where-have-we-been.md b/content/posts/2010/11/14/where-have-we-been.md
new file mode 100644
index 00000000..08de8a84
--- /dev/null
+++ b/content/posts/2010/11/14/where-have-we-been.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-14T23:03:01-07:00"
+title = "Where have we been?"
+image = "/wp-content/uploads/2010/11/P7030610.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/15/reflected-moon.md b/content/posts/2010/11/15/reflected-moon.md
new file mode 100644
index 00000000..98e25d77
--- /dev/null
+++ b/content/posts/2010/11/15/reflected-moon.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-15T23:03:01-07:00"
+title = "Reflected Moon"
+image = "/wp-content/uploads/2010/11/P7240814.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/16/fall-comes-to-texas.md b/content/posts/2010/11/16/fall-comes-to-texas.md
new file mode 100644
index 00000000..8a8a5497
--- /dev/null
+++ b/content/posts/2010/11/16/fall-comes-to-texas.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-16T23:03:01-07:00"
+title = "Fall Comes To Texas"
+image = "/wp-content/uploads/2010/11/IMG_8289.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/16/red-line-streak.md b/content/posts/2010/11/16/red-line-streak.md
new file mode 100644
index 00000000..3226b1a1
--- /dev/null
+++ b/content/posts/2010/11/16/red-line-streak.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-16T23:03:01-07:00"
+title = "Red Line Streak"
+image = ""
++++
+
+
+
diff --git a/content/posts/2010/11/17/red-and-green-2.md b/content/posts/2010/11/17/red-and-green-2.md
new file mode 100644
index 00000000..8bb0be60
--- /dev/null
+++ b/content/posts/2010/11/17/red-and-green-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-17T23:03:01-07:00"
+title = "Red And Green"
+image = "/wp-content/uploads/2010/11/IMG_8358.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/18/waiting-for-someone.md b/content/posts/2010/11/18/waiting-for-someone.md
new file mode 100644
index 00000000..bd379bb4
--- /dev/null
+++ b/content/posts/2010/11/18/waiting-for-someone.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-18T23:03:01-07:00"
+title = "Waiting for Someone"
+image = "/wp-content/uploads/2010/11/IMG_8455.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/19/water-landing.md b/content/posts/2010/11/19/water-landing.md
new file mode 100644
index 00000000..d12d0009
--- /dev/null
+++ b/content/posts/2010/11/19/water-landing.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-19T23:03:01-07:00"
+title = "Water Landing"
+image = "/wp-content/uploads/2010/11/IMG_8465.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/20/peaceful-sceen.md b/content/posts/2010/11/20/peaceful-sceen.md
new file mode 100644
index 00000000..3a863401
--- /dev/null
+++ b/content/posts/2010/11/20/peaceful-sceen.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-20T23:03:01-07:00"
+title = "Peaceful Sceen"
+image = "/wp-content/uploads/2010/11/IMG_8466.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/21/getaway-on-a-canoe.md b/content/posts/2010/11/21/getaway-on-a-canoe.md
new file mode 100644
index 00000000..4359e6a4
--- /dev/null
+++ b/content/posts/2010/11/21/getaway-on-a-canoe.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-21T23:03:01-07:00"
+title = "Getaway on a Canoe"
+image = "/wp-content/uploads/2010/11/PB036080.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/22/wet-leaf.md b/content/posts/2010/11/22/wet-leaf.md
new file mode 100644
index 00000000..02b11f29
--- /dev/null
+++ b/content/posts/2010/11/22/wet-leaf.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-22T23:03:01-07:00"
+title = "Wet Leaf"
+image = "/wp-content/uploads/2010/11/P3147790.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/23/2619.md b/content/posts/2010/11/23/2619.md
new file mode 100644
index 00000000..00ea3b4d
--- /dev/null
+++ b/content/posts/2010/11/23/2619.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-23T23:03:01-07:00"
+title = "Fence and Bluebonnets"
+image = "/wp-content/uploads/2010/11/P4038128.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/24/winter-is-almost-here.md b/content/posts/2010/11/24/winter-is-almost-here.md
new file mode 100644
index 00000000..4b686b86
--- /dev/null
+++ b/content/posts/2010/11/24/winter-is-almost-here.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-24T23:03:01-07:00"
+title = "Winter is almost here"
+image = "/wp-content/uploads/2010/11/P2220221.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/25/bluebonnet-1324.md b/content/posts/2010/11/25/bluebonnet-1324.md
new file mode 100644
index 00000000..c5fdbaae
--- /dev/null
+++ b/content/posts/2010/11/25/bluebonnet-1324.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-25T02:03:01-07:00"
+title = "Bluebonnet #1324"
+image = "/wp-content/uploads/2010/11/P3210640.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/26/details-of-iris.md b/content/posts/2010/11/26/details-of-iris.md
new file mode 100644
index 00000000..8ad2c0ba
--- /dev/null
+++ b/content/posts/2010/11/26/details-of-iris.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-26T02:03:01-07:00"
+title = "Details of Iris"
+image = "/wp-content/uploads/2010/11/P4050986.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/27/sad-flowers.md b/content/posts/2010/11/27/sad-flowers.md
new file mode 100644
index 00000000..6cac7ad6
--- /dev/null
+++ b/content/posts/2010/11/27/sad-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-27T02:03:01-07:00"
+title = "Sad Flowers"
+image = "/wp-content/uploads/2010/11/P4051020.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/28/pink-rose-2.md b/content/posts/2010/11/28/pink-rose-2.md
new file mode 100644
index 00000000..f959cb92
--- /dev/null
+++ b/content/posts/2010/11/28/pink-rose-2.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-28T02:03:01-07:00"
+title = "Pink Rose"
+image = "/wp-content/uploads/2010/11/P5142410-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/29/small-flower-big.md b/content/posts/2010/11/29/small-flower-big.md
new file mode 100644
index 00000000..20887c91
--- /dev/null
+++ b/content/posts/2010/11/29/small-flower-big.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-29T02:03:01-07:00"
+title = "Small Flower Big"
+image = "/wp-content/uploads/2010/11/P5192466.jpg"
++++
+
+
+
diff --git a/content/posts/2010/11/30/monochrome-sunset.md b/content/posts/2010/11/30/monochrome-sunset.md
new file mode 100644
index 00000000..4de78465
--- /dev/null
+++ b/content/posts/2010/11/30/monochrome-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2010-11-30T02:03:01-07:00"
+title = "Monochrome Sunset"
+image = "/wp-content/uploads/2010/11/P2190172.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/01/banners-in-the-wind.md b/content/posts/2010/12/01/banners-in-the-wind.md
new file mode 100644
index 00000000..009a0bd0
--- /dev/null
+++ b/content/posts/2010/12/01/banners-in-the-wind.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-01T02:03:01-07:00"
+title = "Banners in the Wind"
+image = "/wp-content/uploads/2010/11/IMG_8692-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/02/tower-in-sky.md b/content/posts/2010/12/02/tower-in-sky.md
new file mode 100644
index 00000000..a7550a21
--- /dev/null
+++ b/content/posts/2010/12/02/tower-in-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-02T02:03:01-07:00"
+title = "Tower in Sky"
+image = "/wp-content/uploads/2010/11/IMG_8693-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/03/craftsman-at-work.md b/content/posts/2010/12/03/craftsman-at-work.md
new file mode 100644
index 00000000..a57304b9
--- /dev/null
+++ b/content/posts/2010/12/03/craftsman-at-work.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-03T02:03:01-07:00"
+title = "Craftsman at Work"
+image = "/wp-content/uploads/2010/11/IMG_8694-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/04/clock-tower.md b/content/posts/2010/12/04/clock-tower.md
new file mode 100644
index 00000000..31807666
--- /dev/null
+++ b/content/posts/2010/12/04/clock-tower.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-04T02:03:01-07:00"
+title = "Clock Tower"
+image = "/wp-content/uploads/2010/11/IMG_8713-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/05/unicorn.md b/content/posts/2010/12/05/unicorn.md
new file mode 100644
index 00000000..7fb0c403
--- /dev/null
+++ b/content/posts/2010/12/05/unicorn.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-05T02:03:01-07:00"
+title = "Unicorn"
+image = "/wp-content/uploads/2010/11/IMG_8721-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/06/light-catcher.md b/content/posts/2010/12/06/light-catcher.md
new file mode 100644
index 00000000..3981a340
--- /dev/null
+++ b/content/posts/2010/12/06/light-catcher.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-06T02:03:01-07:00"
+title = "Light Catcher"
+image = "/wp-content/uploads/2010/11/IMG_8723-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/07/jars-of-smells.md b/content/posts/2010/12/07/jars-of-smells.md
new file mode 100644
index 00000000..7ceb22bc
--- /dev/null
+++ b/content/posts/2010/12/07/jars-of-smells.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-07T02:03:01-07:00"
+title = "Jars of Smells"
+image = "/wp-content/uploads/2010/11/IMG_8724-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/08/pretty-bobbels.md b/content/posts/2010/12/08/pretty-bobbels.md
new file mode 100644
index 00000000..0ade4373
--- /dev/null
+++ b/content/posts/2010/12/08/pretty-bobbels.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-08T02:03:01-07:00"
+title = "Pretty Bobbels"
+image = "/wp-content/uploads/2010/11/IMG_8726-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/09/christmas-reflections.md b/content/posts/2010/12/09/christmas-reflections.md
new file mode 100644
index 00000000..ed6ae08a
--- /dev/null
+++ b/content/posts/2010/12/09/christmas-reflections.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-09T01:03:01-07:00"
+title = "Christmas Reflections"
+image = "/wp-content/uploads/2010/12/DSCN2785-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/10/marble-at-work.md b/content/posts/2010/12/10/marble-at-work.md
new file mode 100644
index 00000000..3e3b14a7
--- /dev/null
+++ b/content/posts/2010/12/10/marble-at-work.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-10T01:03:01-07:00"
+title = "Marble at work"
+image = "/wp-content/uploads/2010/12/IMG_8727-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/11/headgear.md b/content/posts/2010/12/11/headgear.md
new file mode 100644
index 00000000..c3996892
--- /dev/null
+++ b/content/posts/2010/12/11/headgear.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-11T01:03:01-07:00"
+title = "Headgear"
+image = "/wp-content/uploads/2010/12/IMG_8729-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/12/end-of-another-day.md b/content/posts/2010/12/12/end-of-another-day.md
new file mode 100644
index 00000000..4e77b328
--- /dev/null
+++ b/content/posts/2010/12/12/end-of-another-day.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-12T01:03:01-07:00"
+title = "End of Another Day"
+image = "/wp-content/uploads/2010/12/IMG_9028.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/13/freedom-over-wires.md b/content/posts/2010/12/13/freedom-over-wires.md
new file mode 100644
index 00000000..74df8306
--- /dev/null
+++ b/content/posts/2010/12/13/freedom-over-wires.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-13T01:03:01-07:00"
+title = "Freedom over Wires"
+image = "/wp-content/uploads/2010/12/DSCN2684-1.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/14/blue-boat.md b/content/posts/2010/12/14/blue-boat.md
new file mode 100644
index 00000000..c613ae4b
--- /dev/null
+++ b/content/posts/2010/12/14/blue-boat.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-14T01:03:01-07:00"
+title = "Blue Boat"
+image = "/wp-content/uploads/2010/12/pic00009.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/15/wave-on-italian-beach.md b/content/posts/2010/12/15/wave-on-italian-beach.md
new file mode 100644
index 00000000..d3b22176
--- /dev/null
+++ b/content/posts/2010/12/15/wave-on-italian-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-15T01:03:01-07:00"
+title = "Wave on Italian Beach"
+image = "/wp-content/uploads/2010/12/pic00093.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/16/flags-and-lines.md b/content/posts/2010/12/16/flags-and-lines.md
new file mode 100644
index 00000000..aaf78bac
--- /dev/null
+++ b/content/posts/2010/12/16/flags-and-lines.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-16T01:03:01-07:00"
+title = "Flags and Lines"
+image = "/wp-content/uploads/2010/12/IMG_9239.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/17/extreme-toy-close-up.md b/content/posts/2010/12/17/extreme-toy-close-up.md
new file mode 100644
index 00000000..c32eb7a5
--- /dev/null
+++ b/content/posts/2010/12/17/extreme-toy-close-up.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-17T01:03:01-07:00"
+title = "Extreme Toy Close-up"
+image = ""
++++
+
+
+Side note - this is the 1400 post to this blog. Wow.
diff --git a/content/posts/2010/12/18/summer-holding-on.md b/content/posts/2010/12/18/summer-holding-on.md
new file mode 100644
index 00000000..9dba14a0
--- /dev/null
+++ b/content/posts/2010/12/18/summer-holding-on.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-18T01:03:01-07:00"
+title = "Summer Holding On"
+image = "/wp-content/uploads/2010/12/IMG_9151.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/19/wood-chips-stacked.md b/content/posts/2010/12/19/wood-chips-stacked.md
new file mode 100644
index 00000000..30c81b5c
--- /dev/null
+++ b/content/posts/2010/12/19/wood-chips-stacked.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-19T01:03:01-07:00"
+title = "Wood Chips Stacked"
+image = "/wp-content/uploads/2010/12/IMG_9173.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/20/tall-building-austin.md b/content/posts/2010/12/20/tall-building-austin.md
new file mode 100644
index 00000000..8d46a472
--- /dev/null
+++ b/content/posts/2010/12/20/tall-building-austin.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-20T01:03:01-07:00"
+title = "Tall Building, Austin"
+image = "/wp-content/uploads/2010/12/P6290001.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/21/golden-sunset-over-mopac.md b/content/posts/2010/12/21/golden-sunset-over-mopac.md
new file mode 100644
index 00000000..80315384
--- /dev/null
+++ b/content/posts/2010/12/21/golden-sunset-over-mopac.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-21T01:03:01-07:00"
+title = "Golden Sunset over MoPac"
+image = "/wp-content/uploads/2010/12/P6290041.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/22/sunset-over-lady-bird-lake.md b/content/posts/2010/12/22/sunset-over-lady-bird-lake.md
new file mode 100644
index 00000000..aabdb8b9
--- /dev/null
+++ b/content/posts/2010/12/22/sunset-over-lady-bird-lake.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-22T01:03:01-07:00"
+title = "Sunset over Lady Bird Lake"
+image = "/wp-content/uploads/2010/12/P6290074.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/23/rose-and-spider-web.md b/content/posts/2010/12/23/rose-and-spider-web.md
new file mode 100644
index 00000000..a5f04a7c
--- /dev/null
+++ b/content/posts/2010/12/23/rose-and-spider-web.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-23T01:03:01-07:00"
+title = "Rose and Spider Web"
+image = "/wp-content/uploads/2010/12/P6299933.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/24/moth-and-flowers.md b/content/posts/2010/12/24/moth-and-flowers.md
new file mode 100644
index 00000000..00c0b269
--- /dev/null
+++ b/content/posts/2010/12/24/moth-and-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-24T01:03:01-07:00"
+title = "Moth and Flowers"
+image = "/wp-content/uploads/2010/12/P6299959.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/25/waterfall-dinosor-park.md b/content/posts/2010/12/25/waterfall-dinosor-park.md
new file mode 100644
index 00000000..ff71f41f
--- /dev/null
+++ b/content/posts/2010/12/25/waterfall-dinosor-park.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-25T01:03:01-07:00"
+title = "Waterfall, Dinosor Park"
+image = "/wp-content/uploads/2010/12/P6299973.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/26/watch-your-step-3.md b/content/posts/2010/12/26/watch-your-step-3.md
new file mode 100644
index 00000000..a889c32a
--- /dev/null
+++ b/content/posts/2010/12/26/watch-your-step-3.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-26T01:03:01-07:00"
+title = "Watch Your Step"
+image = "/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/27/triangles-in-the-sky-3.md b/content/posts/2010/12/27/triangles-in-the-sky-3.md
new file mode 100644
index 00000000..c7ddaa14
--- /dev/null
+++ b/content/posts/2010/12/27/triangles-in-the-sky-3.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-27T01:03:01-07:00"
+title = "Triangles in the Sky"
+image = "/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/28/going-up-or-down-3.md b/content/posts/2010/12/28/going-up-or-down-3.md
new file mode 100644
index 00000000..7e89c8bb
--- /dev/null
+++ b/content/posts/2010/12/28/going-up-or-down-3.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-28T01:03:01-07:00"
+title = "Going Up, or Down?"
+image = "/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/29/garden-gnome.md b/content/posts/2010/12/29/garden-gnome.md
new file mode 100644
index 00000000..ab4054b4
--- /dev/null
+++ b/content/posts/2010/12/29/garden-gnome.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-29T01:03:01-07:00"
+title = "Garden Gnome"
+image = "/wp-content/uploads/2010/12/2010-11-07-17-06-46-740.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/30/christmas-express.md b/content/posts/2010/12/30/christmas-express.md
new file mode 100644
index 00000000..28eb0b4c
--- /dev/null
+++ b/content/posts/2010/12/30/christmas-express.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-30T01:03:01-07:00"
+title = "Christmas Express"
+image = "/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig.jpg"
++++
+
+
+
diff --git a/content/posts/2010/12/31/winter-sunset.md b/content/posts/2010/12/31/winter-sunset.md
new file mode 100644
index 00000000..9452e024
--- /dev/null
+++ b/content/posts/2010/12/31/winter-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2010-12-31T01:03:01-07:00"
+title = "Winter Sunset"
+image = "/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/01/lader-in-shadows.md b/content/posts/2011/01/01/lader-in-shadows.md
new file mode 100644
index 00000000..e40c0968
--- /dev/null
+++ b/content/posts/2011/01/01/lader-in-shadows.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-01T01:03:01-07:00"
+title = "Ladder in Shadows"
+image = "/wp-content/uploads/2010/12/2010-12-25-16-50-32-235.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/02/winter-sky.md b/content/posts/2011/01/02/winter-sky.md
new file mode 100644
index 00000000..81fd2f77
--- /dev/null
+++ b/content/posts/2011/01/02/winter-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-02T01:03:01-07:00"
+title = "Winter Sky"
+image = "/wp-content/uploads/2010/12/2010-12-26-16-00-25-326.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/03/place-for-rest.md b/content/posts/2011/01/03/place-for-rest.md
new file mode 100644
index 00000000..279be968
--- /dev/null
+++ b/content/posts/2011/01/03/place-for-rest.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-03T01:03:01-07:00"
+title = "Place for Rest"
+image = "/wp-content/uploads/2010/12/IMG_9381.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/04/warm-lights.md b/content/posts/2011/01/04/warm-lights.md
new file mode 100644
index 00000000..71b8dacc
--- /dev/null
+++ b/content/posts/2011/01/04/warm-lights.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-04T01:03:01-07:00"
+title = "Warm Lights"
+image = "/wp-content/uploads/2010/12/IMG_9399.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/05/2769.md b/content/posts/2011/01/05/2769.md
new file mode 100644
index 00000000..9b802666
--- /dev/null
+++ b/content/posts/2011/01/05/2769.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-05T01:03:01-07:00"
+title = "Dino Attack!"
+image = "/wp-content/uploads/2011/01/IMG_9426-1.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/06/new_beginnings.md b/content/posts/2011/01/06/new_beginnings.md
new file mode 100644
index 00000000..0eaa109d
--- /dev/null
+++ b/content/posts/2011/01/06/new_beginnings.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-06T01:03:01-07:00"
+title = "New Beginnings"
+image = "/wp-content/uploads/2011/01/IMG_9430-1.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/07/clouds-and-the-moon.md b/content/posts/2011/01/07/clouds-and-the-moon.md
new file mode 100644
index 00000000..9ca7da30
--- /dev/null
+++ b/content/posts/2011/01/07/clouds-and-the-moon.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-07T01:03:01-07:00"
+title = "Clouds and the Moon"
+image = "/wp-content/uploads/2011/01/P1078983.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/08/rice-dryer-detail.md b/content/posts/2011/01/08/rice-dryer-detail.md
new file mode 100644
index 00000000..e2596455
--- /dev/null
+++ b/content/posts/2011/01/08/rice-dryer-detail.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-08T01:03:01-07:00"
+title = "Rice Dryer Detail"
+image = "/wp-content/uploads/2011/01/p3031254.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/09/lake-view.md b/content/posts/2011/01/09/lake-view.md
new file mode 100644
index 00000000..1a77778c
--- /dev/null
+++ b/content/posts/2011/01/09/lake-view.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-09T01:03:01-07:00"
+title = "Lake View"
+image = "/wp-content/uploads/2011/01/IMG_8467.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/10/moon-over-trees.md b/content/posts/2011/01/10/moon-over-trees.md
new file mode 100644
index 00000000..ffb77cf4
--- /dev/null
+++ b/content/posts/2011/01/10/moon-over-trees.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-10T01:03:01-07:00"
+title = "Moon over Trees"
+image = "/wp-content/uploads/2011/01/IMG_8519.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/11/lake-view-2.md b/content/posts/2011/01/11/lake-view-2.md
new file mode 100644
index 00000000..db177b7e
--- /dev/null
+++ b/content/posts/2011/01/11/lake-view-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-11T01:03:01-07:00"
+title = "Lake View"
+image = "/wp-content/uploads/2011/01/IMG_84671.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/12/moon-over-trees-2.md b/content/posts/2011/01/12/moon-over-trees-2.md
new file mode 100644
index 00000000..89cc7e95
--- /dev/null
+++ b/content/posts/2011/01/12/moon-over-trees-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-12T01:03:01-07:00"
+title = "Moon over Trees"
+image = "/wp-content/uploads/2011/01/IMG_85191.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/13/square-light.md b/content/posts/2011/01/13/square-light.md
new file mode 100644
index 00000000..4f369ae8
--- /dev/null
+++ b/content/posts/2011/01/13/square-light.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-13T01:03:01-07:00"
+title = "Square Light"
+image = "/wp-content/uploads/2011/01/IMG_86901.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/14/glowing-mask.md b/content/posts/2011/01/14/glowing-mask.md
new file mode 100644
index 00000000..8bae8d53
--- /dev/null
+++ b/content/posts/2011/01/14/glowing-mask.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-14T01:03:01-07:00"
+title = "Glowing Mask"
+image = "/wp-content/uploads/2011/01/IMG_8758.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/15/houston-city-hall-2.md b/content/posts/2011/01/15/houston-city-hall-2.md
new file mode 100644
index 00000000..b1012018
--- /dev/null
+++ b/content/posts/2011/01/15/houston-city-hall-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-15T01:03:01-07:00"
+title = "Houston City Hall"
+image = "/wp-content/uploads/2011/01/IMG_9462.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/16/2794.md b/content/posts/2011/01/16/2794.md
new file mode 100644
index 00000000..33c96ca7
--- /dev/null
+++ b/content/posts/2011/01/16/2794.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-16T01:03:01-07:00"
+title = "Public Art 2"
+image = "/wp-content/uploads/2011/01/IMG_9483.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/17/roadside-color-2.md b/content/posts/2011/01/17/roadside-color-2.md
new file mode 100644
index 00000000..d5fcf353
--- /dev/null
+++ b/content/posts/2011/01/17/roadside-color-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-17T01:03:01-07:00"
+title = "Roadside Color"
+image = "/wp-content/uploads/2011/01/IMG_9484.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/18/granite-way.md b/content/posts/2011/01/18/granite-way.md
new file mode 100644
index 00000000..19a3a036
--- /dev/null
+++ b/content/posts/2011/01/18/granite-way.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-18T01:03:01-07:00"
+title = "Granite Way"
+image = "/wp-content/uploads/2011/01/DSCN2811.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/19/lemonheads.md b/content/posts/2011/01/19/lemonheads.md
new file mode 100644
index 00000000..57b58004
--- /dev/null
+++ b/content/posts/2011/01/19/lemonheads.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-19T01:03:01-07:00"
+title = "Lemonheads"
+image = "/wp-content/uploads/2011/01/DSCN2813.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/20/alley.md b/content/posts/2011/01/20/alley.md
new file mode 100644
index 00000000..b01cae9c
--- /dev/null
+++ b/content/posts/2011/01/20/alley.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-20T01:03:01-07:00"
+title = "Alley"
+image = "/wp-content/uploads/2011/01/DSCN2815.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/21/reflections-of-a-sunrise.md b/content/posts/2011/01/21/reflections-of-a-sunrise.md
new file mode 100644
index 00000000..183c0fcb
--- /dev/null
+++ b/content/posts/2011/01/21/reflections-of-a-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-21T01:03:01-07:00"
+title = "Reflections of a Sunrise"
+image = "/wp-content/uploads/2011/01/IMG_9514.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/22/view-from-my-prison.md b/content/posts/2011/01/22/view-from-my-prison.md
new file mode 100644
index 00000000..cf16e674
--- /dev/null
+++ b/content/posts/2011/01/22/view-from-my-prison.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-22T01:03:01-07:00"
+title = "View From My Prison"
+image = "/wp-content/uploads/2011/01/DSCN2801.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/23/glass_sunset.md b/content/posts/2011/01/23/glass_sunset.md
new file mode 100644
index 00000000..c2f450df
--- /dev/null
+++ b/content/posts/2011/01/23/glass_sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-23T01:03:01-07:00"
+title = "Glass Sunset"
+image = "/wp-content/uploads/2011/01/IMG_9557.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/24/reflected-sunset.md b/content/posts/2011/01/24/reflected-sunset.md
new file mode 100644
index 00000000..a1c8d550
--- /dev/null
+++ b/content/posts/2011/01/24/reflected-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-24T01:03:01-07:00"
+title = "Reflected Sunset"
+image = "/wp-content/uploads/2011/01/IMG_9558.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/25/red-door-2.md b/content/posts/2011/01/25/red-door-2.md
new file mode 100644
index 00000000..8304493e
--- /dev/null
+++ b/content/posts/2011/01/25/red-door-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-25T01:03:01-07:00"
+title = "Red Door"
+image = "/wp-content/uploads/2011/01/IMG_9561.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/26/drive-home.md b/content/posts/2011/01/26/drive-home.md
new file mode 100644
index 00000000..07d7c207
--- /dev/null
+++ b/content/posts/2011/01/26/drive-home.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-26T01:03:01-07:00"
+title = "Drive Home"
+image = "/wp-content/uploads/2011/01/IMG_9572.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/27/blue-and-tall.md b/content/posts/2011/01/27/blue-and-tall.md
new file mode 100644
index 00000000..25b0f189
--- /dev/null
+++ b/content/posts/2011/01/27/blue-and-tall.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-27T01:03:01-07:00"
+title = "Blue and Tall"
+image = "/wp-content/uploads/2011/01/IMG_9582.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/28/green-glass.md b/content/posts/2011/01/28/green-glass.md
new file mode 100644
index 00000000..d03f3781
--- /dev/null
+++ b/content/posts/2011/01/28/green-glass.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-28T01:03:01-07:00"
+title = "Green Glass"
+image = "/wp-content/uploads/2011/01/IMG_9583.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/29/new-reflecting-old.md b/content/posts/2011/01/29/new-reflecting-old.md
new file mode 100644
index 00000000..c40ced18
--- /dev/null
+++ b/content/posts/2011/01/29/new-reflecting-old.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-29T01:03:01-07:00"
+title = "New Reflecting Old"
+image = "/wp-content/uploads/2011/01/IMG_9585.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/30/dapple-building.md b/content/posts/2011/01/30/dapple-building.md
new file mode 100644
index 00000000..8ecf4482
--- /dev/null
+++ b/content/posts/2011/01/30/dapple-building.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-30T01:03:01-07:00"
+title = "Dapple Building"
+image = "/wp-content/uploads/2011/01/IMG_9588.jpg"
++++
+
+
+
diff --git a/content/posts/2011/01/31/orange-on-street.md b/content/posts/2011/01/31/orange-on-street.md
new file mode 100644
index 00000000..8f38e7b3
--- /dev/null
+++ b/content/posts/2011/01/31/orange-on-street.md
@@ -0,0 +1,8 @@
++++
+date = "2011-01-31T01:03:01-07:00"
+title = "Orange On Street"
+image = ""
++++
+
+
+
diff --git a/content/posts/2011/02/01/plants-in-sunset.md b/content/posts/2011/02/01/plants-in-sunset.md
new file mode 100644
index 00000000..7b7ddfe0
--- /dev/null
+++ b/content/posts/2011/02/01/plants-in-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-01T01:03:01-07:00"
+title = "Plants in Sunset"
+image = "/wp-content/uploads/2011/01/IMG_9591.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/02/wavy-sunset.md b/content/posts/2011/02/02/wavy-sunset.md
new file mode 100644
index 00000000..98092135
--- /dev/null
+++ b/content/posts/2011/02/02/wavy-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-02T01:03:01-07:00"
+title = "Wavy Sunset"
+image = "/wp-content/uploads/2011/02/P1299660.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/03/dof.md b/content/posts/2011/02/03/dof.md
new file mode 100644
index 00000000..e0a39ced
--- /dev/null
+++ b/content/posts/2011/02/03/dof.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-03T01:03:01-07:00"
+title = "DOF"
+image = "/wp-content/uploads/2011/02/P2069906.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/04/sage-in-bloom.md b/content/posts/2011/02/04/sage-in-bloom.md
new file mode 100644
index 00000000..2bf6a4eb
--- /dev/null
+++ b/content/posts/2011/02/04/sage-in-bloom.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-04T01:03:01-07:00"
+title = "Sage in Bloom"
+image = "/wp-content/uploads/2011/02/P4050987.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/05/dino-garden.md b/content/posts/2011/02/05/dino-garden.md
new file mode 100644
index 00000000..6cd08fc4
--- /dev/null
+++ b/content/posts/2011/02/05/dino-garden.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-05T01:03:01-07:00"
+title = "Dino Garden"
+image = "/wp-content/uploads/2011/02/P6299972.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/06/luxury-on-the-beach.md b/content/posts/2011/02/06/luxury-on-the-beach.md
new file mode 100644
index 00000000..44d7b45e
--- /dev/null
+++ b/content/posts/2011/02/06/luxury-on-the-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-06T01:03:01-07:00"
+title = "Luxury on the Beach"
+image = "/wp-content/uploads/2011/02/P9115715.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/07/ft-worth.md b/content/posts/2011/02/07/ft-worth.md
new file mode 100644
index 00000000..b61c14fa
--- /dev/null
+++ b/content/posts/2011/02/07/ft-worth.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-07T01:03:01-07:00"
+title = "Ft. Worth"
+image = "/wp-content/uploads/2011/02/p6073284.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/08/long-road.md b/content/posts/2011/02/08/long-road.md
new file mode 100644
index 00000000..ca673680
--- /dev/null
+++ b/content/posts/2011/02/08/long-road.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-08T04:03:01-07:00"
+title = "Long Road"
+image = "/wp-content/uploads/2011/02/IMG_9602.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/09/progress-at-sunrise.md b/content/posts/2011/02/09/progress-at-sunrise.md
new file mode 100644
index 00000000..26317c0f
--- /dev/null
+++ b/content/posts/2011/02/09/progress-at-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-09T01:03:01-07:00"
+title = "Progress At Sunrise"
+image = "/wp-content/uploads/2011/02/IMG_9607.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/10/reflections-of-progress-2.md b/content/posts/2011/02/10/reflections-of-progress-2.md
new file mode 100644
index 00000000..d996f8b8
--- /dev/null
+++ b/content/posts/2011/02/10/reflections-of-progress-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-10T01:03:01-07:00"
+title = "Reflections of Progress"
+image = "/wp-content/uploads/2011/02/IMG_9616.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/11/color-in-corner.md b/content/posts/2011/02/11/color-in-corner.md
new file mode 100644
index 00000000..e579f21e
--- /dev/null
+++ b/content/posts/2011/02/11/color-in-corner.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-11T01:03:01-07:00"
+title = "Color in Corner"
+image = "/wp-content/uploads/2011/02/IMG_9707.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/12/2859.md b/content/posts/2011/02/12/2859.md
new file mode 100644
index 00000000..f1ff6a3a
--- /dev/null
+++ b/content/posts/2011/02/12/2859.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-12T01:03:01-07:00"
+title = "None"
+image = "/wp-content/uploads/2011/02/IMG_9713.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/13/two-lines.md b/content/posts/2011/02/13/two-lines.md
new file mode 100644
index 00000000..67222041
--- /dev/null
+++ b/content/posts/2011/02/13/two-lines.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-13T01:03:01-07:00"
+title = "Two Lines"
+image = "/wp-content/uploads/2011/02/IMG_9728.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/14/horns.md b/content/posts/2011/02/14/horns.md
new file mode 100644
index 00000000..f1919126
--- /dev/null
+++ b/content/posts/2011/02/14/horns.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-14T01:03:01-07:00"
+title = "Horns!"
+image = "/wp-content/uploads/2011/02/p6083596.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/15/take-the-brick-path.md b/content/posts/2011/02/15/take-the-brick-path.md
new file mode 100644
index 00000000..46af6e48
--- /dev/null
+++ b/content/posts/2011/02/15/take-the-brick-path.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-15T01:03:01-07:00"
+title = "Take the Brick Path"
+image = "/wp-content/uploads/2011/02/IMG_9819.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/16/uh-law-school-ii.md b/content/posts/2011/02/16/uh-law-school-ii.md
new file mode 100644
index 00000000..ce252532
--- /dev/null
+++ b/content/posts/2011/02/16/uh-law-school-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-16T01:03:01-07:00"
+title = "UH Law School II"
+image = "/wp-content/uploads/2011/02/IMG_9820.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/17/uh-law-school-i.md b/content/posts/2011/02/17/uh-law-school-i.md
new file mode 100644
index 00000000..d5a4683a
--- /dev/null
+++ b/content/posts/2011/02/17/uh-law-school-i.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-17T01:03:01-07:00"
+title = "UH Law School I"
+image = "/wp-content/uploads/2011/02/IMG_9821.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/18/uh-law-school-iii.md b/content/posts/2011/02/18/uh-law-school-iii.md
new file mode 100644
index 00000000..a6e18d56
--- /dev/null
+++ b/content/posts/2011/02/18/uh-law-school-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-18T01:03:01-07:00"
+title = "UH Law School III"
+image = "/wp-content/uploads/2011/02/IMG_9829.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/19/long-walk-nowhere.md b/content/posts/2011/02/19/long-walk-nowhere.md
new file mode 100644
index 00000000..827449d5
--- /dev/null
+++ b/content/posts/2011/02/19/long-walk-nowhere.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-19T01:03:01-07:00"
+title = "Long Walk Nowhere"
+image = "/wp-content/uploads/2011/02/DSCN2878.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/20/construction_and_clouds.md b/content/posts/2011/02/20/construction_and_clouds.md
new file mode 100644
index 00000000..9f1bf6d5
--- /dev/null
+++ b/content/posts/2011/02/20/construction_and_clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-20T01:03:01-07:00"
+title = "Construction and Clouds"
+image = "/wp-content/uploads/2011/02/DSCN2881.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/21/crane-in-clouds.md b/content/posts/2011/02/21/crane-in-clouds.md
new file mode 100644
index 00000000..fd5db545
--- /dev/null
+++ b/content/posts/2011/02/21/crane-in-clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-21T01:03:01-07:00"
+title = "Crane in Clouds"
+image = "/wp-content/uploads/2011/02/DSCN2882.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/22/time_to_move_on.md b/content/posts/2011/02/22/time_to_move_on.md
new file mode 100644
index 00000000..e7d545eb
--- /dev/null
+++ b/content/posts/2011/02/22/time_to_move_on.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-22T01:03:01-07:00"
+title = "Time to Move On"
+image = "/wp-content/uploads/2011/02/DSCN2887.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/23/eyes-are-the-windows-to-the-soul-of-a-car.md b/content/posts/2011/02/23/eyes-are-the-windows-to-the-soul-of-a-car.md
new file mode 100644
index 00000000..7e44ec7d
--- /dev/null
+++ b/content/posts/2011/02/23/eyes-are-the-windows-to-the-soul-of-a-car.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-23T01:03:01-07:00"
+title = "Eyes are the windows to the soul...of a car?"
+image = "/wp-content/uploads/2011/02/IMG_9834.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/24/zen-garden.md b/content/posts/2011/02/24/zen-garden.md
new file mode 100644
index 00000000..395c0f57
--- /dev/null
+++ b/content/posts/2011/02/24/zen-garden.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-24T01:03:01-07:00"
+title = "Zen Garden"
+image = "/wp-content/uploads/2011/02/DSCN2899.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/25/headlamp.md b/content/posts/2011/02/25/headlamp.md
new file mode 100644
index 00000000..e0385c3b
--- /dev/null
+++ b/content/posts/2011/02/25/headlamp.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-25T01:03:01-07:00"
+title = "Headlamp"
+image = "/wp-content/uploads/2011/02/DSCN2901.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/26/black-barrier.md b/content/posts/2011/02/26/black-barrier.md
new file mode 100644
index 00000000..b7304daa
--- /dev/null
+++ b/content/posts/2011/02/26/black-barrier.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-26T01:03:01-07:00"
+title = "Black Barrier"
+image = "/wp-content/uploads/2011/02/DSCN2902.jpg"
++++
+
+
+
diff --git a/content/posts/2011/02/27/street-art-found.md b/content/posts/2011/02/27/street-art-found.md
new file mode 100644
index 00000000..f099eaed
--- /dev/null
+++ b/content/posts/2011/02/27/street-art-found.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-27T01:03:01-07:00"
+title = "Street Art Found"
+image = ""
++++
+
+
+
diff --git a/content/posts/2011/02/28/street-art-found-ii.md b/content/posts/2011/02/28/street-art-found-ii.md
new file mode 100644
index 00000000..81b10941
--- /dev/null
+++ b/content/posts/2011/02/28/street-art-found-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2011-02-28T01:03:01-07:00"
+title = "Street Art Found II"
+image = ""
++++
+
+
+
diff --git a/content/posts/2011/03/01/brick-wall-and-walk.md b/content/posts/2011/03/01/brick-wall-and-walk.md
new file mode 100644
index 00000000..92b00ac3
--- /dev/null
+++ b/content/posts/2011/03/01/brick-wall-and-walk.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-01T01:03:01-07:00"
+title = "Brick Wall and Walk"
+image = "/wp-content/uploads/2011/02/DSCN2907.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/02/horns-2.md b/content/posts/2011/03/02/horns-2.md
new file mode 100644
index 00000000..ceb290da
--- /dev/null
+++ b/content/posts/2011/03/02/horns-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-02T01:03:01-07:00"
+title = "Horns!"
+image = "/wp-content/uploads/2011/02/IMG_9951.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/03/craftsman-at-work-2.md b/content/posts/2011/03/03/craftsman-at-work-2.md
new file mode 100644
index 00000000..974f4256
--- /dev/null
+++ b/content/posts/2011/03/03/craftsman-at-work-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-03T01:03:01-07:00"
+title = "Craftsman at work"
+image = "/wp-content/uploads/2011/02/IMG_9959.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/04/lacy-crane.md b/content/posts/2011/03/04/lacy-crane.md
new file mode 100644
index 00000000..fa5dcb0b
--- /dev/null
+++ b/content/posts/2011/03/04/lacy-crane.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-04T01:03:01-07:00"
+title = "Lacy Crane"
+image = "/wp-content/uploads/2011/02/IMG_9967.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/05/lace-in-the-making.md b/content/posts/2011/03/05/lace-in-the-making.md
new file mode 100644
index 00000000..fec46978
--- /dev/null
+++ b/content/posts/2011/03/05/lace-in-the-making.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-05T01:03:01-07:00"
+title = "Lace in the making"
+image = "/wp-content/uploads/2011/02/IMG_9968.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/06/before-videos.md b/content/posts/2011/03/06/before-videos.md
new file mode 100644
index 00000000..945d2add
--- /dev/null
+++ b/content/posts/2011/03/06/before-videos.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-06T01:03:01-07:00"
+title = "Before Videos"
+image = "/wp-content/uploads/2011/02/IMG_9984.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/07/threads-of-the-fates.md b/content/posts/2011/03/07/threads-of-the-fates.md
new file mode 100644
index 00000000..bbbee384
--- /dev/null
+++ b/content/posts/2011/03/07/threads-of-the-fates.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-07T01:03:01-07:00"
+title = "Threads of the Fates?"
+image = "/wp-content/uploads/2011/02/IMG_9988.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/08/ally.md b/content/posts/2011/03/08/ally.md
new file mode 100644
index 00000000..f25d6cdd
--- /dev/null
+++ b/content/posts/2011/03/08/ally.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-08T01:03:01-07:00"
+title = "Ally"
+image = "/wp-content/uploads/2011/03/DSCN2815.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/09/here_be_dragons.md b/content/posts/2011/03/09/here_be_dragons.md
new file mode 100644
index 00000000..e01b0da8
--- /dev/null
+++ b/content/posts/2011/03/09/here_be_dragons.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-09T01:03:01-07:00"
+title = "Here Be Dragons!"
+image = "/wp-content/uploads/2011/03/DSCN2872.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/10/life-behind-glass-wall.md b/content/posts/2011/03/10/life-behind-glass-wall.md
new file mode 100644
index 00000000..a83decc3
--- /dev/null
+++ b/content/posts/2011/03/10/life-behind-glass-wall.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-10T01:03:01-07:00"
+title = "Life Behind Glass Wall"
+image = "/wp-content/uploads/2011/03/DSCN2885.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/11/found-steet-art-iii.md b/content/posts/2011/03/11/found-steet-art-iii.md
new file mode 100644
index 00000000..9aab3ac2
--- /dev/null
+++ b/content/posts/2011/03/11/found-steet-art-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-11T01:03:01-07:00"
+title = "Found Steet Art III"
+image = "/wp-content/uploads/2011/03/DSCN2904.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/12/drive-time-sunset.md b/content/posts/2011/03/12/drive-time-sunset.md
new file mode 100644
index 00000000..620e85a6
--- /dev/null
+++ b/content/posts/2011/03/12/drive-time-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-12T01:03:01-07:00"
+title = "Drive Time Sunset"
+image = "/wp-content/uploads/2011/03/DSCN2915.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/13/leaf_on_sidewalk.md b/content/posts/2011/03/13/leaf_on_sidewalk.md
new file mode 100644
index 00000000..40609e0c
--- /dev/null
+++ b/content/posts/2011/03/13/leaf_on_sidewalk.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-13T01:03:01-07:00"
+title = "Leaf On Sidewalk"
+image = "/wp-content/uploads/2011/03/IMG_9444.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/14/taillights-in-rain.md b/content/posts/2011/03/14/taillights-in-rain.md
new file mode 100644
index 00000000..afb28f75
--- /dev/null
+++ b/content/posts/2011/03/14/taillights-in-rain.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-14T01:03:01-07:00"
+title = "Taillights in Rain"
+image = "/wp-content/uploads/2011/03/IMG_9459.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/15/houston-city-hall-3.md b/content/posts/2011/03/15/houston-city-hall-3.md
new file mode 100644
index 00000000..e2805491
--- /dev/null
+++ b/content/posts/2011/03/15/houston-city-hall-3.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-15T01:03:01-07:00"
+title = "Houston City Hall"
+image = "/wp-content/uploads/2011/03/IMG_9462.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/16/gnome-standing-gaurd.md b/content/posts/2011/03/16/gnome-standing-gaurd.md
new file mode 100644
index 00000000..f36a5e0d
--- /dev/null
+++ b/content/posts/2011/03/16/gnome-standing-gaurd.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-16T01:03:01-07:00"
+title = "Gnome: Standing Gaurd"
+image = "/wp-content/uploads/2011/03/IMG_9578.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/17/warm_start_of_the_day.md b/content/posts/2011/03/17/warm_start_of_the_day.md
new file mode 100644
index 00000000..7aba137f
--- /dev/null
+++ b/content/posts/2011/03/17/warm_start_of_the_day.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-17T01:03:01-07:00"
+title = "Warm Start of the Day"
+image = "/wp-content/uploads/2011/03/IMG_9608.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/18/cold-sunset.md b/content/posts/2011/03/18/cold-sunset.md
new file mode 100644
index 00000000..77656f58
--- /dev/null
+++ b/content/posts/2011/03/18/cold-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-18T01:03:01-07:00"
+title = "Cold Sunset"
+image = "/wp-content/uploads/2011/03/IMG_9722.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/19/looong-drive.md b/content/posts/2011/03/19/looong-drive.md
new file mode 100644
index 00000000..e4abe164
--- /dev/null
+++ b/content/posts/2011/03/19/looong-drive.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-19T01:03:01-07:00"
+title = "Looong Drive"
+image = "/wp-content/uploads/2011/03/IMG_9758.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/20/green-lights.md b/content/posts/2011/03/20/green-lights.md
new file mode 100644
index 00000000..72c42fcb
--- /dev/null
+++ b/content/posts/2011/03/20/green-lights.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-20T01:03:01-07:00"
+title = "Green Lights"
+image = "/wp-content/uploads/2011/03/IMG_9815.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/21/houston-public-library.md b/content/posts/2011/03/21/houston-public-library.md
new file mode 100644
index 00000000..3289820e
--- /dev/null
+++ b/content/posts/2011/03/21/houston-public-library.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-21T01:03:01-07:00"
+title = "Houston Public Library"
+image = "/wp-content/uploads/2011/03/IMG_9874.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/22/play-ball.md b/content/posts/2011/03/22/play-ball.md
new file mode 100644
index 00000000..543db6ea
--- /dev/null
+++ b/content/posts/2011/03/22/play-ball.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-22T01:03:01-07:00"
+title = "Play Ball!"
+image = "/wp-content/uploads/2011/03/IMG_9911.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/23/long-live-texas.md b/content/posts/2011/03/23/long-live-texas.md
new file mode 100644
index 00000000..288c6999
--- /dev/null
+++ b/content/posts/2011/03/23/long-live-texas.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-23T01:03:01-07:00"
+title = "Long Live Texas"
+image = "/wp-content/uploads/2011/03/IMG_9948.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/24/boats-at-anchor.md b/content/posts/2011/03/24/boats-at-anchor.md
new file mode 100644
index 00000000..4aa2c940
--- /dev/null
+++ b/content/posts/2011/03/24/boats-at-anchor.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-24T02:03:01-07:00"
+title = "Boats at anchor"
+image = "/wp-content/uploads/2011/03/IMG_0032.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/25/ready-for-the-sun.md b/content/posts/2011/03/25/ready-for-the-sun.md
new file mode 100644
index 00000000..d38f1e1b
--- /dev/null
+++ b/content/posts/2011/03/25/ready-for-the-sun.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-25T02:03:01-07:00"
+title = "Ready for the Sun"
+image = "/wp-content/uploads/2011/03/IMG_0037.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/26/sunset-over-piers.md b/content/posts/2011/03/26/sunset-over-piers.md
new file mode 100644
index 00000000..dbc54d7f
--- /dev/null
+++ b/content/posts/2011/03/26/sunset-over-piers.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-26T02:03:01-07:00"
+title = "Sunset over piers"
+image = "/wp-content/uploads/2011/03/IMG_0044.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/27/dock.md b/content/posts/2011/03/27/dock.md
new file mode 100644
index 00000000..8e1412d0
--- /dev/null
+++ b/content/posts/2011/03/27/dock.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-27T02:03:01-07:00"
+title = "Dock"
+image = "/wp-content/uploads/2011/03/IMG_0062.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/28/downtown-san-miguel-de-cozumel.md b/content/posts/2011/03/28/downtown-san-miguel-de-cozumel.md
new file mode 100644
index 00000000..a934f69c
--- /dev/null
+++ b/content/posts/2011/03/28/downtown-san-miguel-de-cozumel.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-28T02:03:01-07:00"
+title = "Downtown San Miguel de Cozumel"
+image = "/wp-content/uploads/2011/03/IMG_0112.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/29/clocktower-at-plaza-de-sol.md b/content/posts/2011/03/29/clocktower-at-plaza-de-sol.md
new file mode 100644
index 00000000..74af1d83
--- /dev/null
+++ b/content/posts/2011/03/29/clocktower-at-plaza-de-sol.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-29T02:03:01-07:00"
+title = "Clocktower at Plaza De Sol"
+image = "/wp-content/uploads/2011/03/IMG_0113.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/30/sidewalk.md b/content/posts/2011/03/30/sidewalk.md
new file mode 100644
index 00000000..9272d0ad
--- /dev/null
+++ b/content/posts/2011/03/30/sidewalk.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-30T02:03:01-07:00"
+title = "SIdewalk"
+image = "/wp-content/uploads/2011/03/IMG_0116.jpg"
++++
+
+
+
diff --git a/content/posts/2011/03/31/yellow-building.md b/content/posts/2011/03/31/yellow-building.md
new file mode 100644
index 00000000..a9536fcd
--- /dev/null
+++ b/content/posts/2011/03/31/yellow-building.md
@@ -0,0 +1,8 @@
++++
+date = "2011-03-31T02:03:01-07:00"
+title = "Yellow Building"
+image = "/wp-content/uploads/2011/03/IMG_0118.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/01/masks.md b/content/posts/2011/04/01/masks.md
new file mode 100644
index 00000000..e5b69995
--- /dev/null
+++ b/content/posts/2011/04/01/masks.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-01T02:03:01-07:00"
+title = "Masks!"
+image = "/wp-content/uploads/2011/03/IMG_0120.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/02/ruins.md b/content/posts/2011/04/02/ruins.md
new file mode 100644
index 00000000..6a8ea9f6
--- /dev/null
+++ b/content/posts/2011/04/02/ruins.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-02T02:03:01-07:00"
+title = "Ruins"
+image = "/wp-content/uploads/2011/03/IMG_0158.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/03/feed-me-2.md b/content/posts/2011/04/03/feed-me-2.md
new file mode 100644
index 00000000..6a34938c
--- /dev/null
+++ b/content/posts/2011/04/03/feed-me-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-03T02:03:01-07:00"
+title = "Feed me!"
+image = "/wp-content/uploads/2011/03/IMG_0184.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/04/lighthouse.md b/content/posts/2011/04/04/lighthouse.md
new file mode 100644
index 00000000..ee67f98f
--- /dev/null
+++ b/content/posts/2011/04/04/lighthouse.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-04T02:03:01-07:00"
+title = "Lighthouse"
+image = "/wp-content/uploads/2011/03/IMG_0226.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/05/perfecr-beach.md b/content/posts/2011/04/05/perfecr-beach.md
new file mode 100644
index 00000000..c522d81a
--- /dev/null
+++ b/content/posts/2011/04/05/perfecr-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-05T02:03:01-07:00"
+title = "Perfecr Beach?"
+image = "/wp-content/uploads/2011/03/IMG_0270.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/06/caribbean-sunset.md b/content/posts/2011/04/06/caribbean-sunset.md
new file mode 100644
index 00000000..e007760b
--- /dev/null
+++ b/content/posts/2011/04/06/caribbean-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-06T02:03:01-07:00"
+title = "Caribbean Sunset"
+image = "/wp-content/uploads/2011/03/IMG_0357.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/07/sunset-iv.md b/content/posts/2011/04/07/sunset-iv.md
new file mode 100644
index 00000000..8f33e2ed
--- /dev/null
+++ b/content/posts/2011/04/07/sunset-iv.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-07T02:03:01-07:00"
+title = "Sunset IV"
+image = "/wp-content/uploads/2011/04/IMG_0031.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/08/pier-and-clouds.md b/content/posts/2011/04/08/pier-and-clouds.md
new file mode 100644
index 00000000..d67dd237
--- /dev/null
+++ b/content/posts/2011/04/08/pier-and-clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-08T02:03:01-07:00"
+title = "Pier and Clouds"
+image = "/wp-content/uploads/2011/04/IMG_0054.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/09/sunset-v.md b/content/posts/2011/04/09/sunset-v.md
new file mode 100644
index 00000000..8452e1f3
--- /dev/null
+++ b/content/posts/2011/04/09/sunset-v.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-09T02:03:01-07:00"
+title = "Sunset V"
+image = "/wp-content/uploads/2011/04/IMG_0146.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/10/sunset-vi.md b/content/posts/2011/04/10/sunset-vi.md
new file mode 100644
index 00000000..e1da959d
--- /dev/null
+++ b/content/posts/2011/04/10/sunset-vi.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-10T02:03:01-07:00"
+title = "Sunset VI"
+image = "/wp-content/uploads/2011/04/IMG_0149.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/11/lizzard-and-stone.md b/content/posts/2011/04/11/lizzard-and-stone.md
new file mode 100644
index 00000000..56070d92
--- /dev/null
+++ b/content/posts/2011/04/11/lizzard-and-stone.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-11T02:03:01-07:00"
+title = "Lizzard and Stone"
+image = "/wp-content/uploads/2011/04/IMG_0229.jpg"
++++
+
+
+
diff --git a/content/posts/2011/04/12/iguana.md b/content/posts/2011/04/12/iguana.md
new file mode 100644
index 00000000..62336f19
--- /dev/null
+++ b/content/posts/2011/04/12/iguana.md
@@ -0,0 +1,8 @@
++++
+date = "2011-04-12T02:03:01-07:00"
+title = "Iguana"
+image = "/wp-content/uploads/2011/04/IMG_0235.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/15/back.md b/content/posts/2011/07/15/back.md
new file mode 100644
index 00000000..550817b0
--- /dev/null
+++ b/content/posts/2011/07/15/back.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-15T23:18:30-07:00"
+title = "Back.."
+image = ""
++++
+
+
+
diff --git a/content/posts/2011/07/16/hdr_garden.md b/content/posts/2011/07/16/hdr_garden.md
new file mode 100644
index 00000000..204ae6a0
--- /dev/null
+++ b/content/posts/2011/07/16/hdr_garden.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-16T02:03:01-07:00"
+title = "HDR Garden"
+image = "/wp-content/uploads/2011/07/2011-05-25-18.03.271.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/17/hdr_gnomes.md b/content/posts/2011/07/17/hdr_gnomes.md
new file mode 100644
index 00000000..e4eb7bdc
--- /dev/null
+++ b/content/posts/2011/07/17/hdr_gnomes.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-17T02:03:01-07:00"
+title = "HDR Gnomes!"
+image = "/wp-content/uploads/2011/07/2011-06-10-15.53.211.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/18/wet-football-field.md b/content/posts/2011/07/18/wet-football-field.md
new file mode 100644
index 00000000..ed8aaaa1
--- /dev/null
+++ b/content/posts/2011/07/18/wet-football-field.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-18T02:03:01-07:00"
+title = "Wet Football Field"
+image = "/wp-content/uploads/2011/07/2011-06-23-18-26-38-040.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/19/hdr-ducks.md b/content/posts/2011/07/19/hdr-ducks.md
new file mode 100644
index 00000000..e8090c25
--- /dev/null
+++ b/content/posts/2011/07/19/hdr-ducks.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-19T02:03:01-07:00"
+title = "HDR Ducks"
+image = "/wp-content/uploads/2011/07/2011-07-15-19.14.40.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/20/boom.md b/content/posts/2011/07/20/boom.md
new file mode 100644
index 00000000..52798d1f
--- /dev/null
+++ b/content/posts/2011/07/20/boom.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-20T02:03:01-07:00"
+title = "Boom"
+image = "/wp-content/uploads/2011/07/2011070421354780.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/21/watching-booms.md b/content/posts/2011/07/21/watching-booms.md
new file mode 100644
index 00000000..8e4567f9
--- /dev/null
+++ b/content/posts/2011/07/21/watching-booms.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-21T02:03:01-07:00"
+title = "Watching Booms"
+image = "/wp-content/uploads/2011/07/2011070421405715.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/23/sunrise-at-speed.md b/content/posts/2011/07/23/sunrise-at-speed.md
new file mode 100644
index 00000000..ff79194e
--- /dev/null
+++ b/content/posts/2011/07/23/sunrise-at-speed.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-23T02:03:01-07:00"
+title = "Sunrise at speed"
+image = "/wp-content/uploads/2011/07/2011071407072816.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/24/duck-eye.md b/content/posts/2011/07/24/duck-eye.md
new file mode 100644
index 00000000..2c482736
--- /dev/null
+++ b/content/posts/2011/07/24/duck-eye.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-24T02:03:01-07:00"
+title = "Duck Eye!"
+image = "/wp-content/uploads/2011/07/IMG_20110607_093202_edit0.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/25/clouds-sun-lights.md b/content/posts/2011/07/25/clouds-sun-lights.md
new file mode 100644
index 00000000..463712dc
--- /dev/null
+++ b/content/posts/2011/07/25/clouds-sun-lights.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-25T02:03:01-07:00"
+title = "Clouds, Sun, Lights"
+image = "/wp-content/uploads/2011/07/2011071608121334.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/26/duck-2.md b/content/posts/2011/07/26/duck-2.md
new file mode 100644
index 00000000..a7fef309
--- /dev/null
+++ b/content/posts/2011/07/26/duck-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-26T02:03:01-07:00"
+title = "Duck!"
+image = "/wp-content/uploads/2011/07/2011071615333946.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/27/duck-2-2.md b/content/posts/2011/07/27/duck-2-2.md
new file mode 100644
index 00000000..d3d662ad
--- /dev/null
+++ b/content/posts/2011/07/27/duck-2-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-27T02:03:01-07:00"
+title = "Duck 2"
+image = "/wp-content/uploads/2011/07/2011071615345379.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/28/turtle-swiming.md b/content/posts/2011/07/28/turtle-swiming.md
new file mode 100644
index 00000000..300bc60b
--- /dev/null
+++ b/content/posts/2011/07/28/turtle-swiming.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-28T02:03:01-07:00"
+title = "Turtle Swiming"
+image = "/wp-content/uploads/2011/07/2011071615352690.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/29/duck-walk.md b/content/posts/2011/07/29/duck-walk.md
new file mode 100644
index 00000000..09afbc25
--- /dev/null
+++ b/content/posts/2011/07/29/duck-walk.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-29T02:03:01-07:00"
+title = "Duck Walk"
+image = "/wp-content/uploads/2011/07/2011071615401182.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/30/ducklings.md b/content/posts/2011/07/30/ducklings.md
new file mode 100644
index 00000000..39dbe087
--- /dev/null
+++ b/content/posts/2011/07/30/ducklings.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-30T02:03:01-07:00"
+title = "Ducklings!"
+image = "/wp-content/uploads/2011/07/2011071615410776.jpg"
++++
+
+
+
diff --git a/content/posts/2011/07/31/hedge-of-roses.md b/content/posts/2011/07/31/hedge-of-roses.md
new file mode 100644
index 00000000..9d8e2dfb
--- /dev/null
+++ b/content/posts/2011/07/31/hedge-of-roses.md
@@ -0,0 +1,8 @@
++++
+date = "2011-07-31T02:03:01-07:00"
+title = "Hedge of Roses"
+image = "/wp-content/uploads/2011/07/2011071615464809.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/01/ducklinkgs-2.md b/content/posts/2011/08/01/ducklinkgs-2.md
new file mode 100644
index 00000000..e0362138
--- /dev/null
+++ b/content/posts/2011/08/01/ducklinkgs-2.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-01T02:03:01-07:00"
+title = "Ducklinkgs 2"
+image = "/wp-content/uploads/2011/07/2011071615484603.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/02/duck-4.md b/content/posts/2011/08/02/duck-4.md
new file mode 100644
index 00000000..03378b6c
--- /dev/null
+++ b/content/posts/2011/08/02/duck-4.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-02T02:03:01-07:00"
+title = "Duck 4"
+image = "/wp-content/uploads/2011/07/2011071616002332.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/03/butterfly-vii.md b/content/posts/2011/08/03/butterfly-vii.md
new file mode 100644
index 00000000..aa66b9d3
--- /dev/null
+++ b/content/posts/2011/08/03/butterfly-vii.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-03T02:03:01-07:00"
+title = "Butterfly VII"
+image = "/wp-content/uploads/2011/07/2011071017020229.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/04/bw-building.md b/content/posts/2011/08/04/bw-building.md
new file mode 100644
index 00000000..fccbe4c5
--- /dev/null
+++ b/content/posts/2011/08/04/bw-building.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-04T02:03:01-07:00"
+title = "BW Building"
+image = "/wp-content/uploads/2011/08/20110730075227.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/05/bw-hurdle.md b/content/posts/2011/08/05/bw-hurdle.md
new file mode 100644
index 00000000..17977a75
--- /dev/null
+++ b/content/posts/2011/08/05/bw-hurdle.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-05T02:03:01-07:00"
+title = "BW Hurdle"
+image = "/wp-content/uploads/2011/08/20110730075428.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/06/bw-grain-elevator.md b/content/posts/2011/08/06/bw-grain-elevator.md
new file mode 100644
index 00000000..2337971e
--- /dev/null
+++ b/content/posts/2011/08/06/bw-grain-elevator.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-06T02:03:01-07:00"
+title = "BW Grain Elevator"
+image = "/wp-content/uploads/2011/08/20110805090203.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/07/bw-rail-siding.md b/content/posts/2011/08/07/bw-rail-siding.md
new file mode 100644
index 00000000..97bcef57
--- /dev/null
+++ b/content/posts/2011/08/07/bw-rail-siding.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-07T02:03:01-07:00"
+title = "BW Rail SIding"
+image = "/wp-content/uploads/2011/08/20110805120933.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/08/bw-horns.md b/content/posts/2011/08/08/bw-horns.md
new file mode 100644
index 00000000..29545558
--- /dev/null
+++ b/content/posts/2011/08/08/bw-horns.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-08T02:03:01-07:00"
+title = "BW Horns"
+image = "/wp-content/uploads/2011/08/20110805121317.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/12/sunset-in-garage.md b/content/posts/2011/08/12/sunset-in-garage.md
new file mode 100644
index 00000000..ecd4abf7
--- /dev/null
+++ b/content/posts/2011/08/12/sunset-in-garage.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-12T02:03:01-07:00"
+title = "Sunset in Garage"
+image = "/wp-content/uploads/2011/08/20110309025.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/13/sunset-xiv.md b/content/posts/2011/08/13/sunset-xiv.md
new file mode 100644
index 00000000..51c52d7a
--- /dev/null
+++ b/content/posts/2011/08/13/sunset-xiv.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-13T02:03:01-07:00"
+title = "Sunset XIV"
+image = "/wp-content/uploads/2011/08/2011071720183303.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/14/sunrise-from-car.md b/content/posts/2011/08/14/sunrise-from-car.md
new file mode 100644
index 00000000..6907746d
--- /dev/null
+++ b/content/posts/2011/08/14/sunrise-from-car.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-14T02:03:01-07:00"
+title = "Sunrise From Car"
+image = "/wp-content/uploads/2011/08/20110801072413.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/15/cows-at-misty-sunrise.md b/content/posts/2011/08/15/cows-at-misty-sunrise.md
new file mode 100644
index 00000000..621cc6aa
--- /dev/null
+++ b/content/posts/2011/08/15/cows-at-misty-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-15T02:03:01-07:00"
+title = "Cows at Misty Sunrise"
+image = "/wp-content/uploads/2011/08/20110810074115-1.jpg"
++++
+
+
+
diff --git a/content/posts/2011/08/16/wet-sunrise.md b/content/posts/2011/08/16/wet-sunrise.md
new file mode 100644
index 00000000..a26eadc5
--- /dev/null
+++ b/content/posts/2011/08/16/wet-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2011-08-16T02:03:01-07:00"
+title = "Wet Sunrise"
+image = "/wp-content/uploads/2011/08/IMG_20110601_064031.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/17/sunrise-in-the-air.md b/content/posts/2011/12/17/sunrise-in-the-air.md
new file mode 100644
index 00000000..c9587a28
--- /dev/null
+++ b/content/posts/2011/12/17/sunrise-in-the-air.md
@@ -0,0 +1,9 @@
++++
+date = "2011-12-17T09:41:07-07:00"
+title = "Sunrise in the air"
+image = "/wp-content/uploads/2011/12/IMG_20111027_071019_edit0.jpg"
++++
+
+
+
+
diff --git a/content/posts/2011/12/20/long-drive.md b/content/posts/2011/12/20/long-drive.md
new file mode 100644
index 00000000..754b43a2
--- /dev/null
+++ b/content/posts/2011/12/20/long-drive.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-20T01:03:01-07:00"
+title = "Long Drive"
+image = "/wp-content/uploads/2011/12/20111206082816.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/21/clouds-on-the-horizon.md b/content/posts/2011/12/21/clouds-on-the-horizon.md
new file mode 100644
index 00000000..b545d464
--- /dev/null
+++ b/content/posts/2011/12/21/clouds-on-the-horizon.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-21T01:03:01-07:00"
+title = "Clouds on the Horizon"
+image = "/wp-content/uploads/2011/12/20111206175543.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/22/texture-i.md b/content/posts/2011/12/22/texture-i.md
new file mode 100644
index 00000000..b87dd618
--- /dev/null
+++ b/content/posts/2011/12/22/texture-i.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-22T01:03:01-07:00"
+title = "Texture I"
+image = "/wp-content/uploads/2011/12/20111207090205.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/23/new-dawn-breaking.md b/content/posts/2011/12/23/new-dawn-breaking.md
new file mode 100644
index 00000000..ba880563
--- /dev/null
+++ b/content/posts/2011/12/23/new-dawn-breaking.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-23T01:03:01-07:00"
+title = "New Dawn Breaking"
+image = "/wp-content/uploads/2011/12/20111208181919.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/24/fall-i.md b/content/posts/2011/12/24/fall-i.md
new file mode 100644
index 00000000..d2b9aadb
--- /dev/null
+++ b/content/posts/2011/12/24/fall-i.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-24T01:03:01-07:00"
+title = "Fall I"
+image = "/wp-content/uploads/2011/12/20111218164704.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/25/reflections-i.md b/content/posts/2011/12/25/reflections-i.md
new file mode 100644
index 00000000..949dbe2a
--- /dev/null
+++ b/content/posts/2011/12/25/reflections-i.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-25T01:03:01-07:00"
+title = "Reflections I"
+image = "/wp-content/uploads/2011/12/20111218165712.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/26/fall-ii.md b/content/posts/2011/12/26/fall-ii.md
new file mode 100644
index 00000000..7cd61afd
--- /dev/null
+++ b/content/posts/2011/12/26/fall-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-26T01:03:01-07:00"
+title = "Fall II"
+image = "/wp-content/uploads/2011/12/20111218165840-edit.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/27/fall-iii.md b/content/posts/2011/12/27/fall-iii.md
new file mode 100644
index 00000000..9fca914e
--- /dev/null
+++ b/content/posts/2011/12/27/fall-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-27T01:03:01-07:00"
+title = "Fall III"
+image = "/wp-content/uploads/2011/12/20111218170951.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/28/reflections-ii.md b/content/posts/2011/12/28/reflections-ii.md
new file mode 100644
index 00000000..506669eb
--- /dev/null
+++ b/content/posts/2011/12/28/reflections-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-28T01:03:01-07:00"
+title = "Reflections II"
+image = "/wp-content/uploads/2011/12/20111218172832.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/29/reflections-iii.md b/content/posts/2011/12/29/reflections-iii.md
new file mode 100644
index 00000000..fb43ebd0
--- /dev/null
+++ b/content/posts/2011/12/29/reflections-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-29T01:03:01-07:00"
+title = "Reflections III"
+image = "/wp-content/uploads/2011/12/20111218172850.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/30/fall-iv.md b/content/posts/2011/12/30/fall-iv.md
new file mode 100644
index 00000000..cd8fed38
--- /dev/null
+++ b/content/posts/2011/12/30/fall-iv.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-30T01:03:01-07:00"
+title = "Fall IV"
+image = "/wp-content/uploads/2011/12/20111218174333.jpg"
++++
+
+
+
diff --git a/content/posts/2011/12/31/stump.md b/content/posts/2011/12/31/stump.md
new file mode 100644
index 00000000..fc955baf
--- /dev/null
+++ b/content/posts/2011/12/31/stump.md
@@ -0,0 +1,8 @@
++++
+date = "2011-12-31T01:03:01-07:00"
+title = "Stump"
+image = "/wp-content/uploads/2011/12/20111218175211.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/03/stroll-on-beach-at-sunset.md b/content/posts/2012/01/03/stroll-on-beach-at-sunset.md
new file mode 100644
index 00000000..256347cb
--- /dev/null
+++ b/content/posts/2012/01/03/stroll-on-beach-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-03T01:03:01-07:00"
+title = "Stroll on Beach at Sunset"
+image = ""
++++
+
+
+
diff --git a/content/posts/2012/01/04/winter-beach.md b/content/posts/2012/01/04/winter-beach.md
new file mode 100644
index 00000000..036c6837
--- /dev/null
+++ b/content/posts/2012/01/04/winter-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-04T01:03:01-07:00"
+title = "Winter Beach"
+image = "/wp-content/uploads/2012/01/20111227113333.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/05/cold-seagull.md b/content/posts/2012/01/05/cold-seagull.md
new file mode 100644
index 00000000..1fc7d299
--- /dev/null
+++ b/content/posts/2012/01/05/cold-seagull.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-05T01:03:01-07:00"
+title = "Cold Seagull"
+image = "/wp-content/uploads/2012/01/20111227120921.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/06/i-heart-joe.md b/content/posts/2012/01/06/i-heart-joe.md
new file mode 100644
index 00000000..b6b0a9e5
--- /dev/null
+++ b/content/posts/2012/01/06/i-heart-joe.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-06T01:03:01-07:00"
+title = "I Heart Joe"
+image = "/wp-content/uploads/2012/01/20111227121753.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/07/flying-seagull-vi.md b/content/posts/2012/01/07/flying-seagull-vi.md
new file mode 100644
index 00000000..6f96ac29
--- /dev/null
+++ b/content/posts/2012/01/07/flying-seagull-vi.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-07T01:03:01-07:00"
+title = "Flying Seagull VI"
+image = "/wp-content/uploads/2012/01/20111227122608.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/08/reflective-seagull.md b/content/posts/2012/01/08/reflective-seagull.md
new file mode 100644
index 00000000..93c322f9
--- /dev/null
+++ b/content/posts/2012/01/08/reflective-seagull.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-08T01:03:01-07:00"
+title = "Reflective Seagull"
+image = "/wp-content/uploads/2012/01/20111227124352.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/09/tall-ship-elissa.md b/content/posts/2012/01/09/tall-ship-elissa.md
new file mode 100644
index 00000000..5d836bbd
--- /dev/null
+++ b/content/posts/2012/01/09/tall-ship-elissa.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-09T01:03:01-07:00"
+title = "Tall Ship Elissa"
+image = "/wp-content/uploads/2012/01/20111227141455.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/10/elissa-rigging-detail-i.md b/content/posts/2012/01/10/elissa-rigging-detail-i.md
new file mode 100644
index 00000000..e8cbb0f6
--- /dev/null
+++ b/content/posts/2012/01/10/elissa-rigging-detail-i.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-10T01:03:01-07:00"
+title = "Elissa Rigging Detail I"
+image = "/wp-content/uploads/2012/01/20111227155817.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/11/salon-of-the-elissa.md b/content/posts/2012/01/11/salon-of-the-elissa.md
new file mode 100644
index 00000000..19e2648a
--- /dev/null
+++ b/content/posts/2012/01/11/salon-of-the-elissa.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-11T01:03:01-07:00"
+title = "Salon Of The Elissa"
+image = "/wp-content/uploads/2012/01/20111227160631.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/12/elissa-rigging-detail-ii.md b/content/posts/2012/01/12/elissa-rigging-detail-ii.md
new file mode 100644
index 00000000..d2767e73
--- /dev/null
+++ b/content/posts/2012/01/12/elissa-rigging-detail-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-12T01:03:01-07:00"
+title = "Elissa Rigging Detail II"
+image = "/wp-content/uploads/2012/01/20111227161312.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/13/elissa-rigging-detail-iii.md b/content/posts/2012/01/13/elissa-rigging-detail-iii.md
new file mode 100644
index 00000000..dcda5e86
--- /dev/null
+++ b/content/posts/2012/01/13/elissa-rigging-detail-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-13T01:03:01-07:00"
+title = "Elissa Rigging Detail III"
+image = "/wp-content/uploads/2012/01/20111227161318.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/14/elissa-rigging-detail-iv.md b/content/posts/2012/01/14/elissa-rigging-detail-iv.md
new file mode 100644
index 00000000..a427d4c4
--- /dev/null
+++ b/content/posts/2012/01/14/elissa-rigging-detail-iv.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-14T01:03:01-07:00"
+title = "Elissa Rigging Detail IV"
+image = "/wp-content/uploads/2012/01/20111227161343.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/15/elissa-rigging-detail-v.md b/content/posts/2012/01/15/elissa-rigging-detail-v.md
new file mode 100644
index 00000000..3ea4c408
--- /dev/null
+++ b/content/posts/2012/01/15/elissa-rigging-detail-v.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-15T01:03:01-07:00"
+title = "Elissa Rigging Detail V"
+image = "/wp-content/uploads/2012/01/20111227162208.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/16/elissas-compus.md b/content/posts/2012/01/16/elissas-compus.md
new file mode 100644
index 00000000..1efd9cdf
--- /dev/null
+++ b/content/posts/2012/01/16/elissas-compus.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-16T01:03:01-07:00"
+title = "Elissa's Compus"
+image = "/wp-content/uploads/2012/01/20111227162445.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/17/elissa-rigging-detail-vi.md b/content/posts/2012/01/17/elissa-rigging-detail-vi.md
new file mode 100644
index 00000000..77ea14fd
--- /dev/null
+++ b/content/posts/2012/01/17/elissa-rigging-detail-vi.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-17T01:03:01-07:00"
+title = "Elissa Rigging Detail VI"
+image = "/wp-content/uploads/2012/01/20111227162601.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/18/fishing-pier.md b/content/posts/2012/01/18/fishing-pier.md
new file mode 100644
index 00000000..e73b7ad5
--- /dev/null
+++ b/content/posts/2012/01/18/fishing-pier.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-18T01:03:01-07:00"
+title = "Fishing Pier"
+image = "/wp-content/uploads/2012/01/20111227180900.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/19/winter-sunset-over-beach.md b/content/posts/2012/01/19/winter-sunset-over-beach.md
new file mode 100644
index 00000000..d1799d41
--- /dev/null
+++ b/content/posts/2012/01/19/winter-sunset-over-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-19T01:03:01-07:00"
+title = "Winter Sunset over Beach"
+image = "/wp-content/uploads/2012/01/20111227181844.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/20/reflections-of-a-sunset-beach-style.md b/content/posts/2012/01/20/reflections-of-a-sunset-beach-style.md
new file mode 100644
index 00000000..61165ef9
--- /dev/null
+++ b/content/posts/2012/01/20/reflections-of-a-sunset-beach-style.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-20T01:03:01-07:00"
+title = "Reflections of a Sunset, Beach Style"
+image = "/wp-content/uploads/2012/01/20111227182608.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/21/running-at-sunset.md b/content/posts/2012/01/21/running-at-sunset.md
new file mode 100644
index 00000000..15632240
--- /dev/null
+++ b/content/posts/2012/01/21/running-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-21T01:03:01-07:00"
+title = "Running at Sunset"
+image = "/wp-content/uploads/2012/01/20111227184028.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/22/moon-venus-sunset-beach.md b/content/posts/2012/01/22/moon-venus-sunset-beach.md
new file mode 100644
index 00000000..3779ab0e
--- /dev/null
+++ b/content/posts/2012/01/22/moon-venus-sunset-beach.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-22T01:03:01-07:00"
+title = "Moon, Venus, Sunset, Beach"
+image = "/wp-content/uploads/2012/01/20111227185027.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/23/yui-hjk-nm.md b/content/posts/2012/01/23/yui-hjk-nm.md
new file mode 100644
index 00000000..fe3489ec
--- /dev/null
+++ b/content/posts/2012/01/23/yui-hjk-nm.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-23T01:03:01-07:00"
+title = "YUI-HJK-NM"
+image = "/wp-content/uploads/2012/01/20120116131152.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/24/hibiscus.md b/content/posts/2012/01/24/hibiscus.md
new file mode 100644
index 00000000..09e9f81d
--- /dev/null
+++ b/content/posts/2012/01/24/hibiscus.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-24T01:03:01-07:00"
+title = "Hibiscus"
+image = "/wp-content/uploads/2012/01/20120116133224.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/25/yellow-flower.md b/content/posts/2012/01/25/yellow-flower.md
new file mode 100644
index 00000000..946f20de
--- /dev/null
+++ b/content/posts/2012/01/25/yellow-flower.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-25T01:03:01-07:00"
+title = "Yellow Flower"
+image = "/wp-content/uploads/2012/01/20120116133700.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/26/lots-of-yellow-plus-purple.md b/content/posts/2012/01/26/lots-of-yellow-plus-purple.md
new file mode 100644
index 00000000..aceb2394
--- /dev/null
+++ b/content/posts/2012/01/26/lots-of-yellow-plus-purple.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-26T01:03:01-07:00"
+title = "Lots of Yellow Plus Purple"
+image = "/wp-content/uploads/2012/01/20120116133857.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/27/rainy-morning.md b/content/posts/2012/01/27/rainy-morning.md
new file mode 100644
index 00000000..9399668c
--- /dev/null
+++ b/content/posts/2012/01/27/rainy-morning.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-27T01:03:01-07:00"
+title = "Rainy Morning"
+image = "/wp-content/uploads/2012/01/20120117071130.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/28/waiting-on-light.md b/content/posts/2012/01/28/waiting-on-light.md
new file mode 100644
index 00000000..1816be94
--- /dev/null
+++ b/content/posts/2012/01/28/waiting-on-light.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-28T01:03:01-07:00"
+title = "Waiting on Light"
+image = "/wp-content/uploads/2012/01/20120118080619.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/29/cross-in-the-fog.md b/content/posts/2012/01/29/cross-in-the-fog.md
new file mode 100644
index 00000000..b7aba720
--- /dev/null
+++ b/content/posts/2012/01/29/cross-in-the-fog.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-29T01:03:01-07:00"
+title = "Cross in the Fog"
+image = "/wp-content/uploads/2012/01/2012012209014205.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/30/foggy-field.md b/content/posts/2012/01/30/foggy-field.md
new file mode 100644
index 00000000..922e1580
--- /dev/null
+++ b/content/posts/2012/01/30/foggy-field.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-30T01:03:01-07:00"
+title = "Foggy Field"
+image = "/wp-content/uploads/2012/01/20120124164655.jpg"
++++
+
+
+
diff --git a/content/posts/2012/01/31/trees-in-fog.md b/content/posts/2012/01/31/trees-in-fog.md
new file mode 100644
index 00000000..03b1b44a
--- /dev/null
+++ b/content/posts/2012/01/31/trees-in-fog.md
@@ -0,0 +1,8 @@
++++
+date = "2012-01-31T01:03:01-07:00"
+title = "Trees in Fog"
+image = "/wp-content/uploads/2012/01/IMG_0008.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/01/shadow-on-sidewalk.md b/content/posts/2012/02/01/shadow-on-sidewalk.md
new file mode 100644
index 00000000..3c826cf8
--- /dev/null
+++ b/content/posts/2012/02/01/shadow-on-sidewalk.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-01T01:03:01-07:00"
+title = "Shadow on Sidewalk"
+image = "/wp-content/uploads/2012/01/IMG_0018.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/02/old-and-abandoned.md b/content/posts/2012/02/02/old-and-abandoned.md
new file mode 100644
index 00000000..b1d66c03
--- /dev/null
+++ b/content/posts/2012/02/02/old-and-abandoned.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-02T01:03:01-07:00"
+title = "Old and Abandoned"
+image = "/wp-content/uploads/2012/01/IMG_0027.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/03/fall-colors-in-winter.md b/content/posts/2012/02/03/fall-colors-in-winter.md
new file mode 100644
index 00000000..8ae9bf20
--- /dev/null
+++ b/content/posts/2012/02/03/fall-colors-in-winter.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-03T01:03:01-07:00"
+title = "Fall Colors in Winter"
+image = "/wp-content/uploads/2012/01/ORIG0017.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/04/sea-gull-124.md b/content/posts/2012/02/04/sea-gull-124.md
new file mode 100644
index 00000000..55f6be86
--- /dev/null
+++ b/content/posts/2012/02/04/sea-gull-124.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-04T01:03:01-07:00"
+title = "Sea Gull #124"
+image = "/wp-content/uploads/2012/02/2012012814433603.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/05/details-of-rotary-engine.md b/content/posts/2012/02/05/details-of-rotary-engine.md
new file mode 100644
index 00000000..f69908d5
--- /dev/null
+++ b/content/posts/2012/02/05/details-of-rotary-engine.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-05T01:03:01-07:00"
+title = "Details of Rotary Engine"
+image = "/wp-content/uploads/2012/02/2012012815092803.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/06/flight-of-brown-pelicans-3.md b/content/posts/2012/02/06/flight-of-brown-pelicans-3.md
new file mode 100644
index 00000000..9c17a19a
--- /dev/null
+++ b/content/posts/2012/02/06/flight-of-brown-pelicans-3.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-06T01:03:01-07:00"
+title = "Flight of Brown Pelicans 3"
+image = "/wp-content/uploads/2012/02/2012012818213103.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/07/bridge-of-the-lexington.md b/content/posts/2012/02/07/bridge-of-the-lexington.md
new file mode 100644
index 00000000..b6c5c74c
--- /dev/null
+++ b/content/posts/2012/02/07/bridge-of-the-lexington.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-07T01:03:01-07:00"
+title = "Bridge of the Lexington"
+image = "/wp-content/uploads/2012/02/2012012818342203.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/08/beware.md b/content/posts/2012/02/08/beware.md
new file mode 100644
index 00000000..3b0f21bb
--- /dev/null
+++ b/content/posts/2012/02/08/beware.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-08T01:03:01-07:00"
+title = "Beware"
+image = "/wp-content/uploads/2012/02/2012012818353103.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/09/corpus-christi-harbor-bridge-at-sunset.md b/content/posts/2012/02/09/corpus-christi-harbor-bridge-at-sunset.md
new file mode 100644
index 00000000..c9f117b1
--- /dev/null
+++ b/content/posts/2012/02/09/corpus-christi-harbor-bridge-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-09T01:03:01-07:00"
+title = "Corpus Christi Harbor Bridge At Sunset"
+image = "/wp-content/uploads/2012/02/2012012819313636.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/10/play-on-the-gun.md b/content/posts/2012/02/10/play-on-the-gun.md
new file mode 100644
index 00000000..5961b601
--- /dev/null
+++ b/content/posts/2012/02/10/play-on-the-gun.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-10T01:03:01-07:00"
+title = "Play on the Gun"
+image = "/wp-content/uploads/2012/02/2012012819462005.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/11/work-think-safely.md b/content/posts/2012/02/11/work-think-safely.md
new file mode 100644
index 00000000..d0751e8c
--- /dev/null
+++ b/content/posts/2012/02/11/work-think-safely.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-11T01:03:01-07:00"
+title = "Work Think Safely"
+image = "/wp-content/uploads/2012/02/2012012820164404.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/12/corpus-christi-harbor-bridge-hdr1.md b/content/posts/2012/02/12/corpus-christi-harbor-bridge-hdr1.md
new file mode 100644
index 00000000..d443373e
--- /dev/null
+++ b/content/posts/2012/02/12/corpus-christi-harbor-bridge-hdr1.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-12T01:03:01-07:00"
+title = "Corpus Christi Harbor Bridge HDR1"
+image = "/wp-content/uploads/2012/02/corpus-harbor-bridge-hdr.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/13/red-tail-takes-flight.md b/content/posts/2012/02/13/red-tail-takes-flight.md
new file mode 100644
index 00000000..9ceb12f9
--- /dev/null
+++ b/content/posts/2012/02/13/red-tail-takes-flight.md
@@ -0,0 +1,9 @@
++++
+date = "2012-02-13T01:03:01-07:00"
+title = "Red Tail Takes Flight"
+image = "/wp-content/uploads/2012/02/2012012508465478.jpg"
++++
+
+
+
+Just a quick note....this is post \#1600!
diff --git a/content/posts/2012/02/14/nature-overcomes.md b/content/posts/2012/02/14/nature-overcomes.md
new file mode 100644
index 00000000..6312739c
--- /dev/null
+++ b/content/posts/2012/02/14/nature-overcomes.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-14T01:03:01-07:00"
+title = "Nature Overcomes"
+image = "/wp-content/uploads/2012/02/2012012508565003.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/15/time-for-eye-of-ra.md b/content/posts/2012/02/15/time-for-eye-of-ra.md
new file mode 100644
index 00000000..1a64029f
--- /dev/null
+++ b/content/posts/2012/02/15/time-for-eye-of-ra.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-15T01:03:01-07:00"
+title = "Time for Eye Of Ra"
+image = "/wp-content/uploads/2012/02/2012020718491120.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/16/pickup-at-sunset.md b/content/posts/2012/02/16/pickup-at-sunset.md
new file mode 100644
index 00000000..15d29a7b
--- /dev/null
+++ b/content/posts/2012/02/16/pickup-at-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-16T01:03:01-07:00"
+title = "Pickup at Sunset"
+image = "/wp-content/uploads/2012/02/2012020819051116.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/17/sunset-vii.md b/content/posts/2012/02/17/sunset-vii.md
new file mode 100644
index 00000000..a59e8a38
--- /dev/null
+++ b/content/posts/2012/02/17/sunset-vii.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-17T01:03:01-07:00"
+title = "Sunset VII"
+image = "/wp-content/uploads/2012/02/2012020819053403.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/18/monster-truck-jump.md b/content/posts/2012/02/18/monster-truck-jump.md
new file mode 100644
index 00000000..2f8e221b
--- /dev/null
+++ b/content/posts/2012/02/18/monster-truck-jump.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-18T01:03:01-07:00"
+title = "Monster Truck Jump!"
+image = "/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/19/talk-to-the-hand.md b/content/posts/2012/02/19/talk-to-the-hand.md
new file mode 100644
index 00000000..d6e19887
--- /dev/null
+++ b/content/posts/2012/02/19/talk-to-the-hand.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-19T18:03:01-07:00"
+title = "Talk to the Hand"
+image = "/wp-content/uploads/2012/02/20120218185930.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/20/detail-of-wood.md b/content/posts/2012/02/20/detail-of-wood.md
new file mode 100644
index 00000000..f7e64e0d
--- /dev/null
+++ b/content/posts/2012/02/20/detail-of-wood.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-20T01:03:01-07:00"
+title = "Detail of Wood"
+image = "/wp-content/uploads/2012/02/20120217141033.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/21/left-toy.md b/content/posts/2012/02/21/left-toy.md
new file mode 100644
index 00000000..b0f07f68
--- /dev/null
+++ b/content/posts/2012/02/21/left-toy.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-21T01:03:01-07:00"
+title = "Left Toy"
+image = "/wp-content/uploads/2012/02/20120218162147.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/26/keylime-blossem.md b/content/posts/2012/02/26/keylime-blossem.md
new file mode 100644
index 00000000..6c073a87
--- /dev/null
+++ b/content/posts/2012/02/26/keylime-blossem.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-26T01:03:01-07:00"
+title = "Keylime Blossem"
+image = "/wp-content/uploads/2012/02/20120225102859.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/27/pear-blossem.md b/content/posts/2012/02/27/pear-blossem.md
new file mode 100644
index 00000000..1b5a7a56
--- /dev/null
+++ b/content/posts/2012/02/27/pear-blossem.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-27T01:03:01-07:00"
+title = "Pear Blossem"
+image = "/wp-content/uploads/2012/02/20120225103042.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/28/lady-bug-close.md b/content/posts/2012/02/28/lady-bug-close.md
new file mode 100644
index 00000000..366ea1b1
--- /dev/null
+++ b/content/posts/2012/02/28/lady-bug-close.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-28T01:03:01-07:00"
+title = "Lady Bug Close"
+image = "/wp-content/uploads/2012/02/20120225103121.jpg"
++++
+
+
+
diff --git a/content/posts/2012/02/29/ladybug-real-close.md b/content/posts/2012/02/29/ladybug-real-close.md
new file mode 100644
index 00000000..3855f32b
--- /dev/null
+++ b/content/posts/2012/02/29/ladybug-real-close.md
@@ -0,0 +1,8 @@
++++
+date = "2012-02-29T01:03:01-07:00"
+title = "Ladybug Real Close"
+image = "/wp-content/uploads/2012/02/20120225103154.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/01/sunflower-bud.md b/content/posts/2012/03/01/sunflower-bud.md
new file mode 100644
index 00000000..11ae6da4
--- /dev/null
+++ b/content/posts/2012/03/01/sunflower-bud.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-01T01:03:01-07:00"
+title = "Sunflower Bud"
+image = "/wp-content/uploads/2012/02/20120225103204.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/14/cow-in-the-fog-2.md b/content/posts/2012/03/14/cow-in-the-fog-2.md
new file mode 100644
index 00000000..4f287285
--- /dev/null
+++ b/content/posts/2012/03/14/cow-in-the-fog-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-14T02:03:01-07:00"
+title = "Cow in The Fog"
+image = "/wp-content/uploads/2012/03/201203010704561.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/15/rose-5.md b/content/posts/2012/03/15/rose-5.md
new file mode 100644
index 00000000..44b8a44b
--- /dev/null
+++ b/content/posts/2012/03/15/rose-5.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-15T02:03:01-07:00"
+title = "Rose!"
+image = "/wp-content/uploads/2012/03/201203021151481.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/16/bashfull-sunflower-2.md b/content/posts/2012/03/16/bashfull-sunflower-2.md
new file mode 100644
index 00000000..8e215638
--- /dev/null
+++ b/content/posts/2012/03/16/bashfull-sunflower-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-16T02:03:01-07:00"
+title = "Bashfull Sunflower"
+image = "/wp-content/uploads/2012/03/201203021153011.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/17/sunflower-5.md b/content/posts/2012/03/17/sunflower-5.md
new file mode 100644
index 00000000..54d08e64
--- /dev/null
+++ b/content/posts/2012/03/17/sunflower-5.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-17T02:03:01-07:00"
+title = "Sunflower"
+image = "/wp-content/uploads/2012/03/201203021153231.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/18/happy-little-flowers-2.md b/content/posts/2012/03/18/happy-little-flowers-2.md
new file mode 100644
index 00000000..2efc2792
--- /dev/null
+++ b/content/posts/2012/03/18/happy-little-flowers-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-18T02:03:01-07:00"
+title = "Happy Little Flowers"
+image = "/wp-content/uploads/2012/03/201203021153351.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/19/touchdown-2.md b/content/posts/2012/03/19/touchdown-2.md
new file mode 100644
index 00000000..c9cfa8b5
--- /dev/null
+++ b/content/posts/2012/03/19/touchdown-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-19T02:03:01-07:00"
+title = "Touchdown!"
+image = "/wp-content/uploads/2012/03/201203030830391.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/20/orange-tile.md b/content/posts/2012/03/20/orange-tile.md
new file mode 100644
index 00000000..1596e4a6
--- /dev/null
+++ b/content/posts/2012/03/20/orange-tile.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-20T02:03:01-07:00"
+title = "Orange Tile"
+image = "/wp-content/uploads/2012/03/20120303153740.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/21/brick-wall.md b/content/posts/2012/03/21/brick-wall.md
new file mode 100644
index 00000000..9235a886
--- /dev/null
+++ b/content/posts/2012/03/21/brick-wall.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-21T02:03:01-07:00"
+title = "Brick Wall"
+image = "/wp-content/uploads/2012/03/20120303154103.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/22/i-see-you.md b/content/posts/2012/03/22/i-see-you.md
new file mode 100644
index 00000000..945cb8e8
--- /dev/null
+++ b/content/posts/2012/03/22/i-see-you.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-22T02:03:01-07:00"
+title = "I See You"
+image = "/wp-content/uploads/2012/03/20120303174146.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/23/good-day-sunshine.md b/content/posts/2012/03/23/good-day-sunshine.md
new file mode 100644
index 00000000..3abf1ee8
--- /dev/null
+++ b/content/posts/2012/03/23/good-day-sunshine.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-23T02:03:01-07:00"
+title = "Good Day, Sunshine!"
+image = "/wp-content/uploads/2012/03/20120305124407.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/24/flying-sauce-light.md b/content/posts/2012/03/24/flying-sauce-light.md
new file mode 100644
index 00000000..e4bf09bd
--- /dev/null
+++ b/content/posts/2012/03/24/flying-sauce-light.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-24T02:03:01-07:00"
+title = "Flying Sauce Light"
+image = "/wp-content/uploads/2012/03/20120305184835.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/25/old-and-abandoned-ii.md b/content/posts/2012/03/25/old-and-abandoned-ii.md
new file mode 100644
index 00000000..6bca67d8
--- /dev/null
+++ b/content/posts/2012/03/25/old-and-abandoned-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-25T02:03:01-07:00"
+title = "Old and Abandoned II"
+image = "/wp-content/uploads/2012/03/20120314163823.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/26/corner-market-farm-style.md b/content/posts/2012/03/26/corner-market-farm-style.md
new file mode 100644
index 00000000..9a96379c
--- /dev/null
+++ b/content/posts/2012/03/26/corner-market-farm-style.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-26T02:03:01-07:00"
+title = "Corner Market, Farm Style"
+image = "/wp-content/uploads/2012/03/20120315163709.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/27/rabit.md b/content/posts/2012/03/27/rabit.md
new file mode 100644
index 00000000..b9d68e0c
--- /dev/null
+++ b/content/posts/2012/03/27/rabit.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-27T02:03:01-07:00"
+title = "Rabbit! "
+image = "/wp-content/uploads/2012/03/20120317141057.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/28/sitting-pretty-3.md b/content/posts/2012/03/28/sitting-pretty-3.md
new file mode 100644
index 00000000..4ca76f11
--- /dev/null
+++ b/content/posts/2012/03/28/sitting-pretty-3.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-28T02:03:01-07:00"
+title = "Sitting Pretty"
+image = "/wp-content/uploads/2012/03/20120317143236.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/29/good-advice.md b/content/posts/2012/03/29/good-advice.md
new file mode 100644
index 00000000..cc829493
--- /dev/null
+++ b/content/posts/2012/03/29/good-advice.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-29T02:03:01-07:00"
+title = "Good Advice"
+image = "/wp-content/uploads/2012/03/20120317160541.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/30/lady-cat.md b/content/posts/2012/03/30/lady-cat.md
new file mode 100644
index 00000000..7ea89a6b
--- /dev/null
+++ b/content/posts/2012/03/30/lady-cat.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-30T02:03:01-07:00"
+title = "Lady Cat"
+image = "/wp-content/uploads/2012/03/20120317160930.jpg"
++++
+
+
+
diff --git a/content/posts/2012/03/31/fast-cat-taking-it-slow.md b/content/posts/2012/03/31/fast-cat-taking-it-slow.md
new file mode 100644
index 00000000..8ebfe249
--- /dev/null
+++ b/content/posts/2012/03/31/fast-cat-taking-it-slow.md
@@ -0,0 +1,8 @@
++++
+date = "2012-03-31T02:03:01-07:00"
+title = "Fast Cat Taking It Slow"
+image = "/wp-content/uploads/2012/03/20120317162936.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/01/flowers-and-water.md b/content/posts/2012/04/01/flowers-and-water.md
new file mode 100644
index 00000000..f5b6a3e4
--- /dev/null
+++ b/content/posts/2012/04/01/flowers-and-water.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-01T02:03:01-07:00"
+title = "Flowers and Water"
+image = "/wp-content/uploads/2012/03/20120317163128.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/02/bw-brick-wall.md b/content/posts/2012/04/02/bw-brick-wall.md
new file mode 100644
index 00000000..7171dfd0
--- /dev/null
+++ b/content/posts/2012/04/02/bw-brick-wall.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-02T02:03:01-07:00"
+title = "BW Brick Wall"
+image = "/wp-content/uploads/2012/03/20120319151157.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/03/end-of-the-line.md b/content/posts/2012/04/03/end-of-the-line.md
new file mode 100644
index 00000000..3826d4de
--- /dev/null
+++ b/content/posts/2012/04/03/end-of-the-line.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-03T02:03:01-07:00"
+title = "End of The Line!"
+image = "/wp-content/uploads/2012/03/20120321161841.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/04/puple-flowers.md b/content/posts/2012/04/04/puple-flowers.md
new file mode 100644
index 00000000..833e076c
--- /dev/null
+++ b/content/posts/2012/04/04/puple-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-04T02:03:01-07:00"
+title = "Puple Flowers"
+image = "/wp-content/uploads/2012/03/IMG_20120315_184837.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/05/bluebonnets-2.md b/content/posts/2012/04/05/bluebonnets-2.md
new file mode 100644
index 00000000..fb77ce32
--- /dev/null
+++ b/content/posts/2012/04/05/bluebonnets-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-05T02:03:01-07:00"
+title = "Bluebonnets"
+image = "/wp-content/uploads/2012/03/IMG_20120315_184935.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/06/wall-light.md b/content/posts/2012/04/06/wall-light.md
new file mode 100644
index 00000000..0f3ebe2f
--- /dev/null
+++ b/content/posts/2012/04/06/wall-light.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-06T02:03:01-07:00"
+title = "Wall Light"
+image = "/wp-content/uploads/2012/03/IMG_20120315_190619.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/07/blue-truck-on-blue-trailer.md b/content/posts/2012/04/07/blue-truck-on-blue-trailer.md
new file mode 100644
index 00000000..5ec455ee
--- /dev/null
+++ b/content/posts/2012/04/07/blue-truck-on-blue-trailer.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-07T02:03:01-07:00"
+title = "Blue Truck On Blue Trailer"
+image = "/wp-content/uploads/2012/03/20120329063320.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/08/bee.md b/content/posts/2012/04/08/bee.md
new file mode 100644
index 00000000..368aaada
--- /dev/null
+++ b/content/posts/2012/04/08/bee.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-08T02:03:01-07:00"
+title = "Bee!"
+image = "/wp-content/uploads/2012/03/20120323142607.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/09/tent-in-sunrise.md b/content/posts/2012/04/09/tent-in-sunrise.md
new file mode 100644
index 00000000..4a19a95c
--- /dev/null
+++ b/content/posts/2012/04/09/tent-in-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-09T02:03:01-07:00"
+title = "Tent In Sunrise"
+image = "/wp-content/uploads/2012/03/20120327062914.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/10/faux-castle-wall.md b/content/posts/2012/04/10/faux-castle-wall.md
new file mode 100644
index 00000000..87b50313
--- /dev/null
+++ b/content/posts/2012/04/10/faux-castle-wall.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-10T02:03:01-07:00"
+title = "Faux Castle Wall"
+image = "/wp-content/uploads/2012/03/20120327065253.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/11/hubcap-reflection.md b/content/posts/2012/04/11/hubcap-reflection.md
new file mode 100644
index 00000000..1e33e1ea
--- /dev/null
+++ b/content/posts/2012/04/11/hubcap-reflection.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-11T02:03:01-07:00"
+title = "Hubcap Reflection"
+image = "/wp-content/uploads/2012/03/20120327070425.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/12/looking-where-i-have-been.md b/content/posts/2012/04/12/looking-where-i-have-been.md
new file mode 100644
index 00000000..b82e0f40
--- /dev/null
+++ b/content/posts/2012/04/12/looking-where-i-have-been.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-12T02:03:01-07:00"
+title = "Looking Where I Have Been"
+image = "/wp-content/uploads/2012/03/20120328063741.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/13/cows-in-fog-iii.md b/content/posts/2012/04/13/cows-in-fog-iii.md
new file mode 100644
index 00000000..f1078640
--- /dev/null
+++ b/content/posts/2012/04/13/cows-in-fog-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-13T02:03:01-07:00"
+title = "Cows in Fog III"
+image = "/wp-content/uploads/2012/03/20120328065949.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/14/wispy-clouds-iv.md b/content/posts/2012/04/14/wispy-clouds-iv.md
new file mode 100644
index 00000000..a1095827
--- /dev/null
+++ b/content/posts/2012/04/14/wispy-clouds-iv.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-14T02:03:01-07:00"
+title = "Wispy Clouds IV"
+image = "/wp-content/uploads/2012/03/20120328070353.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/15/superheros-vs-dragon.md b/content/posts/2012/04/15/superheros-vs-dragon.md
new file mode 100644
index 00000000..1a260ec2
--- /dev/null
+++ b/content/posts/2012/04/15/superheros-vs-dragon.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-15T02:03:01-07:00"
+title = "Superheros vs Dragon"
+image = "/wp-content/uploads/2012/04/2012-04-06_17.03.412.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/16/ghost-android.md b/content/posts/2012/04/16/ghost-android.md
new file mode 100644
index 00000000..6e6091b7
--- /dev/null
+++ b/content/posts/2012/04/16/ghost-android.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-16T02:03:01-07:00"
+title = "Ghost Android"
+image = "/wp-content/uploads/2012/04/2012-04-09_17.05.18.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/17/fun-with-filters.md b/content/posts/2012/04/17/fun-with-filters.md
new file mode 100644
index 00000000..76ec8c47
--- /dev/null
+++ b/content/posts/2012/04/17/fun-with-filters.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-17T02:03:01-07:00"
+title = "Fun With Filters"
+image = "/wp-content/uploads/2012/04/20120406170547.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/18/i-see-you-looking.md b/content/posts/2012/04/18/i-see-you-looking.md
new file mode 100644
index 00000000..c0579907
--- /dev/null
+++ b/content/posts/2012/04/18/i-see-you-looking.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-18T02:03:01-07:00"
+title = "I See You Looking"
+image = "/wp-content/uploads/2012/04/20120406171059.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/19/wood-deck.md b/content/posts/2012/04/19/wood-deck.md
new file mode 100644
index 00000000..a8b6078d
--- /dev/null
+++ b/content/posts/2012/04/19/wood-deck.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-19T02:03:01-07:00"
+title = "Wood Deck"
+image = "/wp-content/uploads/2012/04/20120406172037.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/20/light-in-the-sky.md b/content/posts/2012/04/20/light-in-the-sky.md
new file mode 100644
index 00000000..60d09a2c
--- /dev/null
+++ b/content/posts/2012/04/20/light-in-the-sky.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-20T02:03:01-07:00"
+title = "Light In The Sky"
+image = "/wp-content/uploads/2012/04/20120406172240.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/21/sunflowers-3.md b/content/posts/2012/04/21/sunflowers-3.md
new file mode 100644
index 00000000..e07a6f0d
--- /dev/null
+++ b/content/posts/2012/04/21/sunflowers-3.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-21T02:03:01-07:00"
+title = "Sunflowers"
+image = "/wp-content/uploads/2012/04/20120414161021.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/22/squirrel.md b/content/posts/2012/04/22/squirrel.md
new file mode 100644
index 00000000..2db06f07
--- /dev/null
+++ b/content/posts/2012/04/22/squirrel.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-22T02:03:01-07:00"
+title = "Squirrel!"
+image = "/wp-content/uploads/2012/04/20120413063253.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/23/flowers-on-the-side-of-the-road.md b/content/posts/2012/04/23/flowers-on-the-side-of-the-road.md
new file mode 100644
index 00000000..27b4af70
--- /dev/null
+++ b/content/posts/2012/04/23/flowers-on-the-side-of-the-road.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-23T02:03:01-07:00"
+title = "Flowers on the Side of The Road"
+image = "/wp-content/uploads/2012/04/20120413140806.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/24/san-jacinto-monument.md b/content/posts/2012/04/24/san-jacinto-monument.md
new file mode 100644
index 00000000..65a865e3
--- /dev/null
+++ b/content/posts/2012/04/24/san-jacinto-monument.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-24T02:03:01-07:00"
+title = "San Jacinto Monument"
+image = "/wp-content/uploads/2012/04/20120414150329.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/25/big-gus-of-the-uss-texas-looking-at-you.md b/content/posts/2012/04/25/big-gus-of-the-uss-texas-looking-at-you.md
new file mode 100644
index 00000000..a101fa1d
--- /dev/null
+++ b/content/posts/2012/04/25/big-gus-of-the-uss-texas-looking-at-you.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-25T02:03:01-07:00"
+title = "Big Gus of the USS Texas Looking At You"
+image = "/wp-content/uploads/2012/04/20120414150337.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/26/big-guns-of-the-uss-texas-looking-back.md b/content/posts/2012/04/26/big-guns-of-the-uss-texas-looking-back.md
new file mode 100644
index 00000000..56a49134
--- /dev/null
+++ b/content/posts/2012/04/26/big-guns-of-the-uss-texas-looking-back.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-26T02:03:01-07:00"
+title = "Big Guns of the USS Texas Looking Back"
+image = "/wp-content/uploads/2012/04/20120414152624.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/28/standing.md b/content/posts/2012/04/28/standing.md
new file mode 100644
index 00000000..8f6e255d
--- /dev/null
+++ b/content/posts/2012/04/28/standing.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-28T02:03:01-07:00"
+title = "Standing"
+image = "/wp-content/uploads/2012/04/20120408111616.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/29/fog-on-the-field.md b/content/posts/2012/04/29/fog-on-the-field.md
new file mode 100644
index 00000000..f8db028b
--- /dev/null
+++ b/content/posts/2012/04/29/fog-on-the-field.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-29T02:03:01-07:00"
+title = "Fog on the Field"
+image = "/wp-content/uploads/2012/04/20120410062200.jpg"
++++
+
+
+
diff --git a/content/posts/2012/04/30/foggy-sunrise.md b/content/posts/2012/04/30/foggy-sunrise.md
new file mode 100644
index 00000000..faa9f32d
--- /dev/null
+++ b/content/posts/2012/04/30/foggy-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2012-04-30T02:03:01-07:00"
+title = "Foggy Sunrise"
+image = "/wp-content/uploads/2012/04/20120410063759.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/01/old-wall-tile.md b/content/posts/2012/05/01/old-wall-tile.md
new file mode 100644
index 00000000..02c304da
--- /dev/null
+++ b/content/posts/2012/05/01/old-wall-tile.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-01T02:03:01-07:00"
+title = "Old Wall Tile"
+image = "/wp-content/uploads/2012/04/20120414140738.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/02/trail-of-dreams.md b/content/posts/2012/05/02/trail-of-dreams.md
new file mode 100644
index 00000000..f3d1cfda
--- /dev/null
+++ b/content/posts/2012/05/02/trail-of-dreams.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-02T02:03:01-07:00"
+title = "Trail Of Dreams..."
+image = "/wp-content/uploads/2012/05/20120422110453.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/03/pikachu-pinewood-dirby-car.md b/content/posts/2012/05/03/pikachu-pinewood-dirby-car.md
new file mode 100644
index 00000000..2e511ab3
--- /dev/null
+++ b/content/posts/2012/05/03/pikachu-pinewood-dirby-car.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-03T02:03:01-07:00"
+title = "Pikachu Pinewood Dirby Car"
+image = "/wp-content/uploads/2012/05/20120422120422.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/04/perry-the-platypus-car.md b/content/posts/2012/05/04/perry-the-platypus-car.md
new file mode 100644
index 00000000..c7eb9357
--- /dev/null
+++ b/content/posts/2012/05/04/perry-the-platypus-car.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-04T02:03:01-07:00"
+title = "Perry the Platypus Car"
+image = "/wp-content/uploads/2012/05/20120422121429.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/05/going-for-gold.md b/content/posts/2012/05/05/going-for-gold.md
new file mode 100644
index 00000000..26697bff
--- /dev/null
+++ b/content/posts/2012/05/05/going-for-gold.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-05T02:03:01-07:00"
+title = "Going For Gold"
+image = "/wp-content/uploads/2012/05/20120422121646.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/06/start-of-the-race.md b/content/posts/2012/05/06/start-of-the-race.md
new file mode 100644
index 00000000..809aacda
--- /dev/null
+++ b/content/posts/2012/05/06/start-of-the-race.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-06T02:03:01-07:00"
+title = "Start of The Race"
+image = "/wp-content/uploads/2012/05/20120422123612.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/07/field-of-flowers-2.md b/content/posts/2012/05/07/field-of-flowers-2.md
new file mode 100644
index 00000000..c3f746fd
--- /dev/null
+++ b/content/posts/2012/05/07/field-of-flowers-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-07T02:03:01-07:00"
+title = "Field of Flowers"
+image = "/wp-content/uploads/2012/05/20120502150521.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/08/road-to-somewhere.md b/content/posts/2012/05/08/road-to-somewhere.md
new file mode 100644
index 00000000..f6e60948
--- /dev/null
+++ b/content/posts/2012/05/08/road-to-somewhere.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-08T02:03:01-07:00"
+title = "Road to Somewhere"
+image = "/wp-content/uploads/2012/05/20120502150546.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/09/barb-wire-and-flowers.md b/content/posts/2012/05/09/barb-wire-and-flowers.md
new file mode 100644
index 00000000..04503f39
--- /dev/null
+++ b/content/posts/2012/05/09/barb-wire-and-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-09T02:03:01-07:00"
+title = "Barb-wire and Flowers"
+image = "/wp-content/uploads/2012/05/20120502150643.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/10/wild-rose.md b/content/posts/2012/05/10/wild-rose.md
new file mode 100644
index 00000000..99c15e6d
--- /dev/null
+++ b/content/posts/2012/05/10/wild-rose.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-10T02:03:01-07:00"
+title = "Wild Rose"
+image = "/wp-content/uploads/2012/05/20120502150943.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/11/old-and-abandoned-iii.md b/content/posts/2012/05/11/old-and-abandoned-iii.md
new file mode 100644
index 00000000..26b55e21
--- /dev/null
+++ b/content/posts/2012/05/11/old-and-abandoned-iii.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-11T02:03:01-07:00"
+title = "Old and Abandoned III"
+image = "/wp-content/uploads/2012/05/20120502151340.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/12/a-river-blanco-runs-through-it.md b/content/posts/2012/05/12/a-river-blanco-runs-through-it.md
new file mode 100644
index 00000000..1701f180
--- /dev/null
+++ b/content/posts/2012/05/12/a-river-blanco-runs-through-it.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-12T02:03:01-07:00"
+title = "A River (Blanco) Runs Through It"
+image = "/wp-content/uploads/2012/05/20120428061103.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/13/rolling-on-down-the-river-blanco.md b/content/posts/2012/05/13/rolling-on-down-the-river-blanco.md
new file mode 100644
index 00000000..3d9a1cef
--- /dev/null
+++ b/content/posts/2012/05/13/rolling-on-down-the-river-blanco.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-13T02:03:01-07:00"
+title = "Rolling on Down the River (Blanco)"
+image = "/wp-content/uploads/2012/05/20120428061127.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/14/thistle.md b/content/posts/2012/05/14/thistle.md
new file mode 100644
index 00000000..e08e03c8
--- /dev/null
+++ b/content/posts/2012/05/14/thistle.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-14T02:03:01-07:00"
+title = "Thistle"
+image = "/wp-content/uploads/2012/05/20120428063232.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/15/spring-flowers.md b/content/posts/2012/05/15/spring-flowers.md
new file mode 100644
index 00000000..8e58116a
--- /dev/null
+++ b/content/posts/2012/05/15/spring-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-15T02:03:01-07:00"
+title = "Spring Flowers"
+image = "/wp-content/uploads/2012/05/20120428063247.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/16/boat.md b/content/posts/2012/05/16/boat.md
new file mode 100644
index 00000000..ab909a7e
--- /dev/null
+++ b/content/posts/2012/05/16/boat.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-16T02:03:01-07:00"
+title = "Boat"
+image = "/wp-content/uploads/2012/05/20120428063639.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/17/sitting-pretty-4.md b/content/posts/2012/05/17/sitting-pretty-4.md
new file mode 100644
index 00000000..5b38cd27
--- /dev/null
+++ b/content/posts/2012/05/17/sitting-pretty-4.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-17T02:03:01-07:00"
+title = "Sitting Pretty"
+image = "/wp-content/uploads/2012/05/20120428094110.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/18/river-trees.md b/content/posts/2012/05/18/river-trees.md
new file mode 100644
index 00000000..187761d5
--- /dev/null
+++ b/content/posts/2012/05/18/river-trees.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-18T02:03:01-07:00"
+title = "River Trees"
+image = "/wp-content/uploads/2012/05/20120428151203.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/19/fairy-house-3.md b/content/posts/2012/05/19/fairy-house-3.md
new file mode 100644
index 00000000..9a10a4a0
--- /dev/null
+++ b/content/posts/2012/05/19/fairy-house-3.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-19T02:03:01-07:00"
+title = "Fairy House"
+image = "/wp-content/uploads/2012/05/201205121449542.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/20/fairy-in-forest.md b/content/posts/2012/05/20/fairy-in-forest.md
new file mode 100644
index 00000000..7d20d637
--- /dev/null
+++ b/content/posts/2012/05/20/fairy-in-forest.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-20T02:03:01-07:00"
+title = "Fairy in Forest"
+image = "/wp-content/uploads/2012/05/201205121450172.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/21/boy-in-yellow-shrimp-plants.md b/content/posts/2012/05/21/boy-in-yellow-shrimp-plants.md
new file mode 100644
index 00000000..95561bff
--- /dev/null
+++ b/content/posts/2012/05/21/boy-in-yellow-shrimp-plants.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-21T02:03:01-07:00"
+title = "Boy in Yellow Shrimp Plants"
+image = "/wp-content/uploads/2012/05/20120512145151.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/22/budda-in-plants.md b/content/posts/2012/05/22/budda-in-plants.md
new file mode 100644
index 00000000..0f6930a7
--- /dev/null
+++ b/content/posts/2012/05/22/budda-in-plants.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-22T02:03:01-07:00"
+title = "Budda in Plants"
+image = "/wp-content/uploads/2012/05/20120512145224.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/23/asiatic-lily-pink-white.md b/content/posts/2012/05/23/asiatic-lily-pink-white.md
new file mode 100644
index 00000000..51677b90
--- /dev/null
+++ b/content/posts/2012/05/23/asiatic-lily-pink-white.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-23T02:03:01-07:00"
+title = "Asiatic Lily Pink & White"
+image = "/wp-content/uploads/2012/05/20120512145651.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/24/painted-frog.md b/content/posts/2012/05/24/painted-frog.md
new file mode 100644
index 00000000..d9bd196f
--- /dev/null
+++ b/content/posts/2012/05/24/painted-frog.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-24T02:03:01-07:00"
+title = "Painted Frog"
+image = "/wp-content/uploads/2012/05/20120512150124.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/25/cactus-bud.md b/content/posts/2012/05/25/cactus-bud.md
new file mode 100644
index 00000000..7ac39d3b
--- /dev/null
+++ b/content/posts/2012/05/25/cactus-bud.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-25T02:03:01-07:00"
+title = "Cactus Bud"
+image = "/wp-content/uploads/2012/05/20120512150238.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/26/color-explosion.md b/content/posts/2012/05/26/color-explosion.md
new file mode 100644
index 00000000..c7314329
--- /dev/null
+++ b/content/posts/2012/05/26/color-explosion.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-26T02:03:01-07:00"
+title = "Color Explosion"
+image = "/wp-content/uploads/2012/05/20120512150930.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/27/penta-apple-blossem.md b/content/posts/2012/05/27/penta-apple-blossem.md
new file mode 100644
index 00000000..96fc48ba
--- /dev/null
+++ b/content/posts/2012/05/27/penta-apple-blossem.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-27T02:03:01-07:00"
+title = "Penta Apple Blossem"
+image = "/wp-content/uploads/2012/05/20120512151214.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/28/orange-and-red-lantana.md b/content/posts/2012/05/28/orange-and-red-lantana.md
new file mode 100644
index 00000000..92dcf9cd
--- /dev/null
+++ b/content/posts/2012/05/28/orange-and-red-lantana.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-28T02:03:01-07:00"
+title = "Orange and Red Lantana"
+image = "/wp-content/uploads/2012/05/20120512151946.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/29/purple-and-white-lantana.md b/content/posts/2012/05/29/purple-and-white-lantana.md
new file mode 100644
index 00000000..51eaf19a
--- /dev/null
+++ b/content/posts/2012/05/29/purple-and-white-lantana.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-29T02:03:01-07:00"
+title = "Purple and White Lantana"
+image = "/wp-content/uploads/2012/05/20120512152003.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/30/tawny-emperorbutterfly.md b/content/posts/2012/05/30/tawny-emperorbutterfly.md
new file mode 100644
index 00000000..5b268553
--- /dev/null
+++ b/content/posts/2012/05/30/tawny-emperorbutterfly.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-30T02:03:01-07:00"
+title = "Tawny EmperorButterfly"
+image = "/wp-content/uploads/2012/05/20120512152509.jpg"
++++
+
+
+
diff --git a/content/posts/2012/05/31/question-mark-butterfly.md b/content/posts/2012/05/31/question-mark-butterfly.md
new file mode 100644
index 00000000..1ccf5ac6
--- /dev/null
+++ b/content/posts/2012/05/31/question-mark-butterfly.md
@@ -0,0 +1,8 @@
++++
+date = "2012-05-31T02:03:01-07:00"
+title = "Question Mark Butterfly"
+image = "/wp-content/uploads/2012/05/20120512152608.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/01/purple-lily-v.md b/content/posts/2012/06/01/purple-lily-v.md
new file mode 100644
index 00000000..d5753444
--- /dev/null
+++ b/content/posts/2012/06/01/purple-lily-v.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-01T02:03:01-07:00"
+title = "Purple Lily V"
+image = "/wp-content/uploads/2012/05/20120512152632.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/02/purple-lily-vi.md b/content/posts/2012/06/02/purple-lily-vi.md
new file mode 100644
index 00000000..17be6c87
--- /dev/null
+++ b/content/posts/2012/06/02/purple-lily-vi.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-02T02:03:01-07:00"
+title = "Purple Lily VI"
+image = "/wp-content/uploads/2012/05/20120512152748.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/03/rose-bud-2.md b/content/posts/2012/06/03/rose-bud-2.md
new file mode 100644
index 00000000..cc421c5a
--- /dev/null
+++ b/content/posts/2012/06/03/rose-bud-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-03T02:03:01-07:00"
+title = "Rose Bud"
+image = "/wp-content/uploads/2012/05/20120512153217.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/04/triangles.md b/content/posts/2012/06/04/triangles.md
new file mode 100644
index 00000000..e3d331e4
--- /dev/null
+++ b/content/posts/2012/06/04/triangles.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-04T02:03:01-07:00"
+title = "Triangles"
+image = "/wp-content/uploads/2012/05/20120512154150.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/05/barbwire.md b/content/posts/2012/06/05/barbwire.md
new file mode 100644
index 00000000..f817a237
--- /dev/null
+++ b/content/posts/2012/06/05/barbwire.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-05T02:03:01-07:00"
+title = "Barbwire"
+image = "/wp-content/uploads/2012/05/20120512155329.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/06/coneflower-in-field-3.md b/content/posts/2012/06/06/coneflower-in-field-3.md
new file mode 100644
index 00000000..eef4df39
--- /dev/null
+++ b/content/posts/2012/06/06/coneflower-in-field-3.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-06T02:03:01-07:00"
+title = "Coneflower in field"
+image = "/wp-content/uploads/2012/05/201205210643382.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/07/detail-of-wheel-3.md b/content/posts/2012/06/07/detail-of-wheel-3.md
new file mode 100644
index 00000000..6633e7d9
--- /dev/null
+++ b/content/posts/2012/06/07/detail-of-wheel-3.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-07T02:03:01-07:00"
+title = "Detail of Wheel"
+image = "/wp-content/uploads/2012/05/201205211534032.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/08/lunch-time-3.md b/content/posts/2012/06/08/lunch-time-3.md
new file mode 100644
index 00000000..efd1d9e6
--- /dev/null
+++ b/content/posts/2012/06/08/lunch-time-3.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-08T02:03:01-07:00"
+title = "Lunch Time"
+image = "/wp-content/uploads/2012/05/201205211615082.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/09/taco-truck-stand-3.md b/content/posts/2012/06/09/taco-truck-stand-3.md
new file mode 100644
index 00000000..24d1d396
--- /dev/null
+++ b/content/posts/2012/06/09/taco-truck-stand-3.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-09T02:03:01-07:00"
+title = "Taco Truck Stand"
+image = "/wp-content/uploads/2012/05/201205220639312.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/10/the-southwest.md b/content/posts/2012/06/10/the-southwest.md
new file mode 100644
index 00000000..073e6532
--- /dev/null
+++ b/content/posts/2012/06/10/the-southwest.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-10T02:03:01-07:00"
+title = "The Southwest"
+image = "/wp-content/uploads/2012/06/20120602120433.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/11/the-road-to-vegas.md b/content/posts/2012/06/11/the-road-to-vegas.md
new file mode 100644
index 00000000..d9966cf3
--- /dev/null
+++ b/content/posts/2012/06/11/the-road-to-vegas.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-11T02:03:01-07:00"
+title = "The Road To Vegas"
+image = "/wp-content/uploads/2012/06/20120602110627.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/12/near-perfect-coffee.md b/content/posts/2012/06/12/near-perfect-coffee.md
new file mode 100644
index 00000000..17ec8549
--- /dev/null
+++ b/content/posts/2012/06/12/near-perfect-coffee.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-12T02:03:01-07:00"
+title = "Near perfect coffee"
+image = "/wp-content/uploads/2012/06/20120604143816.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/13/little-church-of-the-west-wedding-chapel.md b/content/posts/2012/06/13/little-church-of-the-west-wedding-chapel.md
new file mode 100644
index 00000000..62fdd95c
--- /dev/null
+++ b/content/posts/2012/06/13/little-church-of-the-west-wedding-chapel.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-13T02:03:01-07:00"
+title = "Little Church of the West Wedding Chapel"
+image = "/wp-content/uploads/2012/06/20120602144207.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/14/balcony-of-dreams.md b/content/posts/2012/06/14/balcony-of-dreams.md
new file mode 100644
index 00000000..0e802340
--- /dev/null
+++ b/content/posts/2012/06/14/balcony-of-dreams.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-14T02:03:01-07:00"
+title = "Balcony of Dreams"
+image = "/wp-content/uploads/2012/06/20120602170319.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/15/vegas-does-paris.md b/content/posts/2012/06/15/vegas-does-paris.md
new file mode 100644
index 00000000..aa89ca0f
--- /dev/null
+++ b/content/posts/2012/06/15/vegas-does-paris.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-15T02:03:01-07:00"
+title = "Vegas does Paris"
+image = "/wp-content/uploads/2012/06/20120602172450.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/16/the-strip-in-the-day.md b/content/posts/2012/06/16/the-strip-in-the-day.md
new file mode 100644
index 00000000..bbf1203d
--- /dev/null
+++ b/content/posts/2012/06/16/the-strip-in-the-day.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-16T02:03:01-07:00"
+title = "The Strip in the Day"
+image = ""
++++
+
+
+
diff --git a/content/posts/2012/06/17/hotel-paris.md b/content/posts/2012/06/17/hotel-paris.md
new file mode 100644
index 00000000..b37cf3e2
--- /dev/null
+++ b/content/posts/2012/06/17/hotel-paris.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-17T02:03:01-07:00"
+title = "Hotel Paris"
+image = "/wp-content/uploads/2012/06/20120602174332.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/18/water-fountain.md b/content/posts/2012/06/18/water-fountain.md
new file mode 100644
index 00000000..1df35f1e
--- /dev/null
+++ b/content/posts/2012/06/18/water-fountain.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-18T02:03:01-07:00"
+title = "Water Fountain"
+image = "/wp-content/uploads/2012/06/20120604132712.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/19/lots-of-cups.md b/content/posts/2012/06/19/lots-of-cups.md
new file mode 100644
index 00000000..f2a3abc0
--- /dev/null
+++ b/content/posts/2012/06/19/lots-of-cups.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-19T02:03:01-07:00"
+title = "Lots of Cups"
+image = "/wp-content/uploads/2012/06/20120604143752.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/20/vegas-corrupts-the-purest.md b/content/posts/2012/06/20/vegas-corrupts-the-purest.md
new file mode 100644
index 00000000..4999afc4
--- /dev/null
+++ b/content/posts/2012/06/20/vegas-corrupts-the-purest.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-20T02:03:01-07:00"
+title = "Vegas corrupts the Purest"
+image = "/wp-content/uploads/2012/06/20120606224601.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/21/sign-of-the-times.md b/content/posts/2012/06/21/sign-of-the-times.md
new file mode 100644
index 00000000..456d31b3
--- /dev/null
+++ b/content/posts/2012/06/21/sign-of-the-times.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-21T02:03:01-07:00"
+title = "Sign of the Times"
+image = "/wp-content/uploads/2012/06/20120608100332.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/22/water-bottle.md b/content/posts/2012/06/22/water-bottle.md
new file mode 100644
index 00000000..5f38013d
--- /dev/null
+++ b/content/posts/2012/06/22/water-bottle.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-22T02:03:01-07:00"
+title = "Water Bottle"
+image = "/wp-content/uploads/2012/06/20120610144210.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/23/cloudy-sunrise.md b/content/posts/2012/06/23/cloudy-sunrise.md
new file mode 100644
index 00000000..9bbca1e9
--- /dev/null
+++ b/content/posts/2012/06/23/cloudy-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-23T02:03:01-07:00"
+title = "Cloudy Sunrise"
+image = "/wp-content/uploads/2012/06/20120615061608.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/24/power-cows.md b/content/posts/2012/06/24/power-cows.md
new file mode 100644
index 00000000..2ae0d892
--- /dev/null
+++ b/content/posts/2012/06/24/power-cows.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-24T02:03:01-07:00"
+title = "Power Cows"
+image = "/wp-content/uploads/2012/06/20120615165301.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/25/day-1365-clouds.md b/content/posts/2012/06/25/day-1365-clouds.md
new file mode 100644
index 00000000..33bca147
--- /dev/null
+++ b/content/posts/2012/06/25/day-1365-clouds.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-25T02:03:01-07:00"
+title = "Day 1/365 - Clouds"
+image = "/wp-content/uploads/2012/06/20120615165528.jpg"
++++
+
+
+ Restarted the Project 365....let's see where it goes...visit my progress at [P365](http://p365.donaldharper.com)
diff --git a/content/posts/2012/06/26/light-mount.md b/content/posts/2012/06/26/light-mount.md
new file mode 100644
index 00000000..ed0518d8
--- /dev/null
+++ b/content/posts/2012/06/26/light-mount.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-26T02:03:01-07:00"
+title = "Light Mount"
+image = "/wp-content/uploads/2012/06/20120617124416.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/27/details-of-tile-work.md b/content/posts/2012/06/27/details-of-tile-work.md
new file mode 100644
index 00000000..9b5a3ef2
--- /dev/null
+++ b/content/posts/2012/06/27/details-of-tile-work.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-27T02:03:01-07:00"
+title = "Details of Tile Work"
+image = "/wp-content/uploads/2012/06/20120617124425.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/28/window-in-red-room.md b/content/posts/2012/06/28/window-in-red-room.md
new file mode 100644
index 00000000..8e4faec2
--- /dev/null
+++ b/content/posts/2012/06/28/window-in-red-room.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-28T02:03:01-07:00"
+title = "Window in Red Room"
+image = "/wp-content/uploads/2012/06/20120617124624.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/29/details-of-a-wood-knot.md b/content/posts/2012/06/29/details-of-a-wood-knot.md
new file mode 100644
index 00000000..ca68e3b2
--- /dev/null
+++ b/content/posts/2012/06/29/details-of-a-wood-knot.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-29T02:03:01-07:00"
+title = "Details of a Wood Knot"
+image = "/wp-content/uploads/2012/06/20120617180907.jpg"
++++
+
+
+
diff --git a/content/posts/2012/06/30/wood-beam.md b/content/posts/2012/06/30/wood-beam.md
new file mode 100644
index 00000000..75c98750
--- /dev/null
+++ b/content/posts/2012/06/30/wood-beam.md
@@ -0,0 +1,8 @@
++++
+date = "2012-06-30T02:03:01-07:00"
+title = "Wood Beam"
+image = "/wp-content/uploads/2012/06/20120617181221.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/01/storm-clouds-on-the-horizon.md b/content/posts/2012/07/01/storm-clouds-on-the-horizon.md
new file mode 100644
index 00000000..4ad01a7f
--- /dev/null
+++ b/content/posts/2012/07/01/storm-clouds-on-the-horizon.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-01T02:03:01-07:00"
+title = "Storm Clouds on the Horizon"
+image = "/wp-content/uploads/2012/07/20120619064107.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/02/end-of-the-line-2.md b/content/posts/2012/07/02/end-of-the-line-2.md
new file mode 100644
index 00000000..e2a10e97
--- /dev/null
+++ b/content/posts/2012/07/02/end-of-the-line-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-02T02:03:01-07:00"
+title = "End Of The Line"
+image = "/wp-content/uploads/2012/07/20120619161413.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/03/dragonfly-2.md b/content/posts/2012/07/03/dragonfly-2.md
new file mode 100644
index 00000000..638473ad
--- /dev/null
+++ b/content/posts/2012/07/03/dragonfly-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-03T02:03:01-07:00"
+title = "Dragonfly!"
+image = "/wp-content/uploads/2012/07/20120621141901.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/04/sunday-sunset.md b/content/posts/2012/07/04/sunday-sunset.md
new file mode 100644
index 00000000..abeb7e27
--- /dev/null
+++ b/content/posts/2012/07/04/sunday-sunset.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-04T02:03:01-07:00"
+title = "Sunday Sunset"
+image = "/wp-content/uploads/2012/07/20120624191813_1.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/05/horns-see-you.md b/content/posts/2012/07/05/horns-see-you.md
new file mode 100644
index 00000000..44d688ba
--- /dev/null
+++ b/content/posts/2012/07/05/horns-see-you.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-05T02:03:01-07:00"
+title = "Horns See You"
+image = "/wp-content/uploads/2012/07/20120627062943_1.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/06/sunflower-in-sunrise.md b/content/posts/2012/07/06/sunflower-in-sunrise.md
new file mode 100644
index 00000000..f14ea9e0
--- /dev/null
+++ b/content/posts/2012/07/06/sunflower-in-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-06T02:03:01-07:00"
+title = "Sunflower in Sunrise"
+image = "/wp-content/uploads/2012/07/20120629062249_1.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/07/detail-of-a-fairlane.md b/content/posts/2012/07/07/detail-of-a-fairlane.md
new file mode 100644
index 00000000..2e0e5b27
--- /dev/null
+++ b/content/posts/2012/07/07/detail-of-a-fairlane.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-07T02:03:01-07:00"
+title = "Detail of a Fairlane"
+image = "/wp-content/uploads/2012/07/20120701123515_1.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/10/summer-swim.md b/content/posts/2012/07/10/summer-swim.md
new file mode 100644
index 00000000..0a819e15
--- /dev/null
+++ b/content/posts/2012/07/10/summer-swim.md
@@ -0,0 +1,11 @@
++++
+date = "2012-07-10T02:03:01-07:00"
+title = "Summer Swim"
+image = "/wp-content/uploads/2012/07/20120702175522.jpg"
++++
+
+
+
+
+Given impending family news, I may miss a day or three here and there
+over the next few months...it's all good news, though...
diff --git a/content/posts/2012/07/11/globe-of-flowers.md b/content/posts/2012/07/11/globe-of-flowers.md
new file mode 100644
index 00000000..10864d68
--- /dev/null
+++ b/content/posts/2012/07/11/globe-of-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-11T02:03:01-07:00"
+title = "Globe of Flowers"
+image = "/wp-content/uploads/2012/07/20120116133729.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/12/power-sunrise-ii.md b/content/posts/2012/07/12/power-sunrise-ii.md
new file mode 100644
index 00000000..b3f28f5a
--- /dev/null
+++ b/content/posts/2012/07/12/power-sunrise-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-12T02:03:01-07:00"
+title = "Power Sunrise II"
+image = "/wp-content/uploads/2012/07/2012020819102641.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/13/olympus-digital-camera.md b/content/posts/2012/07/13/olympus-digital-camera.md
new file mode 100644
index 00000000..0272d21b
--- /dev/null
+++ b/content/posts/2012/07/13/olympus-digital-camera.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-13T02:03:01-07:00"
+title = "OLYMPUS DIGITAL CAMERA"
+image = "/wp-content/uploads/2012/07/20120225103140.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/14/a-dangerous-view.md b/content/posts/2012/07/14/a-dangerous-view.md
new file mode 100644
index 00000000..d9846a3b
--- /dev/null
+++ b/content/posts/2012/07/14/a-dangerous-view.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-14T02:03:01-07:00"
+title = "A Dangerous View"
+image = "/wp-content/uploads/2012/07/20120620062443.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/15/sun-flair-over-abandoned.md b/content/posts/2012/07/15/sun-flair-over-abandoned.md
new file mode 100644
index 00000000..498a6145
--- /dev/null
+++ b/content/posts/2012/07/15/sun-flair-over-abandoned.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-15T02:03:01-07:00"
+title = "Sun Flair over Abandoned"
+image = "/wp-content/uploads/2012/07/20120703065103.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/16/view-from-above-2.md b/content/posts/2012/07/16/view-from-above-2.md
new file mode 100644
index 00000000..9dc8f0bf
--- /dev/null
+++ b/content/posts/2012/07/16/view-from-above-2.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-16T02:03:01-07:00"
+title = "View from Above"
+image = "/wp-content/uploads/2012/07/20120705135521.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/17/storm-clouds-coming-in.md b/content/posts/2012/07/17/storm-clouds-coming-in.md
new file mode 100644
index 00000000..629b0326
--- /dev/null
+++ b/content/posts/2012/07/17/storm-clouds-coming-in.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-17T02:03:01-07:00"
+title = "Storm Clouds Coming In"
+image = "/wp-content/uploads/2012/07/20120709072615.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/18/wet-commute.md b/content/posts/2012/07/18/wet-commute.md
new file mode 100644
index 00000000..db3b5a82
--- /dev/null
+++ b/content/posts/2012/07/18/wet-commute.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-18T02:03:01-07:00"
+title = "Wet Commute"
+image = "/wp-content/uploads/2012/07/20120711064809.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/19/male-shishi.md b/content/posts/2012/07/19/male-shishi.md
new file mode 100644
index 00000000..abd7f6ea
--- /dev/null
+++ b/content/posts/2012/07/19/male-shishi.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-19T02:03:01-07:00"
+title = "Male Shishi"
+image = "/wp-content/uploads/2012/07/20120714132715.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/20/mother-shishi.md b/content/posts/2012/07/20/mother-shishi.md
new file mode 100644
index 00000000..6ab24ab3
--- /dev/null
+++ b/content/posts/2012/07/20/mother-shishi.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-20T02:03:01-07:00"
+title = "Mother Shishi"
+image = "/wp-content/uploads/2012/07/20120714132733.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/21/tickle-the-ivory.md b/content/posts/2012/07/21/tickle-the-ivory.md
new file mode 100644
index 00000000..00f9011e
--- /dev/null
+++ b/content/posts/2012/07/21/tickle-the-ivory.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-21T02:03:01-07:00"
+title = "Tickle The Ivory"
+image = "/wp-content/uploads/2012/07/20120715105302.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/22/tickle-the-ivory-line-drawn.md b/content/posts/2012/07/22/tickle-the-ivory-line-drawn.md
new file mode 100644
index 00000000..875482e7
--- /dev/null
+++ b/content/posts/2012/07/22/tickle-the-ivory-line-drawn.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-22T02:03:01-07:00"
+title = "Tickle The Ivory, Line Drawn"
+image = "/wp-content/uploads/2012/07/20120715105305.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/23/kitty-dreaming.md b/content/posts/2012/07/23/kitty-dreaming.md
new file mode 100644
index 00000000..d1f5993c
--- /dev/null
+++ b/content/posts/2012/07/23/kitty-dreaming.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-23T02:03:01-07:00"
+title = "Kitty Dreaming"
+image = "/wp-content/uploads/2012/07/20120719181608.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/24/resing-place-in-the-morning.md b/content/posts/2012/07/24/resing-place-in-the-morning.md
new file mode 100644
index 00000000..f8a864ea
--- /dev/null
+++ b/content/posts/2012/07/24/resing-place-in-the-morning.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-24T02:03:01-07:00"
+title = "Resing Place In The Morning"
+image = "/wp-content/uploads/2012/07/20120720062615.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/25/morning-path.md b/content/posts/2012/07/25/morning-path.md
new file mode 100644
index 00000000..2af065c6
--- /dev/null
+++ b/content/posts/2012/07/25/morning-path.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-25T02:03:01-07:00"
+title = "Morning Path"
+image = "/wp-content/uploads/2012/07/20120720062749.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/26/take-me-to-your-leader.md b/content/posts/2012/07/26/take-me-to-your-leader.md
new file mode 100644
index 00000000..0a5ea72f
--- /dev/null
+++ b/content/posts/2012/07/26/take-me-to-your-leader.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-26T02:03:01-07:00"
+title = "Take Me To Your Leader"
+image = "/wp-content/uploads/2012/07/20120720193829.jpg"
++++
+
+
+
diff --git a/content/posts/2012/07/27/water-lizzard.md b/content/posts/2012/07/27/water-lizzard.md
new file mode 100644
index 00000000..d66aa6c5
--- /dev/null
+++ b/content/posts/2012/07/27/water-lizzard.md
@@ -0,0 +1,8 @@
++++
+date = "2012-07-27T02:03:01-07:00"
+title = "Water Lizzard"
+image = "/wp-content/uploads/2012/07/20120721114644.jpg"
++++
+
+
+
diff --git a/content/posts/2014/07/08/restart-not-reboot.md b/content/posts/2014/07/08/restart-not-reboot.md
new file mode 100644
index 00000000..13afe425
--- /dev/null
+++ b/content/posts/2014/07/08/restart-not-reboot.md
@@ -0,0 +1,8 @@
++++
+date = "2014-07-08T07:03:29-07:00"
+title = "Restart, not reboot"
+image = ""
++++
+
+
+Sorry about stopping this, but life is life.
diff --git a/content/posts/2014/09/18/quiet-time.md b/content/posts/2014/09/18/quiet-time.md
new file mode 100644
index 00000000..54f8f889
--- /dev/null
+++ b/content/posts/2014/09/18/quiet-time.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-18T02:03:01-07:00"
+title = "Quiet Time"
+image = "/wp-content/uploads/2014/09/201406070950371.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/19/power.md b/content/posts/2014/09/19/power.md
new file mode 100644
index 00000000..fa431844
--- /dev/null
+++ b/content/posts/2014/09/19/power.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-19T02:03:01-07:00"
+title = "Power"
+image = "/wp-content/uploads/2014/09/20140223185144.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/20/moon-over-tower.md b/content/posts/2014/09/20/moon-over-tower.md
new file mode 100644
index 00000000..207174e0
--- /dev/null
+++ b/content/posts/2014/09/20/moon-over-tower.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-20T02:03:01-07:00"
+title = "Moon Over Tower"
+image = "/wp-content/uploads/2014/09/20140607234122.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/21/reflections.md b/content/posts/2014/09/21/reflections.md
new file mode 100644
index 00000000..c5cdfa49
--- /dev/null
+++ b/content/posts/2014/09/21/reflections.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-21T02:03:01-07:00"
+title = "Reflections"
+image = "/wp-content/uploads/2014/09/201403190732521.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/22/repeat.md b/content/posts/2014/09/22/repeat.md
new file mode 100644
index 00000000..b3f6b515
--- /dev/null
+++ b/content/posts/2014/09/22/repeat.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-22T02:03:01-07:00"
+title = "Repeat"
+image = "/wp-content/uploads/2014/09/20140325073340.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/23/red-ninja.md b/content/posts/2014/09/23/red-ninja.md
new file mode 100644
index 00000000..24a3d284
--- /dev/null
+++ b/content/posts/2014/09/23/red-ninja.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-23T02:03:01-07:00"
+title = "Red Ninja"
+image = "/wp-content/uploads/2014/09/20140325111711.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/24/phone-booth.md b/content/posts/2014/09/24/phone-booth.md
new file mode 100644
index 00000000..0b230793
--- /dev/null
+++ b/content/posts/2014/09/24/phone-booth.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-24T02:03:01-07:00"
+title = "Phone Booth"
+image = "/wp-content/uploads/2014/09/201403311155261.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/25/selfie.md b/content/posts/2014/09/25/selfie.md
new file mode 100644
index 00000000..8c078b91
--- /dev/null
+++ b/content/posts/2014/09/25/selfie.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-25T02:03:01-07:00"
+title = "Selfie"
+image = "/wp-content/uploads/2014/09/20140331124000.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/26/st-pauls.md b/content/posts/2014/09/26/st-pauls.md
new file mode 100644
index 00000000..f4a1e04d
--- /dev/null
+++ b/content/posts/2014/09/26/st-pauls.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-26T02:03:01-07:00"
+title = "St. Pauls"
+image = "/wp-content/uploads/2014/09/20140331124111.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/27/st-pauls-collumn.md b/content/posts/2014/09/27/st-pauls-collumn.md
new file mode 100644
index 00000000..8cd990b8
--- /dev/null
+++ b/content/posts/2014/09/27/st-pauls-collumn.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-27T02:03:01-07:00"
+title = "St. Pauls Collumn"
+image = "/wp-content/uploads/2014/09/201403311248501.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/28/mayor-window.md b/content/posts/2014/09/28/mayor-window.md
new file mode 100644
index 00000000..c962a24c
--- /dev/null
+++ b/content/posts/2014/09/28/mayor-window.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-28T02:03:01-07:00"
+title = "Mayor Window"
+image = "/wp-content/uploads/2014/09/20140331160537.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/29/guild-hall.md b/content/posts/2014/09/29/guild-hall.md
new file mode 100644
index 00000000..2dc557a6
--- /dev/null
+++ b/content/posts/2014/09/29/guild-hall.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-29T02:03:01-07:00"
+title = "Guild Hall"
+image = "/wp-content/uploads/2014/09/20140331161614.jpg"
++++
+
+
+
diff --git a/content/posts/2014/09/30/head.md b/content/posts/2014/09/30/head.md
new file mode 100644
index 00000000..a1f3f301
--- /dev/null
+++ b/content/posts/2014/09/30/head.md
@@ -0,0 +1,8 @@
++++
+date = "2014-09-30T02:03:01-07:00"
+title = "Head?"
+image = "/wp-content/uploads/2014/09/201403311728521.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/01/who-needs-a-head.md b/content/posts/2014/10/01/who-needs-a-head.md
new file mode 100644
index 00000000..92a2c1a5
--- /dev/null
+++ b/content/posts/2014/10/01/who-needs-a-head.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-01T02:03:01-07:00"
+title = "Who Needs A Head?"
+image = "/wp-content/uploads/2014/09/20140331172939.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/02/griff1n.md b/content/posts/2014/10/02/griff1n.md
new file mode 100644
index 00000000..f01e4e1a
--- /dev/null
+++ b/content/posts/2014/10/02/griff1n.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-02T02:03:01-07:00"
+title = "Griff1n"
+image = "/wp-content/uploads/2014/09/20140607094949.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/03/empty.md b/content/posts/2014/10/03/empty.md
new file mode 100644
index 00000000..ff420d91
--- /dev/null
+++ b/content/posts/2014/10/03/empty.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-03T02:03:01-07:00"
+title = "Empty"
+image = "/wp-content/uploads/2014/09/20140222094055.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/04/wall.md b/content/posts/2014/10/04/wall.md
new file mode 100644
index 00000000..8225cb07
--- /dev/null
+++ b/content/posts/2014/10/04/wall.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-04T02:03:01-07:00"
+title = "Wall"
+image = "/wp-content/uploads/2014/09/20140607232925.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/05/oil.md b/content/posts/2014/10/05/oil.md
new file mode 100644
index 00000000..d0e1e905
--- /dev/null
+++ b/content/posts/2014/10/05/oil.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-05T02:03:01-07:00"
+title = "Oil"
+image = "/wp-content/uploads/2014/09/201407191036472.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/06/double-rainbow.md b/content/posts/2014/10/06/double-rainbow.md
new file mode 100644
index 00000000..b35b6e30
--- /dev/null
+++ b/content/posts/2014/10/06/double-rainbow.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-06T02:03:01-07:00"
+title = "Double Rainbow!"
+image = "/wp-content/uploads/2014/09/201409171626291.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/07/ninja-hide-in-plain-sight.md b/content/posts/2014/10/07/ninja-hide-in-plain-sight.md
new file mode 100644
index 00000000..b058c136
--- /dev/null
+++ b/content/posts/2014/10/07/ninja-hide-in-plain-sight.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-07T02:03:01-07:00"
+title = "Ninja hide in plain sight"
+image = "/wp-content/uploads/2014/09/20140314174519.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/08/morning-drive.md b/content/posts/2014/10/08/morning-drive.md
new file mode 100644
index 00000000..e3afb3c8
--- /dev/null
+++ b/content/posts/2014/10/08/morning-drive.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-08T02:03:01-07:00"
+title = "Morning Drive"
+image = "/wp-content/uploads/2014/09/20140828071138.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/09/wall-2.md b/content/posts/2014/10/09/wall-2.md
new file mode 100644
index 00000000..36485cdd
--- /dev/null
+++ b/content/posts/2014/10/09/wall-2.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-09T02:03:01-07:00"
+title = "Wall"
+image = "/wp-content/uploads/2014/09/201406072329251.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/10/pink-sunrise.md b/content/posts/2014/10/10/pink-sunrise.md
new file mode 100644
index 00000000..64f7c99f
--- /dev/null
+++ b/content/posts/2014/10/10/pink-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-10T02:03:01-07:00"
+title = "Pink Sunrise"
+image = "/wp-content/uploads/2014/09/20140917070241.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/11/double-rainbow-2.md b/content/posts/2014/10/11/double-rainbow-2.md
new file mode 100644
index 00000000..ef26a0c8
--- /dev/null
+++ b/content/posts/2014/10/11/double-rainbow-2.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-11T02:03:01-07:00"
+title = "Double Rainbow!"
+image = "/wp-content/uploads/2014/09/201409171626292.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/12/clouds-over-truck.md b/content/posts/2014/10/12/clouds-over-truck.md
new file mode 100644
index 00000000..c7b609d6
--- /dev/null
+++ b/content/posts/2014/10/12/clouds-over-truck.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-12T02:03:01-07:00"
+title = "Clouds over Truck"
+image = "/wp-content/uploads/2014/10/20140919160554.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/13/rain-on-umbrella.md b/content/posts/2014/10/13/rain-on-umbrella.md
new file mode 100644
index 00000000..8927a04f
--- /dev/null
+++ b/content/posts/2014/10/13/rain-on-umbrella.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-13T02:03:01-07:00"
+title = "Rain on Umbrella"
+image = "/wp-content/uploads/2014/10/20140927123421.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/14/powerlines-in-the-morning.md b/content/posts/2014/10/14/powerlines-in-the-morning.md
new file mode 100644
index 00000000..96b1892e
--- /dev/null
+++ b/content/posts/2014/10/14/powerlines-in-the-morning.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-14T02:03:01-07:00"
+title = "Powerlines in the Morning"
+image = "/wp-content/uploads/2014/10/20140929071705.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/15/white-ninja-in-tree.md b/content/posts/2014/10/15/white-ninja-in-tree.md
new file mode 100644
index 00000000..1c7ce131
--- /dev/null
+++ b/content/posts/2014/10/15/white-ninja-in-tree.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-15T02:03:01-07:00"
+title = "White Ninja in Tree"
+image = "/wp-content/uploads/2014/10/201410041243581.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/16/ninjas-hate-devil-duck-in-trees.md b/content/posts/2014/10/16/ninjas-hate-devil-duck-in-trees.md
new file mode 100644
index 00000000..cdaee0d2
--- /dev/null
+++ b/content/posts/2014/10/16/ninjas-hate-devil-duck-in-trees.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-16T02:03:01-07:00"
+title = "Ninjas Hate Devil Duck...In Trees"
+image = "/wp-content/uploads/2014/10/20141004124521.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/17/ninja-guards-fun.md b/content/posts/2014/10/17/ninja-guards-fun.md
new file mode 100644
index 00000000..f5074471
--- /dev/null
+++ b/content/posts/2014/10/17/ninja-guards-fun.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-17T02:03:01-07:00"
+title = "Ninja Guards Fun"
+image = "/wp-content/uploads/2014/10/20141005121521.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/18/mr-duck-ready-to-slide.md b/content/posts/2014/10/18/mr-duck-ready-to-slide.md
new file mode 100644
index 00000000..a06c47b6
--- /dev/null
+++ b/content/posts/2014/10/18/mr-duck-ready-to-slide.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-18T02:03:01-07:00"
+title = "Mr. Duck Ready To Slide"
+image = "/wp-content/uploads/2014/10/201410051221481.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/19/shadows-of-the-game.md b/content/posts/2014/10/19/shadows-of-the-game.md
new file mode 100644
index 00000000..675c5d03
--- /dev/null
+++ b/content/posts/2014/10/19/shadows-of-the-game.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-19T02:03:01-07:00"
+title = "Shadows of the Game"
+image = "/wp-content/uploads/2014/10/20141005122644.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/20/lego-town-i.md b/content/posts/2014/10/20/lego-town-i.md
new file mode 100644
index 00000000..afdb085a
--- /dev/null
+++ b/content/posts/2014/10/20/lego-town-i.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-20T02:03:01-07:00"
+title = "Lego Town I"
+image = "/wp-content/uploads/2014/10/IMG_20140927_210805.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/21/lego-town-ii.md b/content/posts/2014/10/21/lego-town-ii.md
new file mode 100644
index 00000000..e6deb4b9
--- /dev/null
+++ b/content/posts/2014/10/21/lego-town-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-21T02:03:01-07:00"
+title = "Lego Town II"
+image = "/wp-content/uploads/2014/10/IMG_20140927_2108211.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/22/defend-fun.md b/content/posts/2014/10/22/defend-fun.md
new file mode 100644
index 00000000..1e0233a0
--- /dev/null
+++ b/content/posts/2014/10/22/defend-fun.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-22T02:03:01-07:00"
+title = "Defend Fun"
+image = "/wp-content/uploads/2014/10/IMG_20140928_171825.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/23/repeating-swings-revisited.md b/content/posts/2014/10/23/repeating-swings-revisited.md
new file mode 100644
index 00000000..1e9247e0
--- /dev/null
+++ b/content/posts/2014/10/23/repeating-swings-revisited.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-23T02:03:01-07:00"
+title = "Repeating Swings, Revisited"
+image = "/wp-content/uploads/2014/10/IMG_20140928_174355.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/24/holely-rusted-metal.md b/content/posts/2014/10/24/holely-rusted-metal.md
new file mode 100644
index 00000000..ef308c64
--- /dev/null
+++ b/content/posts/2014/10/24/holely-rusted-metal.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-24T02:03:01-07:00"
+title = "Holely Rusted Metal!"
+image = "/wp-content/uploads/2014/10/IMG_20140928_1746484.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/25/ninjas-waiting-on-lunchi.md b/content/posts/2014/10/25/ninjas-waiting-on-lunchi.md
new file mode 100644
index 00000000..2ab13f12
--- /dev/null
+++ b/content/posts/2014/10/25/ninjas-waiting-on-lunchi.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-25T02:03:01-07:00"
+title = "Ninjas waiting on lunch!"
+image = "/wp-content/uploads/2014/10/IMG_20141004_1336203.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/26/mr-duck.md b/content/posts/2014/10/26/mr-duck.md
new file mode 100644
index 00000000..4ee5f47d
--- /dev/null
+++ b/content/posts/2014/10/26/mr-duck.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-26T02:03:01-07:00"
+title = "Mr Duck"
+image = "/wp-content/uploads/2014/10/20140903073304.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/27/mr-duck-ii.md b/content/posts/2014/10/27/mr-duck-ii.md
new file mode 100644
index 00000000..b19131ed
--- /dev/null
+++ b/content/posts/2014/10/27/mr-duck-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-27T02:03:01-07:00"
+title = "Mr Duck II"
+image = "/wp-content/uploads/2014/10/20140908073838.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/28/red-ninja-2.md b/content/posts/2014/10/28/red-ninja-2.md
new file mode 100644
index 00000000..5c19816e
--- /dev/null
+++ b/content/posts/2014/10/28/red-ninja-2.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-28T02:03:01-07:00"
+title = "Red Ninja"
+image = "/wp-content/uploads/2014/10/IMG_20141007_160625.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/29/orange-ninja-and-friend.md b/content/posts/2014/10/29/orange-ninja-and-friend.md
new file mode 100644
index 00000000..26b64d37
--- /dev/null
+++ b/content/posts/2014/10/29/orange-ninja-and-friend.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-29T02:03:01-07:00"
+title = "Orange Ninja and Friend"
+image = "/wp-content/uploads/2014/10/IMG_20141020_2047361.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/30/it-ninjas.md b/content/posts/2014/10/30/it-ninjas.md
new file mode 100644
index 00000000..60cbcbe1
--- /dev/null
+++ b/content/posts/2014/10/30/it-ninjas.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-30T02:03:01-07:00"
+title = "IT Ninjas"
+image = "/wp-content/uploads/2014/10/IMG_20141022_131600.jpg"
++++
+
+
+
diff --git a/content/posts/2014/10/31/pumpkins-i.md b/content/posts/2014/10/31/pumpkins-i.md
new file mode 100644
index 00000000..c794bdb1
--- /dev/null
+++ b/content/posts/2014/10/31/pumpkins-i.md
@@ -0,0 +1,8 @@
++++
+date = "2014-10-31T02:03:01-07:00"
+title = "Pumpkins I"
+image = "/wp-content/uploads/2014/10/IMG_20141026_170245.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/01/pumpkins-ii.md b/content/posts/2014/11/01/pumpkins-ii.md
new file mode 100644
index 00000000..f5559df8
--- /dev/null
+++ b/content/posts/2014/11/01/pumpkins-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-01T02:03:01-07:00"
+title = "Pumpkins II"
+image = "/wp-content/uploads/2014/10/IMG_20141026_170425.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/02/hey-2.md b/content/posts/2014/11/02/hey-2.md
new file mode 100644
index 00000000..e13a499f
--- /dev/null
+++ b/content/posts/2014/11/02/hey-2.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-02T01:03:01-07:00"
+title = "Hey!"
+image = "/wp-content/uploads/2014/10/IMG_20141026_171528.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/03/ninja-planning.md b/content/posts/2014/11/03/ninja-planning.md
new file mode 100644
index 00000000..b8593bbe
--- /dev/null
+++ b/content/posts/2014/11/03/ninja-planning.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-03T01:03:01-07:00"
+title = "Ninja Planning"
+image = "/wp-content/uploads/2014/11/20141029180337.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/04/yellow-ninja-hanging-around.md b/content/posts/2014/11/04/yellow-ninja-hanging-around.md
new file mode 100644
index 00000000..c0b703d6
--- /dev/null
+++ b/content/posts/2014/11/04/yellow-ninja-hanging-around.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-04T01:03:01-07:00"
+title = "Yellow Ninja Hanging Around"
+image = "/wp-content/uploads/2014/11/20141029180448.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/05/ninja-glamour-shot.md b/content/posts/2014/11/05/ninja-glamour-shot.md
new file mode 100644
index 00000000..920948c9
--- /dev/null
+++ b/content/posts/2014/11/05/ninja-glamour-shot.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-05T01:03:01-07:00"
+title = "Ninja Glamour Shot"
+image = "/wp-content/uploads/2014/11/20141029181103.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/06/green-ninja-glamour-shot.md b/content/posts/2014/11/06/green-ninja-glamour-shot.md
new file mode 100644
index 00000000..d1fb88c1
--- /dev/null
+++ b/content/posts/2014/11/06/green-ninja-glamour-shot.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-06T01:03:01-07:00"
+title = "Green Ninja Glamour Shot"
+image = "/wp-content/uploads/2014/11/201410291813411.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/07/brown-ninja-glamour-shot.md b/content/posts/2014/11/07/brown-ninja-glamour-shot.md
new file mode 100644
index 00000000..2202dbbb
--- /dev/null
+++ b/content/posts/2014/11/07/brown-ninja-glamour-shot.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-07T01:03:01-07:00"
+title = "Brown Ninja Glamour Shot"
+image = "/wp-content/uploads/2014/11/20141029181431.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/08/yellow-ninja-glamour-shot.md b/content/posts/2014/11/08/yellow-ninja-glamour-shot.md
new file mode 100644
index 00000000..ae0e34e6
--- /dev/null
+++ b/content/posts/2014/11/08/yellow-ninja-glamour-shot.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-08T01:03:01-07:00"
+title = "Yellow Ninja Glamour Shot"
+image = "/wp-content/uploads/2014/11/20141029181443.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/09/black-ninja-glamour-shot.md b/content/posts/2014/11/09/black-ninja-glamour-shot.md
new file mode 100644
index 00000000..d132791f
--- /dev/null
+++ b/content/posts/2014/11/09/black-ninja-glamour-shot.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-09T01:03:01-07:00"
+title = "Black Ninja Glamour Shot"
+image = "/wp-content/uploads/2014/11/201410291815041.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/10/blue-ninja-glamour-shot.md b/content/posts/2014/11/10/blue-ninja-glamour-shot.md
new file mode 100644
index 00000000..66919cde
--- /dev/null
+++ b/content/posts/2014/11/10/blue-ninja-glamour-shot.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-10T01:03:01-07:00"
+title = "Blue Ninja Glamour Shot"
+image = "/wp-content/uploads/2014/11/20141029181524.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/11/white-ninja-glamour-shot.md b/content/posts/2014/11/11/white-ninja-glamour-shot.md
new file mode 100644
index 00000000..759d613f
--- /dev/null
+++ b/content/posts/2014/11/11/white-ninja-glamour-shot.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-11T01:03:01-07:00"
+title = "White Ninja Glamour Shot"
+image = "/wp-content/uploads/2014/11/20141029181548.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/12/white-ninja-in-white-flowers.md b/content/posts/2014/11/12/white-ninja-in-white-flowers.md
new file mode 100644
index 00000000..dfb10352
--- /dev/null
+++ b/content/posts/2014/11/12/white-ninja-in-white-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-12T01:03:01-07:00"
+title = "White Ninja in White Flowers"
+image = "/wp-content/uploads/2014/11/20141108155244.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/13/white-ninja-defends-stream.md b/content/posts/2014/11/13/white-ninja-defends-stream.md
new file mode 100644
index 00000000..39f6fad1
--- /dev/null
+++ b/content/posts/2014/11/13/white-ninja-defends-stream.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-13T01:03:01-07:00"
+title = "White Ninja defends stream"
+image = ""
++++
+
+
+
diff --git a/content/posts/2014/11/14/yellow-ninja-an-flowers.md b/content/posts/2014/11/14/yellow-ninja-an-flowers.md
new file mode 100644
index 00000000..2d957568
--- /dev/null
+++ b/content/posts/2014/11/14/yellow-ninja-an-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-14T01:03:01-07:00"
+title = "Yellow Ninja an Flowers"
+image = "/wp-content/uploads/2014/11/20141108155559.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/15/white-ninja-hids.md b/content/posts/2014/11/15/white-ninja-hids.md
new file mode 100644
index 00000000..40a2bb4b
--- /dev/null
+++ b/content/posts/2014/11/15/white-ninja-hids.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-15T01:03:01-07:00"
+title = "White Ninja Hids"
+image = "/wp-content/uploads/2014/11/201411081558241.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/16/yellow-ninja-and-friend.md b/content/posts/2014/11/16/yellow-ninja-and-friend.md
new file mode 100644
index 00000000..2663d46e
--- /dev/null
+++ b/content/posts/2014/11/16/yellow-ninja-and-friend.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-16T01:03:01-07:00"
+title = "Yellow Ninja and Friend"
+image = "/wp-content/uploads/2014/11/20141108155901.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/17/flowers.md b/content/posts/2014/11/17/flowers.md
new file mode 100644
index 00000000..d8ef9a10
--- /dev/null
+++ b/content/posts/2014/11/17/flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-17T01:03:01-07:00"
+title = "Flowers"
+image = "/wp-content/uploads/2014/11/20141108155958.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/18/ninjas-hidding-in-flowers.md b/content/posts/2014/11/18/ninjas-hidding-in-flowers.md
new file mode 100644
index 00000000..94b3a034
--- /dev/null
+++ b/content/posts/2014/11/18/ninjas-hidding-in-flowers.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-18T01:03:01-07:00"
+title = "Ninjas Hidding in Flowers"
+image = "/wp-content/uploads/2014/11/201411081600271.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/19/yellow-ninja-ii.md b/content/posts/2014/11/19/yellow-ninja-ii.md
new file mode 100644
index 00000000..bb505df9
--- /dev/null
+++ b/content/posts/2014/11/19/yellow-ninja-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-19T01:03:01-07:00"
+title = "Yellow Ninja II"
+image = "/wp-content/uploads/2014/11/20141108160508.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/20/dino.md b/content/posts/2014/11/20/dino.md
new file mode 100644
index 00000000..bad143f1
--- /dev/null
+++ b/content/posts/2014/11/20/dino.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-20T01:03:01-07:00"
+title = "Dino!"
+image = "/wp-content/uploads/2014/11/20141108160558.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/21/wet-underpass.md b/content/posts/2014/11/21/wet-underpass.md
new file mode 100644
index 00000000..f8329ba7
--- /dev/null
+++ b/content/posts/2014/11/21/wet-underpass.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-21T01:03:01-07:00"
+title = "Wet Underpass"
+image = "/wp-content/uploads/2014/11/20130109074520.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/22/icecream.md b/content/posts/2014/11/22/icecream.md
new file mode 100644
index 00000000..553ce3de
--- /dev/null
+++ b/content/posts/2014/11/22/icecream.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-22T01:03:01-07:00"
+title = "Icecream!"
+image = "/wp-content/uploads/2014/11/20130110135644.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/23/brush-in-sunrise.md b/content/posts/2014/11/23/brush-in-sunrise.md
new file mode 100644
index 00000000..d205fa23
--- /dev/null
+++ b/content/posts/2014/11/23/brush-in-sunrise.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-23T01:03:01-07:00"
+title = "Brush In Sunrise"
+image = "/wp-content/uploads/2014/11/20130111081301.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/23/wings-to-china.md b/content/posts/2014/11/23/wings-to-china.md
new file mode 100644
index 00000000..1c07763d
--- /dev/null
+++ b/content/posts/2014/11/23/wings-to-china.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-23T22:03:01-07:00"
+title = "Wings to China"
+image = "/wp-content/uploads/2014/11/20130120103459.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/24/details-of-door-knobs.md b/content/posts/2014/11/24/details-of-door-knobs.md
new file mode 100644
index 00000000..ada74e2a
--- /dev/null
+++ b/content/posts/2014/11/24/details-of-door-knobs.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-24T22:03:01-07:00"
+title = "Details of Door Knobs"
+image = "/wp-content/uploads/2014/11/P1215426.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/24/golden-dragons-on-roof.md b/content/posts/2014/11/24/golden-dragons-on-roof.md
new file mode 100644
index 00000000..205be666
--- /dev/null
+++ b/content/posts/2014/11/24/golden-dragons-on-roof.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-24T22:03:01-07:00"
+title = "Golden Dragons on Roof"
+image = "/wp-content/uploads/2014/11/P12154412.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/25/new-years-lanterns.md b/content/posts/2014/11/25/new-years-lanterns.md
new file mode 100644
index 00000000..3ac19404
--- /dev/null
+++ b/content/posts/2014/11/25/new-years-lanterns.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-25T22:03:01-07:00"
+title = "New Years Lanterns"
+image = "/wp-content/uploads/2014/11/P1255540.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/26/dragon-on-door-detail-i.md b/content/posts/2014/11/26/dragon-on-door-detail-i.md
new file mode 100644
index 00000000..864d87c3
--- /dev/null
+++ b/content/posts/2014/11/26/dragon-on-door-detail-i.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-26T22:03:01-07:00"
+title = "Dragon on Door Detail I"
+image = "/wp-content/uploads/2014/11/P12656741.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/26/great-wall.md b/content/posts/2014/11/26/great-wall.md
new file mode 100644
index 00000000..2aac8fa3
--- /dev/null
+++ b/content/posts/2014/11/26/great-wall.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-26T22:03:01-07:00"
+title = "Great Wall"
+image = "/wp-content/uploads/2014/11/P1265612.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/27/dragon-on-door-detail-ii.md b/content/posts/2014/11/27/dragon-on-door-detail-ii.md
new file mode 100644
index 00000000..e93c2e4e
--- /dev/null
+++ b/content/posts/2014/11/27/dragon-on-door-detail-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-27T22:03:01-07:00"
+title = "Dragon on Door Detail II"
+image = "/wp-content/uploads/2014/11/P1265701.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/28/bridge-girder-detail.md b/content/posts/2014/11/28/bridge-girder-detail.md
new file mode 100644
index 00000000..d11140a4
--- /dev/null
+++ b/content/posts/2014/11/28/bridge-girder-detail.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-28T22:03:01-07:00"
+title = "Bridge Girder Detail"
+image = "/wp-content/uploads/2014/11/P12858171.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/29/benches-in-forbidden-city.md b/content/posts/2014/11/29/benches-in-forbidden-city.md
new file mode 100644
index 00000000..968834e1
--- /dev/null
+++ b/content/posts/2014/11/29/benches-in-forbidden-city.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-29T22:03:01-07:00"
+title = "Benches in Forbidden City"
+image = "/wp-content/uploads/2014/11/P1265770.jpg"
++++
+
+
+
diff --git a/content/posts/2014/11/30/monument-to-workers.md b/content/posts/2014/11/30/monument-to-workers.md
new file mode 100644
index 00000000..b255c816
--- /dev/null
+++ b/content/posts/2014/11/30/monument-to-workers.md
@@ -0,0 +1,8 @@
++++
+date = "2014-11-30T22:03:01-07:00"
+title = "Monument to Workers"
+image = "/wp-content/uploads/2014/11/P1285835.jpg"
++++
+
+
+
diff --git a/content/posts/2014/12/01/new-shanghai.md b/content/posts/2014/12/01/new-shanghai.md
new file mode 100644
index 00000000..ccd2582a
--- /dev/null
+++ b/content/posts/2014/12/01/new-shanghai.md
@@ -0,0 +1,8 @@
++++
+date = "2014-12-01T05:03:01-07:00"
+title = "New Shanghai"
+image = "/wp-content/uploads/2014/11/P1300197.jpg"
++++
+
+
+
diff --git a/content/posts/2014/12/02/shanghai-tower.md b/content/posts/2014/12/02/shanghai-tower.md
new file mode 100644
index 00000000..d4b90c53
--- /dev/null
+++ b/content/posts/2014/12/02/shanghai-tower.md
@@ -0,0 +1,8 @@
++++
+date = "2014-12-02T05:03:01-07:00"
+title = "Shanghai Tower"
+image = "/wp-content/uploads/2014/11/P12858771.jpg"
++++
+
+
+
diff --git a/content/posts/2014/12/03/moonrise-from-the-bund.md b/content/posts/2014/12/03/moonrise-from-the-bund.md
new file mode 100644
index 00000000..6096548e
--- /dev/null
+++ b/content/posts/2014/12/03/moonrise-from-the-bund.md
@@ -0,0 +1,8 @@
++++
+date = "2014-12-03T01:03:01-07:00"
+title = "Moonrise from the Bund"
+image = "/wp-content/uploads/2014/11/P1285838.jpg"
++++
+
+
+
diff --git a/content/posts/2014/12/04/turkey-ii.md b/content/posts/2014/12/04/turkey-ii.md
new file mode 100644
index 00000000..f96efa25
--- /dev/null
+++ b/content/posts/2014/12/04/turkey-ii.md
@@ -0,0 +1,8 @@
++++
+date = "2014-12-04T01:03:01-07:00"
+title = "Turkey II"
+image = "/wp-content/uploads/2014/12/20140119183529_ORF_embedded.jpg"
++++
+
+
+
diff --git a/content/posts/2014/12/05/pear-flower.md b/content/posts/2014/12/05/pear-flower.md
new file mode 100644
index 00000000..9629d13a
--- /dev/null
+++ b/content/posts/2014/12/05/pear-flower.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-05T04:00:00-07:00"
+title = "Pear Flower"
+image = "/wp-content/uploads/2014/12/20140223185007_ORF_embedded.jpg"
++++
+
+
diff --git a/content/posts/2014/12/06/vulture-looking.md b/content/posts/2014/12/06/vulture-looking.md
new file mode 100644
index 00000000..76968688
--- /dev/null
+++ b/content/posts/2014/12/06/vulture-looking.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-06T04:00:00-07:00"
+title = "Vulture Looking"
+image = "/wp-content/uploads/2014/12/20140119182747.jpg"
++++
+
+
diff --git a/content/posts/2014/12/07/ice.md b/content/posts/2014/12/07/ice.md
new file mode 100644
index 00000000..ccf54e28
--- /dev/null
+++ b/content/posts/2014/12/07/ice.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-07T04:00:00-07:00"
+title = "Ice"
+image = "/wp-content/uploads/2014/12/20140304081451_ORF_embedded.jpg"
++++
+
+
diff --git a/content/posts/2014/12/08/bike-rack.md b/content/posts/2014/12/08/bike-rack.md
new file mode 100644
index 00000000..a969db81
--- /dev/null
+++ b/content/posts/2014/12/08/bike-rack.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-08T04:00:00-07:00"
+title = "Bike Rack"
+image = "/wp-content/uploads/2014/12/20140314181750_ORF_embedded.jpg"
++++
+
+
diff --git a/content/posts/2014/12/09/making-art-in-london.md b/content/posts/2014/12/09/making-art-in-london.md
new file mode 100644
index 00000000..ec45985a
--- /dev/null
+++ b/content/posts/2014/12/09/making-art-in-london.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-09T04:00:00-07:00"
+title = "Making Art In London"
+image = "/wp-content/uploads/2014/12/20140402185635.jpg"
++++
+
+
diff --git a/content/posts/2014/12/10/clown!.md b/content/posts/2014/12/10/clown!.md
new file mode 100644
index 00000000..4c2e677a
--- /dev/null
+++ b/content/posts/2014/12/10/clown!.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-10T04:00:00-07:00"
+title = "Clown!"
+image = "/wp-content/uploads/2014/12/20140426223922.jpg"
++++
+
+
diff --git a/content/posts/2014/12/11/pot-gnome.md b/content/posts/2014/12/11/pot-gnome.md
new file mode 100644
index 00000000..1130e3ca
--- /dev/null
+++ b/content/posts/2014/12/11/pot-gnome.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-11T04:00:00-07:00"
+title = "Pot Gnome"
+image = "/wp-content/uploads/2014/12/20140517175844.jpg"
++++
+
+
diff --git a/content/posts/2014/12/12/flatonia-buildings.md b/content/posts/2014/12/12/flatonia-buildings.md
new file mode 100644
index 00000000..e8ac1197
--- /dev/null
+++ b/content/posts/2014/12/12/flatonia-buildings.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-12T04:00:00-07:00"
+title = "Flatonia Buildings"
+image = "/wp-content/uploads/2014/12/20140703132721.jpg"
++++
+
+
diff --git a/content/posts/2014/12/13/entrence-to-la-villita.md b/content/posts/2014/12/13/entrence-to-la-villita.md
new file mode 100644
index 00000000..6787e68b
--- /dev/null
+++ b/content/posts/2014/12/13/entrence-to-la-villita.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-13T04:00:00-07:00"
+title = "Entrence to La Villita"
+image = "/wp-content/uploads/2014/12/20140703181320.jpg"
++++
+
+
diff --git a/content/posts/2014/12/14/church-in-la-villita.md b/content/posts/2014/12/14/church-in-la-villita.md
new file mode 100644
index 00000000..6512856f
--- /dev/null
+++ b/content/posts/2014/12/14/church-in-la-villita.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-14T04:00:00-07:00"
+title = "Church In La Villita"
+image = "/wp-content/uploads/2014/12/20140703181517.jpg"
++++
+
+
diff --git a/content/posts/2014/12/16/fig-ivy-on-coral-wall.md b/content/posts/2014/12/16/fig-ivy-on-coral-wall.md
new file mode 100644
index 00000000..517145eb
--- /dev/null
+++ b/content/posts/2014/12/16/fig-ivy-on-coral-wall.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-16T04:00:00-07:00"
+title = "Fig Ivy on Coral Wall"
+image = "/wp-content/uploads/2014/12/20140704134921.jpg"
++++
+
+
diff --git a/content/posts/2014/12/17/preparing-fruit-drinks.md b/content/posts/2014/12/17/preparing-fruit-drinks.md
new file mode 100644
index 00000000..f927deb4
--- /dev/null
+++ b/content/posts/2014/12/17/preparing-fruit-drinks.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-17T04:00:00-07:00"
+title = "Preparing Fruit Drinks"
+image = "/wp-content/uploads/2014/12/20140704215506.jpg"
++++
+
+
diff --git a/content/posts/2014/12/18/fence-at-sunrise.md b/content/posts/2014/12/18/fence-at-sunrise.md
new file mode 100644
index 00000000..a3e24c35
--- /dev/null
+++ b/content/posts/2014/12/18/fence-at-sunrise.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-18T04:00:00-07:00"
+title = "Fence at Sunrise"
+image = "/wp-content/uploads/2014/12/20140825073629.jpg"
++++
+
+
diff --git a/content/posts/2014/12/19/yellow!.md b/content/posts/2014/12/19/yellow!.md
new file mode 100644
index 00000000..94e568f7
--- /dev/null
+++ b/content/posts/2014/12/19/yellow!.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-19T04:00:00-07:00"
+title = "Yellow!"
+image = "/wp-content/uploads/2014/12/20140703181611.jpg"
++++
+
+
diff --git a/content/posts/2014/12/20/mission-wall.md b/content/posts/2014/12/20/mission-wall.md
new file mode 100644
index 00000000..481d0c27
--- /dev/null
+++ b/content/posts/2014/12/20/mission-wall.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-20T04:00:00-07:00"
+title = "Mission Wall"
+image = "/wp-content/uploads/2014/12/20140704102958.jpg"
++++
+
+
diff --git a/content/posts/2014/12/21/celling-details.md b/content/posts/2014/12/21/celling-details.md
new file mode 100644
index 00000000..b03ae22b
--- /dev/null
+++ b/content/posts/2014/12/21/celling-details.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-21T04:00:00-07:00"
+title = "Celling Details"
+image = "/wp-content/uploads/2014/12/20140704115156.jpg"
++++
+
+
diff --git a/content/posts/2014/12/22/arneson-theater-bells.md b/content/posts/2014/12/22/arneson-theater-bells.md
new file mode 100644
index 00000000..b07729af
--- /dev/null
+++ b/content/posts/2014/12/22/arneson-theater-bells.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-22T04:00:00-07:00"
+title = "Arneson Theater Bells"
+image = "/wp-content/uploads/2014/12/20140705102834.jpg"
++++
+
+
diff --git a/content/posts/2014/12/23/waiting-on-the-alamo.md b/content/posts/2014/12/23/waiting-on-the-alamo.md
new file mode 100644
index 00000000..31125fda
--- /dev/null
+++ b/content/posts/2014/12/23/waiting-on-the-alamo.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-23T04:00:00-07:00"
+title = "Waiting on the Alamo"
+image = "/wp-content/uploads/2014/12/20140705113156.jpg"
++++
+
+
diff --git a/content/posts/2014/12/24/celling-of-railroad-track-cafe.md b/content/posts/2014/12/24/celling-of-railroad-track-cafe.md
new file mode 100644
index 00000000..5764be81
--- /dev/null
+++ b/content/posts/2014/12/24/celling-of-railroad-track-cafe.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-24T04:00:00-07:00"
+title = "Celling of Railroad Track Cafe"
+image = "/wp-content/uploads/2014/12/20140703121845.jpg"
++++
+
+
diff --git a/content/posts/2014/12/25/detail-of-celling-of-railroad-track-cafe.md b/content/posts/2014/12/25/detail-of-celling-of-railroad-track-cafe.md
new file mode 100644
index 00000000..1f1ef79b
--- /dev/null
+++ b/content/posts/2014/12/25/detail-of-celling-of-railroad-track-cafe.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-25T04:00:00-07:00"
+title = "Detail of Celling of Railroad Track Cafe"
+image = "/wp-content/uploads/2014/12/20140703121911.jpg"
++++
+
+
diff --git a/content/posts/2014/12/26/breakfront-at-railroad-track-cafe.md b/content/posts/2014/12/26/breakfront-at-railroad-track-cafe.md
new file mode 100644
index 00000000..ad96fdb3
--- /dev/null
+++ b/content/posts/2014/12/26/breakfront-at-railroad-track-cafe.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-26T04:00:00-07:00"
+title = "Breakfront at Railroad Track Cafe"
+image = "/wp-content/uploads/2014/12/20140703132247.jpg"
++++
+
+
diff --git a/content/posts/2014/12/27/detail-of-awning.md b/content/posts/2014/12/27/detail-of-awning.md
new file mode 100644
index 00000000..ae2645f1
--- /dev/null
+++ b/content/posts/2014/12/27/detail-of-awning.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-27T04:00:00-07:00"
+title = "Detail of Awning"
+image = "/wp-content/uploads/2014/12/20140703180906.jpg"
++++
+
+
diff --git a/content/posts/2014/12/28/sunflower,-xxiv.md b/content/posts/2014/12/28/sunflower,-xxiv.md
new file mode 100644
index 00000000..1eca424f
--- /dev/null
+++ b/content/posts/2014/12/28/sunflower,-xxiv.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-28T04:00:00-07:00"
+title = "Sunflower, XXIV"
+image = "/wp-content/uploads/2014/12/20140703181024.jpg"
++++
+
+
diff --git a/content/posts/2014/12/29/tower-of-the-americas.md b/content/posts/2014/12/29/tower-of-the-americas.md
new file mode 100644
index 00000000..ae51b70e
--- /dev/null
+++ b/content/posts/2014/12/29/tower-of-the-americas.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-29T04:00:00-07:00"
+title = "Tower of the Americas"
+image = "/wp-content/uploads/2015/01/20140706133615.jpg"
++++
+
+
diff --git a/content/posts/2014/12/30/arneson-theater-stage.md b/content/posts/2014/12/30/arneson-theater-stage.md
new file mode 100644
index 00000000..e8a3c305
--- /dev/null
+++ b/content/posts/2014/12/30/arneson-theater-stage.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-30T04:00:00-07:00"
+title = "Arneson Theater Stage"
+image = "/wp-content/uploads/2014/12/20140705100455.jpg"
++++
+
+
diff --git a/content/posts/2014/12/31/waterfall-on-river-walk.md b/content/posts/2014/12/31/waterfall-on-river-walk.md
new file mode 100644
index 00000000..e4b73794
--- /dev/null
+++ b/content/posts/2014/12/31/waterfall-on-river-walk.md
@@ -0,0 +1,7 @@
++++
+date = "2014-12-31T04:00:00-07:00"
+title = "Waterfall on River Walk"
+image = "/wp-content/uploads/2014/12/20140706095606.jpg"
++++
+
+
diff --git a/content/posts/2015/01/01/fence-topper.md b/content/posts/2015/01/01/fence-topper.md
new file mode 100644
index 00000000..bc87ef73
--- /dev/null
+++ b/content/posts/2015/01/01/fence-topper.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-01T04:00:00-07:00"
+title = "Fence Topper"
+image = "/wp-content/uploads/2015/01/20140706100802.jpg"
++++
+
+
diff --git a/content/posts/2015/01/02/la-villita-lights.md b/content/posts/2015/01/02/la-villita-lights.md
new file mode 100644
index 00000000..4f1b0343
--- /dev/null
+++ b/content/posts/2015/01/02/la-villita-lights.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-02T04:00:00-07:00"
+title = "La Villita Lights"
+image = "/wp-content/uploads/2015/01/20140706110237.jpg"
++++
+
+
diff --git a/content/posts/2015/01/03/st.-john's-lutheran-church,-sa,-tx.md b/content/posts/2015/01/03/st.-john's-lutheran-church,-sa,-tx.md
new file mode 100644
index 00000000..121b8e05
--- /dev/null
+++ b/content/posts/2015/01/03/st.-john's-lutheran-church,-sa,-tx.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-03T04:00:00-07:00"
+title = "St. John's Lutheran Church, SA, TX"
+image = "/wp-content/uploads/2015/01/20140706110417.jpg"
++++
+
+
diff --git a/content/posts/2015/01/05/sunrise-golf.md b/content/posts/2015/01/05/sunrise-golf.md
new file mode 100644
index 00000000..ad3e76ed
--- /dev/null
+++ b/content/posts/2015/01/05/sunrise-golf.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-05T04:00:00-07:00"
+title = "Sunrise Golf"
+image = "/wp-content/uploads/2015/01/20140702071412.jpg"
++++
+
+
diff --git a/content/posts/2015/01/06/sunset-path.md b/content/posts/2015/01/06/sunset-path.md
new file mode 100644
index 00000000..b17b59fc
--- /dev/null
+++ b/content/posts/2015/01/06/sunset-path.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-06T04:00:00-07:00"
+title = "Sunset Path"
+image = "/wp-content/uploads/2015/01/20140722195443.jpg"
++++
+
+
diff --git a/content/posts/2015/01/07/shadows-of-christmas.md b/content/posts/2015/01/07/shadows-of-christmas.md
new file mode 100644
index 00000000..dd6f6a01
--- /dev/null
+++ b/content/posts/2015/01/07/shadows-of-christmas.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-07T04:00:00-07:00"
+title = "Shadows of Christmas"
+image = "/wp-content/uploads/2015/01/20141216161530.jpg"
++++
+
+
diff --git a/content/posts/2015/01/08/where-is-mine.md b/content/posts/2015/01/08/where-is-mine.md
new file mode 100644
index 00000000..81d57d5a
--- /dev/null
+++ b/content/posts/2015/01/08/where-is-mine.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-08T04:00:00-07:00"
+title = "Where is Mine?"
+image = "/wp-content/uploads/2015/01/20141225082357.jpg"
++++
+
+
diff --git a/content/posts/2015/01/09/ride-to-london.md b/content/posts/2015/01/09/ride-to-london.md
new file mode 100644
index 00000000..f1384d6d
--- /dev/null
+++ b/content/posts/2015/01/09/ride-to-london.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-09T04:00:00-07:00"
+title = "Ride to London"
+image = "/wp-content/uploads/2015/01/14-11.jpg"
++++
+
+
diff --git a/content/posts/2015/01/10/long-winding-path.md b/content/posts/2015/01/10/long-winding-path.md
new file mode 100644
index 00000000..d02d4a2a
--- /dev/null
+++ b/content/posts/2015/01/10/long-winding-path.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-10T04:00:00-07:00"
+title = "Long Winding Path"
+image = "/wp-content/uploads/2015/01/20140217091224_ORF_embedded.jpg"
++++
+
+
diff --git a/content/posts/2015/01/11/roadside-flowers.md b/content/posts/2015/01/11/roadside-flowers.md
new file mode 100644
index 00000000..a27e3614
--- /dev/null
+++ b/content/posts/2015/01/11/roadside-flowers.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-11T04:00:00-07:00"
+title = "Roadside Flowers"
+image = "/wp-content/uploads/2015/01/20140218182916_ORF_embedded.jpg"
++++
+
+
diff --git a/content/posts/2015/01/12/pear-flowers.md b/content/posts/2015/01/12/pear-flowers.md
new file mode 100644
index 00000000..622ef560
--- /dev/null
+++ b/content/posts/2015/01/12/pear-flowers.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-12T04:00:00-07:00"
+title = "Pear Flowers"
+image = "/wp-content/uploads/2015/01/20140301135822_ORF_embedded.jpg"
++++
+
+
diff --git a/content/posts/2015/01/13/palm-in-sunrise.md b/content/posts/2015/01/13/palm-in-sunrise.md
new file mode 100644
index 00000000..5876ac1b
--- /dev/null
+++ b/content/posts/2015/01/13/palm-in-sunrise.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-13T04:00:00-07:00"
+title = "Palm in Sunrise"
+image = "/wp-content/uploads/2015/01/20140313062606.jpg"
++++
+
+
diff --git a/content/posts/2015/01/14/birds-on-fence.md b/content/posts/2015/01/14/birds-on-fence.md
new file mode 100644
index 00000000..fec12403
--- /dev/null
+++ b/content/posts/2015/01/14/birds-on-fence.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-14T04:00:00-07:00"
+title = "Birds on Fence"
+image = "/wp-content/uploads/2015/01/20140313170534_ORF_embedded.jpg"
++++
+
+
diff --git a/content/posts/2015/01/15/u-turn!.md b/content/posts/2015/01/15/u-turn!.md
new file mode 100644
index 00000000..e8e55eea
--- /dev/null
+++ b/content/posts/2015/01/15/u-turn!.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-15T04:00:00-07:00"
+title = "U Turn!"
+image = "/wp-content/uploads/2015/01/20140326173303.jpg"
++++
+
+
diff --git a/content/posts/2015/01/16/celtic-knot-wall.md b/content/posts/2015/01/16/celtic-knot-wall.md
new file mode 100644
index 00000000..9993d795
--- /dev/null
+++ b/content/posts/2015/01/16/celtic-knot-wall.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-16T04:00:00-07:00"
+title = "Celtic Knot Wall"
+image = "/wp-content/uploads/2015/01/20140403140426.jpg"
++++
+
+
diff --git a/content/posts/2015/01/17/the-blue-cock.md b/content/posts/2015/01/17/the-blue-cock.md
new file mode 100644
index 00000000..8a7668e8
--- /dev/null
+++ b/content/posts/2015/01/17/the-blue-cock.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-17T04:00:00-07:00"
+title = "The Blue Cock"
+image = "/wp-content/uploads/2015/01/20140404174934.jpg"
++++
+
+
diff --git a/content/posts/2015/01/18/classic-ride.md b/content/posts/2015/01/18/classic-ride.md
new file mode 100644
index 00000000..9f65a181
--- /dev/null
+++ b/content/posts/2015/01/18/classic-ride.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-18T04:00:00-07:00"
+title = "Classic Ride"
+image = "/wp-content/uploads/2015/01/20140406111123.jpg"
++++
+
+
diff --git a/content/posts/2015/01/19/beefeater!.md b/content/posts/2015/01/19/beefeater!.md
new file mode 100644
index 00000000..b4294d73
--- /dev/null
+++ b/content/posts/2015/01/19/beefeater!.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-19T04:00:00-07:00"
+title = "Beefeater!"
+image = "/wp-content/uploads/2015/01/20140406145724.jpg"
++++
+
+
diff --git a/content/posts/2015/01/20/tower-bridge.md b/content/posts/2015/01/20/tower-bridge.md
new file mode 100644
index 00000000..9fc26508
--- /dev/null
+++ b/content/posts/2015/01/20/tower-bridge.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-20T04:00:00-07:00"
+title = "Tower Bridge"
+image = "1).jpg"
++++
+
+.jpg)
diff --git a/content/posts/2015/01/21/the-conquestors-on-horse.md b/content/posts/2015/01/21/the-conquestors-on-horse.md
new file mode 100644
index 00000000..067457cc
--- /dev/null
+++ b/content/posts/2015/01/21/the-conquestors-on-horse.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-21T04:00:00-07:00"
+title = "The Conquestors On Horse"
+image = "/wp-content/uploads/2015/01/IMG_20140511_221843.jpg"
++++
+
+
diff --git a/content/posts/2015/01/22/night-train.md b/content/posts/2015/01/22/night-train.md
new file mode 100644
index 00000000..5ccfbad0
--- /dev/null
+++ b/content/posts/2015/01/22/night-train.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-22T04:00:00-07:00"
+title = "Night Train"
+image = "/wp-content/uploads/2015/01/20150115194213.jpg"
++++
+
+
diff --git a/content/posts/2015/01/23/sunsrise-vi.md b/content/posts/2015/01/23/sunsrise-vi.md
new file mode 100644
index 00000000..a0ea525b
--- /dev/null
+++ b/content/posts/2015/01/23/sunsrise-vi.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-23T04:00:00-07:00"
+title = "Sunsrise VI"
+image = "/wp-content/uploads/2015/01/20150116081700.jpg"
++++
+
+
diff --git a/content/posts/2015/01/24/bridge-in-mist.md b/content/posts/2015/01/24/bridge-in-mist.md
new file mode 100644
index 00000000..ee0a3523
--- /dev/null
+++ b/content/posts/2015/01/24/bridge-in-mist.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-24T04:00:00-07:00"
+title = "Bridge in Mist"
+image = "/wp-content/uploads/2015/01/20150116083823.jpg"
++++
+
+
diff --git a/content/posts/2015/01/25/colorful-corner.md b/content/posts/2015/01/25/colorful-corner.md
new file mode 100644
index 00000000..209f41ed
--- /dev/null
+++ b/content/posts/2015/01/25/colorful-corner.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-25T04:00:00-07:00"
+title = "Colorful Corner"
+image = "/wp-content/uploads/2015/01/20150117162014.jpg"
++++
+
+
diff --git a/content/posts/2015/01/26/refliction-in-mosaic.md b/content/posts/2015/01/26/refliction-in-mosaic.md
new file mode 100644
index 00000000..01959989
--- /dev/null
+++ b/content/posts/2015/01/26/refliction-in-mosaic.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-26T04:00:00-07:00"
+title = "Refliction in Mosaic"
+image = "/wp-content/uploads/2015/01/20150117162532.jpg"
++++
+
+
diff --git a/content/posts/2015/01/27/when-tile-meets-wood.md b/content/posts/2015/01/27/when-tile-meets-wood.md
new file mode 100644
index 00000000..59970bbc
--- /dev/null
+++ b/content/posts/2015/01/27/when-tile-meets-wood.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-27T04:00:00-07:00"
+title = "When Tile Meets Wood"
+image = "/wp-content/uploads/2015/01/20150117162548.jpg"
++++
+
+
diff --git a/content/posts/2015/01/28/brick-detail.md b/content/posts/2015/01/28/brick-detail.md
new file mode 100644
index 00000000..1d4fad0b
--- /dev/null
+++ b/content/posts/2015/01/28/brick-detail.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-28T04:00:00-07:00"
+title = "Brick Detail"
+image = "/wp-content/uploads/2015/01/20150117162858.jpg"
++++
+
+
diff --git a/content/posts/2015/01/29/brick-and-color.md b/content/posts/2015/01/29/brick-and-color.md
new file mode 100644
index 00000000..b2f9e615
--- /dev/null
+++ b/content/posts/2015/01/29/brick-and-color.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-29T04:00:00-07:00"
+title = "brick and color"
+image = "/wp-content/uploads/2015/01/20150117162912.jpg"
++++
+
+
diff --git a/content/posts/2015/01/30/juvenile-cardinal.md b/content/posts/2015/01/30/juvenile-cardinal.md
new file mode 100644
index 00000000..0ae70c29
--- /dev/null
+++ b/content/posts/2015/01/30/juvenile-cardinal.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-30T04:00:00-07:00"
+title = "Juvenile Cardinal"
+image = "/wp-content/uploads/2015/01/20150118173759.jpg"
++++
+
+
diff --git a/content/posts/2015/01/31/rose-bud-ii.md b/content/posts/2015/01/31/rose-bud-ii.md
new file mode 100644
index 00000000..1c0f7f3f
--- /dev/null
+++ b/content/posts/2015/01/31/rose-bud-ii.md
@@ -0,0 +1,7 @@
++++
+date = "2015-01-31T04:00:00-07:00"
+title = "Rose Bud II"
+image = "/wp-content/uploads/2015/01/20150120182641.jpg"
++++
+
+
diff --git a/content/posts/2015/02/01/details-of-mutabilis-rose-i.md b/content/posts/2015/02/01/details-of-mutabilis-rose-i.md
new file mode 100644
index 00000000..a4cab7d8
--- /dev/null
+++ b/content/posts/2015/02/01/details-of-mutabilis-rose-i.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-01T04:00:00-07:00"
+title = "Details of Mutabilis Rose I"
+image = "/wp-content/uploads/2015/02/20150120182721.jpg"
++++
+
+
diff --git a/content/posts/2015/02/02/details-of-mutabilis-rose-ii.md b/content/posts/2015/02/02/details-of-mutabilis-rose-ii.md
new file mode 100644
index 00000000..1de88445
--- /dev/null
+++ b/content/posts/2015/02/02/details-of-mutabilis-rose-ii.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-02T04:00:00-07:00"
+title = "Details of Mutabilis Rose II"
+image = "/wp-content/uploads/2015/02/20150120182749.jpg"
++++
+
+
diff --git a/content/posts/2015/02/03/details-of-mutabilis-rose-iii.md b/content/posts/2015/02/03/details-of-mutabilis-rose-iii.md
new file mode 100644
index 00000000..9eebdb0a
--- /dev/null
+++ b/content/posts/2015/02/03/details-of-mutabilis-rose-iii.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-03T04:00:00-07:00"
+title = "Details of Mutabilis Rose III"
+image = "/wp-content/uploads/2015/02/20150120183512.jpg"
++++
+
+
diff --git a/content/posts/2015/02/04/rose-bud-iii.md b/content/posts/2015/02/04/rose-bud-iii.md
new file mode 100644
index 00000000..784a1732
--- /dev/null
+++ b/content/posts/2015/02/04/rose-bud-iii.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-04T04:00:00-07:00"
+title = "Rose Bud III"
+image = "/wp-content/uploads/2015/02/20150120183604.jpg"
++++
+
+
diff --git a/content/posts/2015/02/05/rose-bud-iv.md b/content/posts/2015/02/05/rose-bud-iv.md
new file mode 100644
index 00000000..98a5a6de
--- /dev/null
+++ b/content/posts/2015/02/05/rose-bud-iv.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-05T04:00:00-07:00"
+title = "Rose Bud IV"
+image = "/wp-content/uploads/2015/02/20150120183625.jpg"
++++
+
+
diff --git a/content/posts/2015/02/06/palms-in-the-morning,-wide.md b/content/posts/2015/02/06/palms-in-the-morning,-wide.md
new file mode 100644
index 00000000..73a11384
--- /dev/null
+++ b/content/posts/2015/02/06/palms-in-the-morning,-wide.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-06T04:00:00-07:00"
+title = "Palms in the Morning, Wide"
+image = "/wp-content/uploads/2015/02/20150127075737.jpg"
++++
+
+
diff --git a/content/posts/2015/02/07/hawk-taking-flight.md b/content/posts/2015/02/07/hawk-taking-flight.md
new file mode 100644
index 00000000..32e7d4e7
--- /dev/null
+++ b/content/posts/2015/02/07/hawk-taking-flight.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-07T04:00:00-07:00"
+title = "Hawk Taking Flight"
+image = "/wp-content/uploads/2015/02/20150127112648.jpg"
++++
+
+
diff --git a/content/posts/2015/02/08/recursion.md b/content/posts/2015/02/08/recursion.md
new file mode 100644
index 00000000..3848d318
--- /dev/null
+++ b/content/posts/2015/02/08/recursion.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-08T04:00:00-07:00"
+title = "Recursion"
+image = "/wp-content/uploads/2015/02/20150205190502.jpg"
++++
+
+
diff --git a/content/posts/2015/02/09/slashofyellow.md b/content/posts/2015/02/09/slashofyellow.md
new file mode 100644
index 00000000..204427dc
--- /dev/null
+++ b/content/posts/2015/02/09/slashofyellow.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-09T14:00:00-07:00"
+title = "Splash Of Yellow"
+image = "/wp-content/uploads/2015/02/img_4744.jpg"
++++
+
+
diff --git a/content/posts/2015/02/10/peacefulview.md b/content/posts/2015/02/10/peacefulview.md
new file mode 100644
index 00000000..d82a8d1a
--- /dev/null
+++ b/content/posts/2015/02/10/peacefulview.md
@@ -0,0 +1,9 @@
++++
+date = "2015-02-10T16:00:00-07:00"
+title = "Peaceful View"
+image = "/wp-content/uploads/2015/02/PANO_20150210_174319_1.jpg"
++++
+
+
+
+Working long hours this week. Sorry\....
diff --git a/content/posts/2015/02/11/wall-of-color.md b/content/posts/2015/02/11/wall-of-color.md
new file mode 100644
index 00000000..7d7dfcf6
--- /dev/null
+++ b/content/posts/2015/02/11/wall-of-color.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-11T04:00:00-07:00"
+title = "Wall of Color"
+image = "/wp-content/uploads/2015/02/IMG_1717.jpg"
++++
+
+
diff --git a/content/posts/2015/02/12/floating-lights-effect.md b/content/posts/2015/02/12/floating-lights-effect.md
new file mode 100644
index 00000000..3d805de6
--- /dev/null
+++ b/content/posts/2015/02/12/floating-lights-effect.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-12T04:00:00-07:00"
+title = "Floating Lights Effect"
+image = "/wp-content/uploads/2015/02/IMG_1726.jpg"
++++
+
+
diff --git a/content/posts/2015/02/13/ladybug.md b/content/posts/2015/02/13/ladybug.md
new file mode 100644
index 00000000..9e8727fa
--- /dev/null
+++ b/content/posts/2015/02/13/ladybug.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-13T04:00:00-07:00"
+title = "Ladybug"
+image = "/wp-content/uploads/2015/02/20150207124134.jpg"
++++
+
+
diff --git a/content/posts/2015/02/14/mmm....beer.md b/content/posts/2015/02/14/mmm....beer.md
new file mode 100644
index 00000000..0064ce84
--- /dev/null
+++ b/content/posts/2015/02/14/mmm....beer.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-14T04:00:00-07:00"
+title = "MMM....beer"
+image = "/wp-content/uploads/2015/02/20150210212620.jpg"
++++
+
+
diff --git a/content/posts/2015/02/15/reflections-of-a-tree-ii.md b/content/posts/2015/02/15/reflections-of-a-tree-ii.md
new file mode 100644
index 00000000..3b514809
--- /dev/null
+++ b/content/posts/2015/02/15/reflections-of-a-tree-ii.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-15T04:00:00-07:00"
+title = "Reflections of a Tree II"
+image = "/wp-content/uploads/2015/02/20150210231552.jpg"
++++
+
+
diff --git a/content/posts/2015/02/16/green-light.md b/content/posts/2015/02/16/green-light.md
new file mode 100644
index 00000000..65c41093
--- /dev/null
+++ b/content/posts/2015/02/16/green-light.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-16T04:00:00-07:00"
+title = "Green Light"
+image = "/wp-content/uploads/2015/02/20150210231910.jpg"
++++
+
+
diff --git a/content/posts/2015/02/17/road-side-forest.md b/content/posts/2015/02/17/road-side-forest.md
new file mode 100644
index 00000000..b20b8f60
--- /dev/null
+++ b/content/posts/2015/02/17/road-side-forest.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-17T04:00:00-07:00"
+title = "Road-side Forest"
+image = "/wp-content/uploads/2015/02/20150211133505.jpg"
++++
+
+
diff --git a/content/posts/2015/02/18/arched-room.md b/content/posts/2015/02/18/arched-room.md
new file mode 100644
index 00000000..728ddaee
--- /dev/null
+++ b/content/posts/2015/02/18/arched-room.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-18T04:00:00-07:00"
+title = "Arched Room"
+image = "/wp-content/uploads/2015/02/20150212224337.jpg"
++++
+
+
diff --git a/content/posts/2015/02/19/good-drinks-i.md b/content/posts/2015/02/19/good-drinks-i.md
new file mode 100644
index 00000000..942893d8
--- /dev/null
+++ b/content/posts/2015/02/19/good-drinks-i.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-19T04:00:00-07:00"
+title = "Good Drinks I"
+image = "/wp-content/uploads/2015/02/20150212224516.jpg"
++++
+
+
diff --git a/content/posts/2015/02/20/good-drinks-ii.md b/content/posts/2015/02/20/good-drinks-ii.md
new file mode 100644
index 00000000..5bbd01ae
--- /dev/null
+++ b/content/posts/2015/02/20/good-drinks-ii.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-20T04:00:00-07:00"
+title = "Good Drinks II"
+image = "/wp-content/uploads/2015/02/20150212225431.jpg"
++++
+
+
diff --git a/content/posts/2015/02/21/season-change....md b/content/posts/2015/02/21/season-change....md
new file mode 100644
index 00000000..9514632b
--- /dev/null
+++ b/content/posts/2015/02/21/season-change....md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-21T04:00:00-07:00"
+title = "Season Change..."
+image = "/wp-content/uploads/2015/02/20150215161621.jpg"
++++
+
+
diff --git a/content/posts/2015/02/22/red-lights-on-a-wire.md b/content/posts/2015/02/22/red-lights-on-a-wire.md
new file mode 100644
index 00000000..46b53023
--- /dev/null
+++ b/content/posts/2015/02/22/red-lights-on-a-wire.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-22T04:00:00-07:00"
+title = "Red Lights On A Wire"
+image = "/wp-content/uploads/2015/02/20150222160127.jpg"
++++
+
+
diff --git a/content/posts/2015/02/22/snout.md b/content/posts/2015/02/22/snout.md
new file mode 100644
index 00000000..ea845b72
--- /dev/null
+++ b/content/posts/2015/02/22/snout.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-22T04:00:00-07:00"
+title = "Snout!"
+image = "/wp-content/uploads/2015/02/20150222164105.jpg"
++++
+
+
diff --git a/content/posts/2015/02/23/t-rex-in-new-home.md b/content/posts/2015/02/23/t-rex-in-new-home.md
new file mode 100644
index 00000000..6374069d
--- /dev/null
+++ b/content/posts/2015/02/23/t-rex-in-new-home.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-23T04:00:00-07:00"
+title = "T-Rex in New Home"
+image = "/wp-content/uploads/2015/02/20150222165256.jpg"
++++
+
+
diff --git a/content/posts/2015/02/24/hmns-sugar-land-crystals-i.md b/content/posts/2015/02/24/hmns-sugar-land-crystals-i.md
new file mode 100644
index 00000000..d2326995
--- /dev/null
+++ b/content/posts/2015/02/24/hmns-sugar-land-crystals-i.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-24T04:00:00-07:00"
+title = "HMNS Sugar Land Crystals I"
+image = "/wp-content/uploads/2015/02/20150222171434.jpg"
++++
+
+
diff --git a/content/posts/2015/02/25/hmns-sugar-land-crystals-ii.md b/content/posts/2015/02/25/hmns-sugar-land-crystals-ii.md
new file mode 100644
index 00000000..84f5e511
--- /dev/null
+++ b/content/posts/2015/02/25/hmns-sugar-land-crystals-ii.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-25T04:00:00-07:00"
+title = "HMNS Sugar Land Crystals II"
+image = "/wp-content/uploads/2015/02/20150222171500.jpg"
++++
+
+
diff --git a/content/posts/2015/02/26/hmns-sugar-land-crystals-iii.md b/content/posts/2015/02/26/hmns-sugar-land-crystals-iii.md
new file mode 100644
index 00000000..88bb87d8
--- /dev/null
+++ b/content/posts/2015/02/26/hmns-sugar-land-crystals-iii.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-26T04:00:00-07:00"
+title = "HMNS Sugar Land Crystals III"
+image = "/wp-content/uploads/2015/02/20150222171547.jpg"
++++
+
+
diff --git a/content/posts/2015/02/27/hmns-sugar-land-crystals-iv.md b/content/posts/2015/02/27/hmns-sugar-land-crystals-iv.md
new file mode 100644
index 00000000..26d2b34f
--- /dev/null
+++ b/content/posts/2015/02/27/hmns-sugar-land-crystals-iv.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-27T04:00:00-07:00"
+title = "HMNS Sugar Land Crystals IV"
+image = "/wp-content/uploads/2015/02/20150222171602.jpg"
++++
+
+
diff --git a/content/posts/2015/02/28/hmns-sugar-land-crystals-v.md b/content/posts/2015/02/28/hmns-sugar-land-crystals-v.md
new file mode 100644
index 00000000..76ac7ac2
--- /dev/null
+++ b/content/posts/2015/02/28/hmns-sugar-land-crystals-v.md
@@ -0,0 +1,7 @@
++++
+date = "2015-02-28T04:00:00-07:00"
+title = "HMNS Sugar Land Crystals V"
+image = "/wp-content/uploads/2015/02/20150222171622.jpg"
++++
+
+
diff --git a/content/posts/2015/03/01/hmns-sugar-land-crystals-vi.md b/content/posts/2015/03/01/hmns-sugar-land-crystals-vi.md
new file mode 100644
index 00000000..b3898f16
--- /dev/null
+++ b/content/posts/2015/03/01/hmns-sugar-land-crystals-vi.md
@@ -0,0 +1,7 @@
++++
+date = "2015-03-01T04:00:00-07:00"
+title = "HMNS Sugar Land Crystals VI"
+image = "/wp-content/uploads/2015/03/20150222171854.jpg"
++++
+
+
diff --git a/content/posts/2015/03/02/dino-toys.md b/content/posts/2015/03/02/dino-toys.md
new file mode 100644
index 00000000..08147fa9
--- /dev/null
+++ b/content/posts/2015/03/02/dino-toys.md
@@ -0,0 +1,7 @@
++++
+date = "2015-03-02T04:00:00-07:00"
+title = "Dino Toys!"
+image = "/wp-content/uploads/2015/03/20150222173215.jpg"
++++
+
+
diff --git a/content/posts/2015/05/28/maybe-be-back.md b/content/posts/2015/05/28/maybe-be-back.md
new file mode 100644
index 00000000..ee2cb47a
--- /dev/null
+++ b/content/posts/2015/05/28/maybe-be-back.md
@@ -0,0 +1,8 @@
++++
+date = "2015-05-28T10:13:20-07:00"
+title = "Maybe be back"
+image = ""
++++
+Okay, life got in the way, and I have not had time to deal with this in
+a while. I am going to see about revisiting this over the summer, but do
+not hold your breath. Thanks for you time\...
diff --git a/content/posts/2015/07/19/back-for-now.md b/content/posts/2015/07/19/back-for-now.md
new file mode 100644
index 00000000..11aa0b1e
--- /dev/null
+++ b/content/posts/2015/07/19/back-for-now.md
@@ -0,0 +1,8 @@
++++
+date = "2015-07-19T02:32:44-07:00"
+title = "Back, For Now"
+image = ""
++++
+So, I think I am getting back into this. We shall see. I have a batch
+queued up, and hopefully I will get more in the queue before these run
+out.
diff --git a/content/posts/2015/07/20/lunch-with-a-view.md b/content/posts/2015/07/20/lunch-with-a-view.md
new file mode 100644
index 00000000..9df12aec
--- /dev/null
+++ b/content/posts/2015/07/20/lunch-with-a-view.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-20T04:00:00-07:00"
+title = " Lunch With A View"
+image = "/wp-content/uploads/2015/07/20021208120000.jpg"
++++
+
diff --git a/content/posts/2015/07/21/bookstore-i.md b/content/posts/2015/07/21/bookstore-i.md
new file mode 100644
index 00000000..314a8f94
--- /dev/null
+++ b/content/posts/2015/07/21/bookstore-i.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-21T04:00:00-07:00"
+title = " Bookstore I"
+image = "/wp-content/uploads/2015/07/20150704142306.jpg"
++++
+
diff --git a/content/posts/2015/07/22/bookstore-ii.md b/content/posts/2015/07/22/bookstore-ii.md
new file mode 100644
index 00000000..ec48e1ec
--- /dev/null
+++ b/content/posts/2015/07/22/bookstore-ii.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-22T04:00:00-07:00"
+title = " Bookstore II"
+image = "/wp-content/uploads/2015/07/20150704142714.jpg"
++++
+
diff --git a/content/posts/2015/07/23/bookstore-iii.md b/content/posts/2015/07/23/bookstore-iii.md
new file mode 100644
index 00000000..63855a02
--- /dev/null
+++ b/content/posts/2015/07/23/bookstore-iii.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-23T04:00:00-07:00"
+title = " Bookstore III"
+image = "/wp-content/uploads/2015/07/20150704142941.jpg"
++++
+
diff --git a/content/posts/2015/07/24/bookstore-iv.md b/content/posts/2015/07/24/bookstore-iv.md
new file mode 100644
index 00000000..a3fcb079
--- /dev/null
+++ b/content/posts/2015/07/24/bookstore-iv.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-24T04:00:00-07:00"
+title = " Bookstore IV"
+image = "/wp-content/uploads/2015/07/20150704143004.jpg"
++++
+
diff --git a/content/posts/2015/07/25/building-detail-i.md b/content/posts/2015/07/25/building-detail-i.md
new file mode 100644
index 00000000..625a51b2
--- /dev/null
+++ b/content/posts/2015/07/25/building-detail-i.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-25T04:00:00-07:00"
+title = " Building Detail I"
+image = "/wp-content/uploads/2015/07/20150704144519.jpg"
++++
+
diff --git a/content/posts/2015/07/26/building-detail-ii.md b/content/posts/2015/07/26/building-detail-ii.md
new file mode 100644
index 00000000..15c4dbd2
--- /dev/null
+++ b/content/posts/2015/07/26/building-detail-ii.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-26T04:00:00-07:00"
+title = " Building Detail II"
+image = "/wp-content/uploads/2015/07/20150704144534.jpg"
++++
+
diff --git a/content/posts/2015/07/27/bookstore-v.md b/content/posts/2015/07/27/bookstore-v.md
new file mode 100644
index 00000000..721aecae
--- /dev/null
+++ b/content/posts/2015/07/27/bookstore-v.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-27T04:00:00-07:00"
+title = " Bookstore V"
+image = "/wp-content/uploads/2015/07/20150704144600.jpg"
++++
+
diff --git a/content/posts/2015/07/28/building-detail-iii.md b/content/posts/2015/07/28/building-detail-iii.md
new file mode 100644
index 00000000..7cad9c42
--- /dev/null
+++ b/content/posts/2015/07/28/building-detail-iii.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-28T04:00:00-07:00"
+title = " Building Detail III"
+image = "/wp-content/uploads/2015/07/20150704145036.jpg"
++++
+
diff --git a/content/posts/2015/07/29/carved-tree.md b/content/posts/2015/07/29/carved-tree.md
new file mode 100644
index 00000000..093148f4
--- /dev/null
+++ b/content/posts/2015/07/29/carved-tree.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-29T04:00:00-07:00"
+title = " Carved Tree"
+image = "/wp-content/uploads/2015/07/20150704153847.jpg"
++++
+
diff --git a/content/posts/2015/07/30/olde-phone-booth.md b/content/posts/2015/07/30/olde-phone-booth.md
new file mode 100644
index 00000000..389729a6
--- /dev/null
+++ b/content/posts/2015/07/30/olde-phone-booth.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-30T04:00:00-07:00"
+title = " Olde Phone Booth"
+image = "/wp-content/uploads/2015/07/20150705115058.jpg"
++++
+
diff --git a/content/posts/2015/07/31/galveston-train-station.md b/content/posts/2015/07/31/galveston-train-station.md
new file mode 100644
index 00000000..5e8aab3b
--- /dev/null
+++ b/content/posts/2015/07/31/galveston-train-station.md
@@ -0,0 +1,6 @@
++++
+date = "2015-07-31T04:00:00-07:00"
+title = " Galveston Train Station"
+image = "/wp-content/uploads/2015/07/20150705115117.jpg"
++++
+
diff --git a/content/posts/2015/08/01/working-in-time.md b/content/posts/2015/08/01/working-in-time.md
new file mode 100644
index 00000000..6da21fd9
--- /dev/null
+++ b/content/posts/2015/08/01/working-in-time.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-01T04:00:00-07:00"
+title = " Working In Time"
+image = "/wp-content/uploads/2015/08/20150705115416.jpg"
++++
+
diff --git a/content/posts/2015/08/02/benches-forever-ready.md b/content/posts/2015/08/02/benches-forever-ready.md
new file mode 100644
index 00000000..ce5c5da1
--- /dev/null
+++ b/content/posts/2015/08/02/benches-forever-ready.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-02T04:00:00-07:00"
+title = " Benches Forever Ready"
+image = "/wp-content/uploads/2015/08/20150705115428.jpg"
++++
+
diff --git a/content/posts/2015/08/03/olde-tyme-pay-phone.md b/content/posts/2015/08/03/olde-tyme-pay-phone.md
new file mode 100644
index 00000000..2a3a5cb0
--- /dev/null
+++ b/content/posts/2015/08/03/olde-tyme-pay-phone.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-03T04:00:00-07:00"
+title = " Olde Tyme Pay Phone"
+image = "/wp-content/uploads/2015/08/20150705115553.jpg"
++++
+
diff --git a/content/posts/2015/08/04/bonnet-warrior-no.-315.md b/content/posts/2015/08/04/bonnet-warrior-no.-315.md
new file mode 100644
index 00000000..43a3a9d4
--- /dev/null
+++ b/content/posts/2015/08/04/bonnet-warrior-no.-315.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-04T04:00:00-07:00"
+title = " Bonnet Warrior No. 315"
+image = "/wp-content/uploads/2015/08/20150705120816.jpg"
++++
+
diff --git a/content/posts/2015/08/05/coupling.md b/content/posts/2015/08/05/coupling.md
new file mode 100644
index 00000000..3af992a5
--- /dev/null
+++ b/content/posts/2015/08/05/coupling.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-05T04:00:00-07:00"
+title = " Coupling"
+image = "/wp-content/uploads/2015/08/20150705121513.jpg"
++++
+
diff --git a/content/posts/2015/08/06/sp-stainless.md b/content/posts/2015/08/06/sp-stainless.md
new file mode 100644
index 00000000..581c1ccd
--- /dev/null
+++ b/content/posts/2015/08/06/sp-stainless.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-06T04:00:00-07:00"
+title = " SP Stainless"
+image = "/wp-content/uploads/2015/08/20150705122327.jpg"
++++
+
diff --git a/content/posts/2015/08/07/engine-needs-love.md b/content/posts/2015/08/07/engine-needs-love.md
new file mode 100644
index 00000000..77583068
--- /dev/null
+++ b/content/posts/2015/08/07/engine-needs-love.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-07T04:00:00-07:00"
+title = " Engine Needs Love"
+image = "/wp-content/uploads/2015/08/20150705122436.jpg"
++++
+
diff --git a/content/posts/2015/08/08/nighttime-model.md b/content/posts/2015/08/08/nighttime-model.md
new file mode 100644
index 00000000..6dd6602c
--- /dev/null
+++ b/content/posts/2015/08/08/nighttime-model.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-08T04:00:00-07:00"
+title = " Nighttime Model"
+image = "/wp-content/uploads/2015/08/20150705123935.jpg"
++++
+
diff --git a/content/posts/2015/08/09/view-from-room.md b/content/posts/2015/08/09/view-from-room.md
new file mode 100644
index 00000000..f4185760
--- /dev/null
+++ b/content/posts/2015/08/09/view-from-room.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-09T04:00:00-07:00"
+title = " View From Room"
+image = "/wp-content/uploads/2015/08/20150706080810.jpg"
++++
+
diff --git a/content/posts/2015/08/10/crabs.md b/content/posts/2015/08/10/crabs.md
new file mode 100644
index 00000000..88ba2fd5
--- /dev/null
+++ b/content/posts/2015/08/10/crabs.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-10T04:00:00-07:00"
+title = " Crabs!"
+image = "/wp-content/uploads/2015/08/20150706092540.jpg"
++++
+
diff --git a/content/posts/2015/08/11/elissa-rigging-i.md b/content/posts/2015/08/11/elissa-rigging-i.md
new file mode 100644
index 00000000..84694ad6
--- /dev/null
+++ b/content/posts/2015/08/11/elissa-rigging-i.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-11T04:00:00-07:00"
+title = " Elissa Rigging I"
+image = "/wp-content/uploads/2015/08/20150706135619.jpg"
++++
+
diff --git a/content/posts/2015/08/12/brown-pelican-in-flight.md b/content/posts/2015/08/12/brown-pelican-in-flight.md
new file mode 100644
index 00000000..ef8ab510
--- /dev/null
+++ b/content/posts/2015/08/12/brown-pelican-in-flight.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-12T04:00:00-07:00"
+title = " Brown Pelican In Flight"
+image = "/wp-content/uploads/2015/08/20150706145430.jpg"
++++
+
diff --git a/content/posts/2015/08/13/dolphin.md b/content/posts/2015/08/13/dolphin.md
new file mode 100644
index 00000000..5a515bf2
--- /dev/null
+++ b/content/posts/2015/08/13/dolphin.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-13T04:00:00-07:00"
+title = " Dolphin!"
+image = "/wp-content/uploads/2015/08/20150706151037.jpg"
++++
+
diff --git a/content/posts/2015/08/14/another-dolphin.md b/content/posts/2015/08/14/another-dolphin.md
new file mode 100644
index 00000000..f1bdee40
--- /dev/null
+++ b/content/posts/2015/08/14/another-dolphin.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-14T04:00:00-07:00"
+title = " Another Dolphin!"
+image = "/wp-content/uploads/2015/08/20150706151222.jpg"
++++
+
diff --git a/content/posts/2015/08/15/elissa-rigging-ii.md b/content/posts/2015/08/15/elissa-rigging-ii.md
new file mode 100644
index 00000000..db9768e2
--- /dev/null
+++ b/content/posts/2015/08/15/elissa-rigging-ii.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-15T04:00:00-07:00"
+title = " Elissa Rigging II"
+image = "/wp-content/uploads/2015/08/20150706153259.jpg"
++++
+
diff --git a/content/posts/2015/08/16/elissa-rigging-iii.md b/content/posts/2015/08/16/elissa-rigging-iii.md
new file mode 100644
index 00000000..4df5ef1e
--- /dev/null
+++ b/content/posts/2015/08/16/elissa-rigging-iii.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-16T04:00:00-07:00"
+title = " Elissa Rigging III"
+image = "/wp-content/uploads/2015/08/20150706153442.jpg"
++++
+
diff --git a/content/posts/2015/08/17/elissa-rigging-iv.md b/content/posts/2015/08/17/elissa-rigging-iv.md
new file mode 100644
index 00000000..85c41b0c
--- /dev/null
+++ b/content/posts/2015/08/17/elissa-rigging-iv.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-17T04:00:00-07:00"
+title = " Elissa Rigging IV"
+image = "/wp-content/uploads/2015/08/20150706153812.jpg"
++++
+
diff --git a/content/posts/2015/08/18/elissa-rigging-v.md b/content/posts/2015/08/18/elissa-rigging-v.md
new file mode 100644
index 00000000..1d6730a3
--- /dev/null
+++ b/content/posts/2015/08/18/elissa-rigging-v.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-18T04:00:00-07:00"
+title = " Elissa Rigging V"
+image = "/wp-content/uploads/2015/08/20150706153925.jpg"
++++
+
diff --git a/content/posts/2015/08/19/elissa-rigging-vi.md b/content/posts/2015/08/19/elissa-rigging-vi.md
new file mode 100644
index 00000000..250e3527
--- /dev/null
+++ b/content/posts/2015/08/19/elissa-rigging-vi.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-19T04:00:00-07:00"
+title = " Elissa Rigging VI"
+image = "/wp-content/uploads/2015/08/20150706153938.jpg"
++++
+
diff --git a/content/posts/2015/08/20/elissa-rigging-vii.md b/content/posts/2015/08/20/elissa-rigging-vii.md
new file mode 100644
index 00000000..09905eea
--- /dev/null
+++ b/content/posts/2015/08/20/elissa-rigging-vii.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-20T04:00:00-07:00"
+title = " Elissa Rigging VII"
+image = "/wp-content/uploads/2015/08/20150706154152.jpg"
++++
+
diff --git a/content/posts/2015/08/21/watching-the-waves.md b/content/posts/2015/08/21/watching-the-waves.md
new file mode 100644
index 00000000..92cbf735
--- /dev/null
+++ b/content/posts/2015/08/21/watching-the-waves.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-21T04:00:00-07:00"
+title = " Watching The Waves"
+image = "/wp-content/uploads/2015/08/20150707110811.jpg"
++++
+
diff --git a/content/posts/2015/08/22/under-the-sea.md b/content/posts/2015/08/22/under-the-sea.md
new file mode 100644
index 00000000..89976a89
--- /dev/null
+++ b/content/posts/2015/08/22/under-the-sea.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-22T04:00:00-07:00"
+title = " Under The Sea"
+image = "/wp-content/uploads/2015/08/20150707141537.jpg"
++++
+
diff --git a/content/posts/2015/08/23/building-detail-iv.md b/content/posts/2015/08/23/building-detail-iv.md
new file mode 100644
index 00000000..0f8c0b91
--- /dev/null
+++ b/content/posts/2015/08/23/building-detail-iv.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-23T04:00:00-07:00"
+title = " Building Detail IV"
+image = "/wp-content/uploads/2015/08/20150708123602.jpg"
++++
+
diff --git a/content/posts/2015/08/24/watermelon-candy-slices.md b/content/posts/2015/08/24/watermelon-candy-slices.md
new file mode 100644
index 00000000..9afddc62
--- /dev/null
+++ b/content/posts/2015/08/24/watermelon-candy-slices.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-24T04:00:00-07:00"
+title = " Watermelon Candy Slices"
+image = "/wp-content/uploads/2015/08/20150708134205.jpg"
++++
+
diff --git a/content/posts/2015/08/25/black-cherry-candy-slices.md b/content/posts/2015/08/25/black-cherry-candy-slices.md
new file mode 100644
index 00000000..aaf214b2
--- /dev/null
+++ b/content/posts/2015/08/25/black-cherry-candy-slices.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-25T04:00:00-07:00"
+title = " Black Cherry Candy Slices"
+image = "/wp-content/uploads/2015/08/20150708134213.jpg"
++++
+
diff --git a/content/posts/2015/08/26/soda-fountain-bar-back.md b/content/posts/2015/08/26/soda-fountain-bar-back.md
new file mode 100644
index 00000000..29b63fb0
--- /dev/null
+++ b/content/posts/2015/08/26/soda-fountain-bar-back.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-26T04:00:00-07:00"
+title = " Soda Fountain Bar Back"
+image = "/wp-content/uploads/2015/08/20150708134856.jpg"
++++
+
diff --git a/content/posts/2015/08/27/ice-cream.md b/content/posts/2015/08/27/ice-cream.md
new file mode 100644
index 00000000..542be9da
--- /dev/null
+++ b/content/posts/2015/08/27/ice-cream.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-27T04:00:00-07:00"
+title = " Ice Cream"
+image = "/wp-content/uploads/2015/08/20150708135001.jpg"
++++
+
diff --git a/content/posts/2015/08/28/happy-mouse.md b/content/posts/2015/08/28/happy-mouse.md
new file mode 100644
index 00000000..f3461da5
--- /dev/null
+++ b/content/posts/2015/08/28/happy-mouse.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-28T04:00:00-07:00"
+title = " Happy Mouse"
+image = "/wp-content/uploads/2015/08/20150708141403.jpg"
++++
+
diff --git a/content/posts/2015/08/29/powerfull-distance.md b/content/posts/2015/08/29/powerfull-distance.md
new file mode 100644
index 00000000..d675f1be
--- /dev/null
+++ b/content/posts/2015/08/29/powerfull-distance.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-29T04:00:00-07:00"
+title = " Powerfull Distance"
+image = "/wp-content/uploads/2015/08/20150803074118.jpg"
++++
+
diff --git a/content/posts/2015/08/31/swing.md b/content/posts/2015/08/31/swing.md
new file mode 100644
index 00000000..aecbfdf5
--- /dev/null
+++ b/content/posts/2015/08/31/swing.md
@@ -0,0 +1,6 @@
++++
+date = "2015-08-31T04:00:00-07:00"
+title = " Swing"
+image = "/wp-content/uploads/2015/08/20150809193454.jpg"
++++
+
diff --git a/content/posts/2015/09/01/houston-graffiti-i.md b/content/posts/2015/09/01/houston-graffiti-i.md
new file mode 100644
index 00000000..59e23910
--- /dev/null
+++ b/content/posts/2015/09/01/houston-graffiti-i.md
@@ -0,0 +1,6 @@
++++
+date = "2015-09-01T04:00:00-07:00"
+title = " Houston Graffiti I"
+image = "/wp-content/uploads/2015/09/20150810174519.jpg"
++++
+
diff --git a/content/posts/2015/09/02/houston-graffiti-ii.md b/content/posts/2015/09/02/houston-graffiti-ii.md
new file mode 100644
index 00000000..31d3f25c
--- /dev/null
+++ b/content/posts/2015/09/02/houston-graffiti-ii.md
@@ -0,0 +1,6 @@
++++
+date = "2015-09-02T04:00:00-07:00"
+title = " Houston Graffiti II"
+image = "/wp-content/uploads/2015/09/20150810174538.jpg"
++++
+
diff --git a/content/posts/2015/09/03/long-wait.md b/content/posts/2015/09/03/long-wait.md
new file mode 100644
index 00000000..eef05e93
--- /dev/null
+++ b/content/posts/2015/09/03/long-wait.md
@@ -0,0 +1,6 @@
++++
+date = "2015-09-03T04:00:00-07:00"
+title = " Long Wait"
+image = "/wp-content/uploads/2015/09/20150811180411.jpg"
++++
+
diff --git a/content/posts/2015/09/04/sun-and-clouds.md b/content/posts/2015/09/04/sun-and-clouds.md
new file mode 100644
index 00000000..7673d41b
--- /dev/null
+++ b/content/posts/2015/09/04/sun-and-clouds.md
@@ -0,0 +1,6 @@
++++
+date = "2015-09-04T04:00:00-07:00"
+title = " Sun and Clouds"
+image = "/wp-content/uploads/2015/09/20150813074407.jpg"
++++
+
diff --git a/content/posts/2015/09/05/sunlight-through-trees.md b/content/posts/2015/09/05/sunlight-through-trees.md
new file mode 100644
index 00000000..08856872
--- /dev/null
+++ b/content/posts/2015/09/05/sunlight-through-trees.md
@@ -0,0 +1,6 @@
++++
+date = "2015-09-05T04:00:00-07:00"
+title = " Sunlight Through Trees"
+image = "/wp-content/uploads/2015/09/20150815102011.jpg"
++++
+
diff --git a/content/posts/2018/12/19/hanging-orniment.md b/content/posts/2018/12/19/hanging-orniment.md
new file mode 100644
index 00000000..501f6dab
--- /dev/null
+++ b/content/posts/2018/12/19/hanging-orniment.md
@@ -0,0 +1,6 @@
++++
+date = "2018-12-19T15:25:00-07:00"
+title = "Hanging Orniment"
+image = "/wp-content/uploads/2018/12/20181112114249.jpg"
++++
+
diff --git a/content/posts/2018/12/20/stone-elephant.md b/content/posts/2018/12/20/stone-elephant.md
new file mode 100644
index 00000000..92444528
--- /dev/null
+++ b/content/posts/2018/12/20/stone-elephant.md
@@ -0,0 +1,6 @@
++++
+date = "2018-12-20T15:25:00-07:00"
+title = "Stone Elephant"
+image = "/wp-content/uploads/2018/12/20181209182208.jpg"
++++
+
diff --git a/content/posts/2018/12/26/and-now-for-something-new.md b/content/posts/2018/12/26/and-now-for-something-new.md
new file mode 100644
index 00000000..b8650c16
--- /dev/null
+++ b/content/posts/2018/12/26/and-now-for-something-new.md
@@ -0,0 +1,10 @@
++++
+date = "2018-12-26T21:54:42-07:00"
+title = "And now, for something new"
+image = ""
++++
+
+
+Well, since it is almost 2019, I think it is time to revisit this little blog.
+
+This time around, I am commiting only to be posting something once a week. I hope with this cadence that the output will be much higher. I may (and probably will) post a bit more often than that, but no promises. And, after over three years of no updates, you get what you get. :)
diff --git a/content/posts/2019/01/05/p52-1.md b/content/posts/2019/01/05/p52-1.md
new file mode 100644
index 00000000..311a732e
--- /dev/null
+++ b/content/posts/2019/01/05/p52-1.md
@@ -0,0 +1,6 @@
++++
+date = "2019-01-05T10:05:00-07:00"
+title = "P52-1 : Butterfly"
+image = "/wp-content/uploads/2019/01/20190101182342.jpg"
++++
+
diff --git a/content/posts/2019/01/11/p52-2.md b/content/posts/2019/01/11/p52-2.md
new file mode 100644
index 00000000..c1b0e0d0
--- /dev/null
+++ b/content/posts/2019/01/11/p52-2.md
@@ -0,0 +1,6 @@
++++
+date = "2019-01-11T22:05:00-07:00"
+title = "P52-2 : Power Colors"
+image = "/wp-content/uploads/2019/01/20190109065804.jpg"
++++
+
diff --git a/content/posts/2019/01/17/p52-3.md b/content/posts/2019/01/17/p52-3.md
new file mode 100644
index 00000000..8e189265
--- /dev/null
+++ b/content/posts/2019/01/17/p52-3.md
@@ -0,0 +1,6 @@
++++
+date = "2019-01-17T22:05:00-07:00"
+title = "P52-3 : Oil Rig Sign"
+image = "/wp-content/uploads/2019/01/20190117074054.jpg"
++++
+
diff --git a/content/posts/2019/01/26/p52-4.md b/content/posts/2019/01/26/p52-4.md
new file mode 100644
index 00000000..3489be45
--- /dev/null
+++ b/content/posts/2019/01/26/p52-4.md
@@ -0,0 +1,6 @@
++++
+date = "2019-01-26T11:02:00-07:00"
+title = "P52-4 : Friday Sunrise"
+image = "/wp-content/uploads/2019/01/20190125075731.jpg"
++++
+
diff --git a/content/posts/2019/02/02/p52-5-devil-duck-sitting-pretty.md b/content/posts/2019/02/02/p52-5-devil-duck-sitting-pretty.md
new file mode 100644
index 00000000..0c8e5aad
--- /dev/null
+++ b/content/posts/2019/02/02/p52-5-devil-duck-sitting-pretty.md
@@ -0,0 +1,6 @@
++++
+date = "2019-02-02T04:00:00-07:00"
+title = "P52-5 : Devil Duck Sitting Pretty"
+image = "/wp-content/uploads/2019/02/20190126141820.jpg"
++++
+
diff --git a/content/posts/2019/02/09/p52-6-i-see-you.md b/content/posts/2019/02/09/p52-6-i-see-you.md
new file mode 100644
index 00000000..7a9fa689
--- /dev/null
+++ b/content/posts/2019/02/09/p52-6-i-see-you.md
@@ -0,0 +1,6 @@
++++
+date = "2019-02-09T04:00:00-07:00"
+title = "P52-6 : I See You"
+image = "/wp-content/uploads/2019/02/20190202144335.jpg"
++++
+
diff --git a/content/posts/2019/02/15/p52-6-royal-legos.md b/content/posts/2019/02/15/p52-6-royal-legos.md
new file mode 100644
index 00000000..4132931c
--- /dev/null
+++ b/content/posts/2019/02/15/p52-6-royal-legos.md
@@ -0,0 +1,6 @@
++++
+date = "2019-02-15T04:00:00-07:00"
+title = "P52-6 : Royal Legos"
+image = "/wp-content/uploads/2019/02/20190210154207.jpg"
++++
+
diff --git a/content/posts/2019/02/22/p52-7-reflections-from-the-roots.md b/content/posts/2019/02/22/p52-7-reflections-from-the-roots.md
new file mode 100644
index 00000000..2770192e
--- /dev/null
+++ b/content/posts/2019/02/22/p52-7-reflections-from-the-roots.md
@@ -0,0 +1,6 @@
++++
+date = "2019-02-22T04:00:00-07:00"
+title = "P52-7 : Reflections from the Roots"
+image = "/wp-content/uploads/2019/02/20190221154455.jpg"
++++
+
diff --git a/content/posts/2019/03/01/p52-8-duck.md b/content/posts/2019/03/01/p52-8-duck.md
new file mode 100644
index 00000000..a8fdbabd
--- /dev/null
+++ b/content/posts/2019/03/01/p52-8-duck.md
@@ -0,0 +1,6 @@
++++
+date = "2019-03-01T04:00:00-07:00"
+title = "P52-8 : Duck!"
+image = "/wp-content/uploads/2019/03/20190228184848.jpg"
++++
+
diff --git a/content/posts/2019/03/08/p52-9-lost-reminder.md b/content/posts/2019/03/08/p52-9-lost-reminder.md
new file mode 100644
index 00000000..437b386c
--- /dev/null
+++ b/content/posts/2019/03/08/p52-9-lost-reminder.md
@@ -0,0 +1,6 @@
++++
+date = "2019-03-08T04:00:00-07:00"
+title = "P52-9 : Lost Reminder"
+image = "/wp-content/uploads/2019/03/20190307075921.jpg"
++++
+
diff --git a/content/posts/2019/03/15/p52-10-small-devil-duck.md b/content/posts/2019/03/15/p52-10-small-devil-duck.md
new file mode 100644
index 00000000..52920250
--- /dev/null
+++ b/content/posts/2019/03/15/p52-10-small-devil-duck.md
@@ -0,0 +1,6 @@
++++
+date = "2019-03-15T04:00:00-07:00"
+title = "P52-10 : Small Devil Duck"
+image = "/wp-content/uploads/2019/03/20190312085038.jpg"
++++
+
diff --git a/content/posts/2019/03/22/p52-11-let-sleeping-ducks-lie.md b/content/posts/2019/03/22/p52-11-let-sleeping-ducks-lie.md
new file mode 100644
index 00000000..b0bcadcb
--- /dev/null
+++ b/content/posts/2019/03/22/p52-11-let-sleeping-ducks-lie.md
@@ -0,0 +1,6 @@
++++
+date = "2019-03-22T04:00:00-07:00"
+title = "P52-11 : Let Sleeping Ducks Lie"
+image = "/wp-content/uploads/2019/03/20190316160220.jpg"
++++
+
diff --git a/content/posts/2019/03/29/p52-13-tiny-duck,-big-universe.md b/content/posts/2019/03/29/p52-13-tiny-duck,-big-universe.md
new file mode 100644
index 00000000..845d0828
--- /dev/null
+++ b/content/posts/2019/03/29/p52-13-tiny-duck,-big-universe.md
@@ -0,0 +1,6 @@
++++
+date = "2019-03-29T04:00:00-07:00"
+title = "P52-13 : Tiny Duck, Big Universe"
+image = "/wp-content/uploads/2019/03/20190323155127218.jpg"
++++
+
diff --git a/content/posts/2019/04/04/p52-13-reflections-of-parking.md b/content/posts/2019/04/04/p52-13-reflections-of-parking.md
new file mode 100644
index 00000000..21c24948
--- /dev/null
+++ b/content/posts/2019/04/04/p52-13-reflections-of-parking.md
@@ -0,0 +1,6 @@
++++
+date = "2019-04-04T04:00:00-07:00"
+title = "P52-13 : Reflections of Parking"
+image = "/wp-content/uploads/2019/04/20190404114452.jpg"
++++
+
diff --git a/content/posts/2019/04/12/p52-14-coreopsis-and-friend.md b/content/posts/2019/04/12/p52-14-coreopsis-and-friend.md
new file mode 100644
index 00000000..e205a3f3
--- /dev/null
+++ b/content/posts/2019/04/12/p52-14-coreopsis-and-friend.md
@@ -0,0 +1,6 @@
++++
+date = "2019-04-12T04:00:00-07:00"
+title = "P52-14 : Coreopsis and Friend"
+image = "/wp-content/uploads/2019/04/20190412150030.jpg"
++++
+
diff --git a/content/posts/2019/04/18/p52-15-sunrise-through-trees.md b/content/posts/2019/04/18/p52-15-sunrise-through-trees.md
new file mode 100644
index 00000000..8f59a279
--- /dev/null
+++ b/content/posts/2019/04/18/p52-15-sunrise-through-trees.md
@@ -0,0 +1,6 @@
++++
+date = "2019-04-18T04:00:00-07:00"
+title = "P52-15 : Sunrise Through Trees"
+image = "/wp-content/uploads/2019/04/20190414070453.jpg"
++++
+
diff --git a/content/posts/2019/04/26/p52-16-cow-and-tailgate.md b/content/posts/2019/04/26/p52-16-cow-and-tailgate.md
new file mode 100644
index 00000000..5b16cbd2
--- /dev/null
+++ b/content/posts/2019/04/26/p52-16-cow-and-tailgate.md
@@ -0,0 +1,6 @@
++++
+date = "2019-04-26T04:00:00-07:00"
+title = "P52-16 : Cow and Tailgate"
+image = "/wp-content/uploads/2019/04/20190421083848.jpg"
++++
+
diff --git a/content/posts/2019/05/03/p52-17-exploration-in-monocolor.md b/content/posts/2019/05/03/p52-17-exploration-in-monocolor.md
new file mode 100644
index 00000000..e838e06e
--- /dev/null
+++ b/content/posts/2019/05/03/p52-17-exploration-in-monocolor.md
@@ -0,0 +1,6 @@
++++
+date = "2019-05-03T04:00:00-07:00"
+title = "P52-17 : Exploration in monocolor"
+image = "/wp-content/uploads/2019/05/20190430074526.jpg"
++++
+
diff --git a/content/posts/2019/05/10/p52-18-blanket-flower.md b/content/posts/2019/05/10/p52-18-blanket-flower.md
new file mode 100644
index 00000000..06f7c636
--- /dev/null
+++ b/content/posts/2019/05/10/p52-18-blanket-flower.md
@@ -0,0 +1,6 @@
++++
+date = "2019-05-10T04:00:00-07:00"
+title = "P52-18 : Blanket Flower"
+image = "/wp-content/uploads/2019/05/20190510143759.jpg"
++++
+
diff --git a/content/posts/2019/05/17/p52-19-lots-of-dice.md b/content/posts/2019/05/17/p52-19-lots-of-dice.md
new file mode 100644
index 00000000..e4cc7ab1
--- /dev/null
+++ b/content/posts/2019/05/17/p52-19-lots-of-dice.md
@@ -0,0 +1,6 @@
++++
+date = "2019-05-17T04:00:00-07:00"
+title = "P52-19 : Lots of dice"
+image = "/wp-content/uploads/2019/05/20190511110636.jpg"
++++
+
diff --git a/content/posts/2019/05/24/p52-20-mckinney-falls.md b/content/posts/2019/05/24/p52-20-mckinney-falls.md
new file mode 100644
index 00000000..fc39cb18
--- /dev/null
+++ b/content/posts/2019/05/24/p52-20-mckinney-falls.md
@@ -0,0 +1,6 @@
++++
+date = "2019-05-24T04:00:00-07:00"
+title = "P52-20 : McKinney Falls"
+image = "/wp-content/uploads/2019/05/20190518120737.jpg"
++++
+
diff --git a/content/posts/2019/05/31/p52-21-blanket-flower.md b/content/posts/2019/05/31/p52-21-blanket-flower.md
new file mode 100644
index 00000000..52464f4a
--- /dev/null
+++ b/content/posts/2019/05/31/p52-21-blanket-flower.md
@@ -0,0 +1,6 @@
++++
+date = "2019-05-31T04:00:00-07:00"
+title = "P52-21 : Blanket Flower"
+image = "/wp-content/uploads/2019/05/20190531072716106561.jpg"
++++
+
diff --git a/content/stories/about.md b/content/stories/about.md
new file mode 100644
index 00000000..acc51d22
--- /dev/null
+++ b/content/stories/about.md
@@ -0,0 +1,5 @@
+Hello there. My name is Donald Harper, and I take photographs. My main camera right now is an Olympus OMD-5. I also shoot with my Google Pixel 2 phone, my Canon compact, and a Pansonic compact.
+
+My work-flow is all Linux, all the time. A lot of the photos on here have been processes with Gimp and/or Picasa for Linux, but as of May 2012, I am using Corel's Aftershot Pro. Then, in late May 2019, I switched to using Darktable for a full FOSS workflow, besides the cameras.
+
+If you like my work, drop me a line at . I hope you enjoy your stay.
diff --git a/stories/privacy.md b/content/stories/privacy.md
similarity index 100%
rename from stories/privacy.md
rename to content/stories/privacy.md
diff --git a/content/wp-content/uploads/2007/02/P2069947.JPG b/content/wp-content/uploads/2007/02/P2069947.JPG
new file mode 100644
index 00000000..e69de29b
diff --git a/content/wp-content/uploads/2007/02/devil-toy-1.JPG b/content/wp-content/uploads/2007/02/devil-toy-1.JPG
new file mode 100644
index 00000000..e69de29b
diff --git a/content/wp-content/uploads/2007/03/P31405001.jpg b/content/wp-content/uploads/2007/03/P31405001.jpg
new file mode 100644
index 00000000..e69de29b
diff --git a/files/wp-content/uploads/2010/01/P9163792-2-edit-150x150.jpg b/content/wp-content/uploads/2010/01/P9163792-2-edit-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163792-2-edit-150x150.jpg
rename to content/wp-content/uploads/2010/01/P9163792-2-edit-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163792-2-edit-284x300.jpg b/content/wp-content/uploads/2010/01/P9163792-2-edit-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163792-2-edit-284x300.jpg
rename to content/wp-content/uploads/2010/01/P9163792-2-edit-284x300.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163792-2-edit-568x600.jpg b/content/wp-content/uploads/2010/01/P9163792-2-edit-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163792-2-edit-568x600.jpg
rename to content/wp-content/uploads/2010/01/P9163792-2-edit-568x600.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163792-2-edit.jpg b/content/wp-content/uploads/2010/01/P9163792-2-edit.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163792-2-edit.jpg
rename to content/wp-content/uploads/2010/01/P9163792-2-edit.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163796-2-edit-150x150.jpg b/content/wp-content/uploads/2010/01/P9163796-2-edit-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163796-2-edit-150x150.jpg
rename to content/wp-content/uploads/2010/01/P9163796-2-edit-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163796-2-edit-284x300.jpg b/content/wp-content/uploads/2010/01/P9163796-2-edit-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163796-2-edit-284x300.jpg
rename to content/wp-content/uploads/2010/01/P9163796-2-edit-284x300.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163796-2-edit-568x600.jpg b/content/wp-content/uploads/2010/01/P9163796-2-edit-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163796-2-edit-568x600.jpg
rename to content/wp-content/uploads/2010/01/P9163796-2-edit-568x600.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163796-2-edit.jpg b/content/wp-content/uploads/2010/01/P9163796-2-edit.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163796-2-edit.jpg
rename to content/wp-content/uploads/2010/01/P9163796-2-edit.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163801-2-edit-150x150.jpg b/content/wp-content/uploads/2010/01/P9163801-2-edit-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163801-2-edit-150x150.jpg
rename to content/wp-content/uploads/2010/01/P9163801-2-edit-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163801-2-edit-284x300.jpg b/content/wp-content/uploads/2010/01/P9163801-2-edit-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163801-2-edit-284x300.jpg
rename to content/wp-content/uploads/2010/01/P9163801-2-edit-284x300.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163801-2-edit-568x600.jpg b/content/wp-content/uploads/2010/01/P9163801-2-edit-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163801-2-edit-568x600.jpg
rename to content/wp-content/uploads/2010/01/P9163801-2-edit-568x600.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163801-2-edit.jpg b/content/wp-content/uploads/2010/01/P9163801-2-edit.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163801-2-edit.jpg
rename to content/wp-content/uploads/2010/01/P9163801-2-edit.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163804-1-edit-150x150.jpg b/content/wp-content/uploads/2010/01/P9163804-1-edit-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163804-1-edit-150x150.jpg
rename to content/wp-content/uploads/2010/01/P9163804-1-edit-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163804-1-edit-285x300.jpg b/content/wp-content/uploads/2010/01/P9163804-1-edit-285x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163804-1-edit-285x300.jpg
rename to content/wp-content/uploads/2010/01/P9163804-1-edit-285x300.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163804-1-edit-570x600.jpg b/content/wp-content/uploads/2010/01/P9163804-1-edit-570x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163804-1-edit-570x600.jpg
rename to content/wp-content/uploads/2010/01/P9163804-1-edit-570x600.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163804-1-edit.jpg b/content/wp-content/uploads/2010/01/P9163804-1-edit.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163804-1-edit.jpg
rename to content/wp-content/uploads/2010/01/P9163804-1-edit.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163818-1-edit-150x150.jpg b/content/wp-content/uploads/2010/01/P9163818-1-edit-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163818-1-edit-150x150.jpg
rename to content/wp-content/uploads/2010/01/P9163818-1-edit-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163818-1-edit-284x300.jpg b/content/wp-content/uploads/2010/01/P9163818-1-edit-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163818-1-edit-284x300.jpg
rename to content/wp-content/uploads/2010/01/P9163818-1-edit-284x300.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163818-1-edit-568x600.jpg b/content/wp-content/uploads/2010/01/P9163818-1-edit-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163818-1-edit-568x600.jpg
rename to content/wp-content/uploads/2010/01/P9163818-1-edit-568x600.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163818-1-edit.jpg b/content/wp-content/uploads/2010/01/P9163818-1-edit.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163818-1-edit.jpg
rename to content/wp-content/uploads/2010/01/P9163818-1-edit.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163828-2-edit-150x150.jpg b/content/wp-content/uploads/2010/01/P9163828-2-edit-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163828-2-edit-150x150.jpg
rename to content/wp-content/uploads/2010/01/P9163828-2-edit-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163828-2-edit-284x300.jpg b/content/wp-content/uploads/2010/01/P9163828-2-edit-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163828-2-edit-284x300.jpg
rename to content/wp-content/uploads/2010/01/P9163828-2-edit-284x300.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163828-2-edit-568x600.jpg b/content/wp-content/uploads/2010/01/P9163828-2-edit-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163828-2-edit-568x600.jpg
rename to content/wp-content/uploads/2010/01/P9163828-2-edit-568x600.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163828-2-edit.jpg b/content/wp-content/uploads/2010/01/P9163828-2-edit.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163828-2-edit.jpg
rename to content/wp-content/uploads/2010/01/P9163828-2-edit.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163857-1-edit-150x150.jpg b/content/wp-content/uploads/2010/01/P9163857-1-edit-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163857-1-edit-150x150.jpg
rename to content/wp-content/uploads/2010/01/P9163857-1-edit-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163857-1-edit-284x300.jpg b/content/wp-content/uploads/2010/01/P9163857-1-edit-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163857-1-edit-284x300.jpg
rename to content/wp-content/uploads/2010/01/P9163857-1-edit-284x300.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163857-1-edit-568x600.jpg b/content/wp-content/uploads/2010/01/P9163857-1-edit-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163857-1-edit-568x600.jpg
rename to content/wp-content/uploads/2010/01/P9163857-1-edit-568x600.jpg
diff --git a/files/wp-content/uploads/2010/01/P9163857-1-edit.jpg b/content/wp-content/uploads/2010/01/P9163857-1-edit.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/P9163857-1-edit.jpg
rename to content/wp-content/uploads/2010/01/P9163857-1-edit.jpg
diff --git a/files/wp-content/uploads/2010/01/PB076354-edit1-150x150.jpg b/content/wp-content/uploads/2010/01/PB076354-edit1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/PB076354-edit1-150x150.jpg
rename to content/wp-content/uploads/2010/01/PB076354-edit1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/PB076354-edit1-300x246.jpg b/content/wp-content/uploads/2010/01/PB076354-edit1-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/PB076354-edit1-300x246.jpg
rename to content/wp-content/uploads/2010/01/PB076354-edit1-300x246.jpg
diff --git a/files/wp-content/uploads/2010/01/PB076354-edit1-731x600.jpg b/content/wp-content/uploads/2010/01/PB076354-edit1-731x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/PB076354-edit1-731x600.jpg
rename to content/wp-content/uploads/2010/01/PB076354-edit1-731x600.jpg
diff --git a/files/wp-content/uploads/2010/01/PB076354-edit1.jpg b/content/wp-content/uploads/2010/01/PB076354-edit1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/PB076354-edit1.jpg
rename to content/wp-content/uploads/2010/01/PB076354-edit1.jpg
diff --git a/files/wp-content/uploads/2010/01/img_7037-11-150x150.jpg b/content/wp-content/uploads/2010/01/img_7037-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/img_7037-11-150x150.jpg
rename to content/wp-content/uploads/2010/01/img_7037-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/img_7037-11-300x222.jpg b/content/wp-content/uploads/2010/01/img_7037-11-300x222.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/img_7037-11-300x222.jpg
rename to content/wp-content/uploads/2010/01/img_7037-11-300x222.jpg
diff --git a/files/wp-content/uploads/2010/01/img_7037-11-800x593.jpg b/content/wp-content/uploads/2010/01/img_7037-11-800x593.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/img_7037-11-800x593.jpg
rename to content/wp-content/uploads/2010/01/img_7037-11-800x593.jpg
diff --git a/files/wp-content/uploads/2010/01/img_7037-11.jpg b/content/wp-content/uploads/2010/01/img_7037-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/img_7037-11.jpg
rename to content/wp-content/uploads/2010/01/img_7037-11.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237246-11-150x150.jpg b/content/wp-content/uploads/2010/01/p1237246-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237246-11-150x150.jpg
rename to content/wp-content/uploads/2010/01/p1237246-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237246-11-254x300.jpg b/content/wp-content/uploads/2010/01/p1237246-11-254x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237246-11-254x300.jpg
rename to content/wp-content/uploads/2010/01/p1237246-11-254x300.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237246-11-508x600.jpg b/content/wp-content/uploads/2010/01/p1237246-11-508x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237246-11-508x600.jpg
rename to content/wp-content/uploads/2010/01/p1237246-11-508x600.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237246-11.jpg b/content/wp-content/uploads/2010/01/p1237246-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237246-11.jpg
rename to content/wp-content/uploads/2010/01/p1237246-11.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237283-11-150x150.jpg b/content/wp-content/uploads/2010/01/p1237283-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237283-11-150x150.jpg
rename to content/wp-content/uploads/2010/01/p1237283-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237283-11-300x290.jpg b/content/wp-content/uploads/2010/01/p1237283-11-300x290.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237283-11-300x290.jpg
rename to content/wp-content/uploads/2010/01/p1237283-11-300x290.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237283-11-619x600.jpg b/content/wp-content/uploads/2010/01/p1237283-11-619x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237283-11-619x600.jpg
rename to content/wp-content/uploads/2010/01/p1237283-11-619x600.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237283-11.jpg b/content/wp-content/uploads/2010/01/p1237283-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237283-11.jpg
rename to content/wp-content/uploads/2010/01/p1237283-11.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237283-12-150x150.jpg b/content/wp-content/uploads/2010/01/p1237283-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237283-12-150x150.jpg
rename to content/wp-content/uploads/2010/01/p1237283-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237283-12-300x290.jpg b/content/wp-content/uploads/2010/01/p1237283-12-300x290.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237283-12-300x290.jpg
rename to content/wp-content/uploads/2010/01/p1237283-12-300x290.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237283-12-619x600.jpg b/content/wp-content/uploads/2010/01/p1237283-12-619x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237283-12-619x600.jpg
rename to content/wp-content/uploads/2010/01/p1237283-12-619x600.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237283-12.jpg b/content/wp-content/uploads/2010/01/p1237283-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237283-12.jpg
rename to content/wp-content/uploads/2010/01/p1237283-12.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237321-11-150x150.jpg b/content/wp-content/uploads/2010/01/p1237321-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237321-11-150x150.jpg
rename to content/wp-content/uploads/2010/01/p1237321-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237321-11-300x246.jpg b/content/wp-content/uploads/2010/01/p1237321-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237321-11-300x246.jpg
rename to content/wp-content/uploads/2010/01/p1237321-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237321-11-730x600.jpg b/content/wp-content/uploads/2010/01/p1237321-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237321-11-730x600.jpg
rename to content/wp-content/uploads/2010/01/p1237321-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237321-11.jpg b/content/wp-content/uploads/2010/01/p1237321-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237321-11.jpg
rename to content/wp-content/uploads/2010/01/p1237321-11.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237321-12-150x150.jpg b/content/wp-content/uploads/2010/01/p1237321-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237321-12-150x150.jpg
rename to content/wp-content/uploads/2010/01/p1237321-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237321-12-300x246.jpg b/content/wp-content/uploads/2010/01/p1237321-12-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237321-12-300x246.jpg
rename to content/wp-content/uploads/2010/01/p1237321-12-300x246.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237321-12-730x600.jpg b/content/wp-content/uploads/2010/01/p1237321-12-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237321-12-730x600.jpg
rename to content/wp-content/uploads/2010/01/p1237321-12-730x600.jpg
diff --git a/files/wp-content/uploads/2010/01/p1237321-12.jpg b/content/wp-content/uploads/2010/01/p1237321-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/p1237321-12.jpg
rename to content/wp-content/uploads/2010/01/p1237321-12.jpg
diff --git a/files/wp-content/uploads/2010/01/pa084630-edit1-150x150.jpg b/content/wp-content/uploads/2010/01/pa084630-edit1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/pa084630-edit1-150x150.jpg
rename to content/wp-content/uploads/2010/01/pa084630-edit1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/01/pa084630-edit1-300x254.jpg b/content/wp-content/uploads/2010/01/pa084630-edit1-300x254.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/pa084630-edit1-300x254.jpg
rename to content/wp-content/uploads/2010/01/pa084630-edit1-300x254.jpg
diff --git a/files/wp-content/uploads/2010/01/pa084630-edit1-707x600.jpg b/content/wp-content/uploads/2010/01/pa084630-edit1-707x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/pa084630-edit1-707x600.jpg
rename to content/wp-content/uploads/2010/01/pa084630-edit1-707x600.jpg
diff --git a/files/wp-content/uploads/2010/01/pa084630-edit1.jpg b/content/wp-content/uploads/2010/01/pa084630-edit1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/01/pa084630-edit1.jpg
rename to content/wp-content/uploads/2010/01/pa084630-edit1.jpg
diff --git a/files/wp-content/uploads/2010/02/PB216661-11-150x150.jpg b/content/wp-content/uploads/2010/02/PB216661-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/PB216661-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/PB216661-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/PB216661-11-300x238.jpg b/content/wp-content/uploads/2010/02/PB216661-11-300x238.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/PB216661-11-300x238.jpg
rename to content/wp-content/uploads/2010/02/PB216661-11-300x238.jpg
diff --git a/files/wp-content/uploads/2010/02/PB216661-11-753x600.jpg b/content/wp-content/uploads/2010/02/PB216661-11-753x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/PB216661-11-753x600.jpg
rename to content/wp-content/uploads/2010/02/PB216661-11-753x600.jpg
diff --git a/files/wp-content/uploads/2010/02/PB216661-11.jpg b/content/wp-content/uploads/2010/02/PB216661-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/PB216661-11.jpg
rename to content/wp-content/uploads/2010/02/PB216661-11.jpg
diff --git a/files/wp-content/uploads/2010/02/PB216661-12-150x150.jpg b/content/wp-content/uploads/2010/02/PB216661-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/PB216661-12-150x150.jpg
rename to content/wp-content/uploads/2010/02/PB216661-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/PB216661-12-300x238.jpg b/content/wp-content/uploads/2010/02/PB216661-12-300x238.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/PB216661-12-300x238.jpg
rename to content/wp-content/uploads/2010/02/PB216661-12-300x238.jpg
diff --git a/files/wp-content/uploads/2010/02/PB216661-12-753x600.jpg b/content/wp-content/uploads/2010/02/PB216661-12-753x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/PB216661-12-753x600.jpg
rename to content/wp-content/uploads/2010/02/PB216661-12-753x600.jpg
diff --git a/files/wp-content/uploads/2010/02/PB216661-12.jpg b/content/wp-content/uploads/2010/02/PB216661-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/PB216661-12.jpg
rename to content/wp-content/uploads/2010/02/PB216661-12.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-11-150x150.jpg b/content/wp-content/uploads/2010/02/img_7056-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/img_7056-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-11-300x240.jpg b/content/wp-content/uploads/2010/02/img_7056-11-300x240.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-11-300x240.jpg
rename to content/wp-content/uploads/2010/02/img_7056-11-300x240.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-11-749x600.jpg b/content/wp-content/uploads/2010/02/img_7056-11-749x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-11-749x600.jpg
rename to content/wp-content/uploads/2010/02/img_7056-11-749x600.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-11.jpg b/content/wp-content/uploads/2010/02/img_7056-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-11.jpg
rename to content/wp-content/uploads/2010/02/img_7056-11.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-12-150x150.jpg b/content/wp-content/uploads/2010/02/img_7056-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-12-150x150.jpg
rename to content/wp-content/uploads/2010/02/img_7056-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-12-300x240.jpg b/content/wp-content/uploads/2010/02/img_7056-12-300x240.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-12-300x240.jpg
rename to content/wp-content/uploads/2010/02/img_7056-12-300x240.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-12-749x600.jpg b/content/wp-content/uploads/2010/02/img_7056-12-749x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-12-749x600.jpg
rename to content/wp-content/uploads/2010/02/img_7056-12-749x600.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-12.jpg b/content/wp-content/uploads/2010/02/img_7056-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-12.jpg
rename to content/wp-content/uploads/2010/02/img_7056-12.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-21-150x150.jpg b/content/wp-content/uploads/2010/02/img_7056-21-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-21-150x150.jpg
rename to content/wp-content/uploads/2010/02/img_7056-21-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-21-300x240.jpg b/content/wp-content/uploads/2010/02/img_7056-21-300x240.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-21-300x240.jpg
rename to content/wp-content/uploads/2010/02/img_7056-21-300x240.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-21-749x600.jpg b/content/wp-content/uploads/2010/02/img_7056-21-749x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-21-749x600.jpg
rename to content/wp-content/uploads/2010/02/img_7056-21-749x600.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-21.jpg b/content/wp-content/uploads/2010/02/img_7056-21.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-21.jpg
rename to content/wp-content/uploads/2010/02/img_7056-21.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-22-150x150.jpg b/content/wp-content/uploads/2010/02/img_7056-22-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-22-150x150.jpg
rename to content/wp-content/uploads/2010/02/img_7056-22-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-22-300x240.jpg b/content/wp-content/uploads/2010/02/img_7056-22-300x240.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-22-300x240.jpg
rename to content/wp-content/uploads/2010/02/img_7056-22-300x240.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-22-749x600.jpg b/content/wp-content/uploads/2010/02/img_7056-22-749x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-22-749x600.jpg
rename to content/wp-content/uploads/2010/02/img_7056-22-749x600.jpg
diff --git a/files/wp-content/uploads/2010/02/img_7056-22.jpg b/content/wp-content/uploads/2010/02/img_7056-22.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/img_7056-22.jpg
rename to content/wp-content/uploads/2010/02/img_7056-22.jpg
diff --git a/files/wp-content/uploads/2010/02/p1237430-11-150x150.jpg b/content/wp-content/uploads/2010/02/p1237430-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p1237430-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p1237430-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p1237430-11-300x246.jpg b/content/wp-content/uploads/2010/02/p1237430-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p1237430-11-300x246.jpg
rename to content/wp-content/uploads/2010/02/p1237430-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/02/p1237430-11-730x600.jpg b/content/wp-content/uploads/2010/02/p1237430-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p1237430-11-730x600.jpg
rename to content/wp-content/uploads/2010/02/p1237430-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p1237430-11.jpg b/content/wp-content/uploads/2010/02/p1237430-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p1237430-11.jpg
rename to content/wp-content/uploads/2010/02/p1237430-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p1237430-12-150x150.jpg b/content/wp-content/uploads/2010/02/p1237430-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p1237430-12-150x150.jpg
rename to content/wp-content/uploads/2010/02/p1237430-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p1237430-12-300x246.jpg b/content/wp-content/uploads/2010/02/p1237430-12-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p1237430-12-300x246.jpg
rename to content/wp-content/uploads/2010/02/p1237430-12-300x246.jpg
diff --git a/files/wp-content/uploads/2010/02/p1237430-12-730x600.jpg b/content/wp-content/uploads/2010/02/p1237430-12-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p1237430-12-730x600.jpg
rename to content/wp-content/uploads/2010/02/p1237430-12-730x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p1237430-12.jpg b/content/wp-content/uploads/2010/02/p1237430-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p1237430-12.jpg
rename to content/wp-content/uploads/2010/02/p1237430-12.jpg
diff --git a/files/wp-content/uploads/2010/02/p2027443-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2027443-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2027443-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2027443-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2027443-11-300x246.jpg b/content/wp-content/uploads/2010/02/p2027443-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2027443-11-300x246.jpg
rename to content/wp-content/uploads/2010/02/p2027443-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/02/p2027443-11-730x600.jpg b/content/wp-content/uploads/2010/02/p2027443-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2027443-11-730x600.jpg
rename to content/wp-content/uploads/2010/02/p2027443-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2027443-11.jpg b/content/wp-content/uploads/2010/02/p2027443-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2027443-11.jpg
rename to content/wp-content/uploads/2010/02/p2027443-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2027443-12-150x150.jpg b/content/wp-content/uploads/2010/02/p2027443-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2027443-12-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2027443-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2027443-12-300x246.jpg b/content/wp-content/uploads/2010/02/p2027443-12-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2027443-12-300x246.jpg
rename to content/wp-content/uploads/2010/02/p2027443-12-300x246.jpg
diff --git a/files/wp-content/uploads/2010/02/p2027443-12-730x600.jpg b/content/wp-content/uploads/2010/02/p2027443-12-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2027443-12-730x600.jpg
rename to content/wp-content/uploads/2010/02/p2027443-12-730x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2027443-12.jpg b/content/wp-content/uploads/2010/02/p2027443-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2027443-12.jpg
rename to content/wp-content/uploads/2010/02/p2027443-12.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057451-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2057451-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057451-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2057451-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057451-11-209x300.jpg b/content/wp-content/uploads/2010/02/p2057451-11-209x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057451-11-209x300.jpg
rename to content/wp-content/uploads/2010/02/p2057451-11-209x300.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057451-11-418x600.jpg b/content/wp-content/uploads/2010/02/p2057451-11-418x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057451-11-418x600.jpg
rename to content/wp-content/uploads/2010/02/p2057451-11-418x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057451-11.jpg b/content/wp-content/uploads/2010/02/p2057451-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057451-11.jpg
rename to content/wp-content/uploads/2010/02/p2057451-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057452-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2057452-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057452-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2057452-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057452-11-300x246.jpg b/content/wp-content/uploads/2010/02/p2057452-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057452-11-300x246.jpg
rename to content/wp-content/uploads/2010/02/p2057452-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057452-11-730x600.jpg b/content/wp-content/uploads/2010/02/p2057452-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057452-11-730x600.jpg
rename to content/wp-content/uploads/2010/02/p2057452-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057452-11.jpg b/content/wp-content/uploads/2010/02/p2057452-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057452-11.jpg
rename to content/wp-content/uploads/2010/02/p2057452-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057457-1-150x150.jpg b/content/wp-content/uploads/2010/02/p2057457-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057457-1-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2057457-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057457-1-218x300.jpg b/content/wp-content/uploads/2010/02/p2057457-1-218x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057457-1-218x300.jpg
rename to content/wp-content/uploads/2010/02/p2057457-1-218x300.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057457-1-437x600.jpg b/content/wp-content/uploads/2010/02/p2057457-1-437x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057457-1-437x600.jpg
rename to content/wp-content/uploads/2010/02/p2057457-1-437x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2057457-1.jpg b/content/wp-content/uploads/2010/02/p2057457-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2057457-1.jpg
rename to content/wp-content/uploads/2010/02/p2057457-1.jpg
diff --git a/files/wp-content/uploads/2010/02/p2067458-1-150x150.jpg b/content/wp-content/uploads/2010/02/p2067458-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2067458-1-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2067458-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2067458-1-284x300.jpg b/content/wp-content/uploads/2010/02/p2067458-1-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2067458-1-284x300.jpg
rename to content/wp-content/uploads/2010/02/p2067458-1-284x300.jpg
diff --git a/files/wp-content/uploads/2010/02/p2067458-1-568x600.jpg b/content/wp-content/uploads/2010/02/p2067458-1-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2067458-1-568x600.jpg
rename to content/wp-content/uploads/2010/02/p2067458-1-568x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2067458-1.jpg b/content/wp-content/uploads/2010/02/p2067458-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2067458-1.jpg
rename to content/wp-content/uploads/2010/02/p2067458-1.jpg
diff --git a/files/wp-content/uploads/2010/02/p2077479-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2077479-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2077479-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2077479-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2077479-11-300x246.jpg b/content/wp-content/uploads/2010/02/p2077479-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2077479-11-300x246.jpg
rename to content/wp-content/uploads/2010/02/p2077479-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/02/p2077479-11-730x600.jpg b/content/wp-content/uploads/2010/02/p2077479-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2077479-11-730x600.jpg
rename to content/wp-content/uploads/2010/02/p2077479-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2077479-11.jpg b/content/wp-content/uploads/2010/02/p2077479-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2077479-11.jpg
rename to content/wp-content/uploads/2010/02/p2077479-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2087486-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2087486-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2087486-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2087486-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2087486-11-300x246.jpg b/content/wp-content/uploads/2010/02/p2087486-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2087486-11-300x246.jpg
rename to content/wp-content/uploads/2010/02/p2087486-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/02/p2087486-11-730x600.jpg b/content/wp-content/uploads/2010/02/p2087486-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2087486-11-730x600.jpg
rename to content/wp-content/uploads/2010/02/p2087486-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2087486-11.jpg b/content/wp-content/uploads/2010/02/p2087486-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2087486-11.jpg
rename to content/wp-content/uploads/2010/02/p2087486-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097488-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2097488-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097488-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2097488-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097488-11-300x126.jpg b/content/wp-content/uploads/2010/02/p2097488-11-300x126.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097488-11-300x126.jpg
rename to content/wp-content/uploads/2010/02/p2097488-11-300x126.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097488-11-800x337.jpg b/content/wp-content/uploads/2010/02/p2097488-11-800x337.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097488-11-800x337.jpg
rename to content/wp-content/uploads/2010/02/p2097488-11-800x337.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097488-11.jpg b/content/wp-content/uploads/2010/02/p2097488-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097488-11.jpg
rename to content/wp-content/uploads/2010/02/p2097488-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097491-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2097491-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097491-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2097491-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097491-11-218x300.jpg b/content/wp-content/uploads/2010/02/p2097491-11-218x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097491-11-218x300.jpg
rename to content/wp-content/uploads/2010/02/p2097491-11-218x300.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097491-11-437x600.jpg b/content/wp-content/uploads/2010/02/p2097491-11-437x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097491-11-437x600.jpg
rename to content/wp-content/uploads/2010/02/p2097491-11-437x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097491-11.jpg b/content/wp-content/uploads/2010/02/p2097491-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097491-11.jpg
rename to content/wp-content/uploads/2010/02/p2097491-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097492-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2097492-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097492-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2097492-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097492-11-300x241.jpg b/content/wp-content/uploads/2010/02/p2097492-11-300x241.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097492-11-300x241.jpg
rename to content/wp-content/uploads/2010/02/p2097492-11-300x241.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097492-11-746x600.jpg b/content/wp-content/uploads/2010/02/p2097492-11-746x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097492-11-746x600.jpg
rename to content/wp-content/uploads/2010/02/p2097492-11-746x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2097492-11.jpg b/content/wp-content/uploads/2010/02/p2097492-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2097492-11.jpg
rename to content/wp-content/uploads/2010/02/p2097492-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2107501-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2107501-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2107501-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2107501-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2107501-11-300x198.jpg b/content/wp-content/uploads/2010/02/p2107501-11-300x198.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2107501-11-300x198.jpg
rename to content/wp-content/uploads/2010/02/p2107501-11-300x198.jpg
diff --git a/files/wp-content/uploads/2010/02/p2107501-11-800x530.jpg b/content/wp-content/uploads/2010/02/p2107501-11-800x530.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2107501-11-800x530.jpg
rename to content/wp-content/uploads/2010/02/p2107501-11-800x530.jpg
diff --git a/files/wp-content/uploads/2010/02/p2107501-11.jpg b/content/wp-content/uploads/2010/02/p2107501-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2107501-11.jpg
rename to content/wp-content/uploads/2010/02/p2107501-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2107502-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2107502-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2107502-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2107502-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2107502-11-242x300.jpg b/content/wp-content/uploads/2010/02/p2107502-11-242x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2107502-11-242x300.jpg
rename to content/wp-content/uploads/2010/02/p2107502-11-242x300.jpg
diff --git a/files/wp-content/uploads/2010/02/p2107502-11-485x600.jpg b/content/wp-content/uploads/2010/02/p2107502-11-485x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2107502-11-485x600.jpg
rename to content/wp-content/uploads/2010/02/p2107502-11-485x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2107502-11.jpg b/content/wp-content/uploads/2010/02/p2107502-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2107502-11.jpg
rename to content/wp-content/uploads/2010/02/p2107502-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2117504-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2117504-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2117504-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2117504-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2117504-11-300x261.jpg b/content/wp-content/uploads/2010/02/p2117504-11-300x261.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2117504-11-300x261.jpg
rename to content/wp-content/uploads/2010/02/p2117504-11-300x261.jpg
diff --git a/files/wp-content/uploads/2010/02/p2117504-11-687x600.jpg b/content/wp-content/uploads/2010/02/p2117504-11-687x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2117504-11-687x600.jpg
rename to content/wp-content/uploads/2010/02/p2117504-11-687x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2117504-11.jpg b/content/wp-content/uploads/2010/02/p2117504-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2117504-11.jpg
rename to content/wp-content/uploads/2010/02/p2117504-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2147524-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2147524-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2147524-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2147524-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2147524-11-300x203.jpg b/content/wp-content/uploads/2010/02/p2147524-11-300x203.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2147524-11-300x203.jpg
rename to content/wp-content/uploads/2010/02/p2147524-11-300x203.jpg
diff --git a/files/wp-content/uploads/2010/02/p2147524-11-800x543.jpg b/content/wp-content/uploads/2010/02/p2147524-11-800x543.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2147524-11-800x543.jpg
rename to content/wp-content/uploads/2010/02/p2147524-11-800x543.jpg
diff --git a/files/wp-content/uploads/2010/02/p2147524-11.jpg b/content/wp-content/uploads/2010/02/p2147524-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2147524-11.jpg
rename to content/wp-content/uploads/2010/02/p2147524-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177542-11-145x300.jpg b/content/wp-content/uploads/2010/02/p2177542-11-145x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177542-11-145x300.jpg
rename to content/wp-content/uploads/2010/02/p2177542-11-145x300.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177542-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2177542-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177542-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2177542-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177542-11-291x600.jpg b/content/wp-content/uploads/2010/02/p2177542-11-291x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177542-11-291x600.jpg
rename to content/wp-content/uploads/2010/02/p2177542-11-291x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177542-11.jpg b/content/wp-content/uploads/2010/02/p2177542-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177542-11.jpg
rename to content/wp-content/uploads/2010/02/p2177542-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177542-12-145x300.jpg b/content/wp-content/uploads/2010/02/p2177542-12-145x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177542-12-145x300.jpg
rename to content/wp-content/uploads/2010/02/p2177542-12-145x300.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177542-12-150x150.jpg b/content/wp-content/uploads/2010/02/p2177542-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177542-12-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2177542-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177542-12-291x600.jpg b/content/wp-content/uploads/2010/02/p2177542-12-291x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177542-12-291x600.jpg
rename to content/wp-content/uploads/2010/02/p2177542-12-291x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177542-12.jpg b/content/wp-content/uploads/2010/02/p2177542-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177542-12.jpg
rename to content/wp-content/uploads/2010/02/p2177542-12.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177544-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2177544-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177544-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2177544-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177544-11-300x246.jpg b/content/wp-content/uploads/2010/02/p2177544-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177544-11-300x246.jpg
rename to content/wp-content/uploads/2010/02/p2177544-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177544-11-730x600.jpg b/content/wp-content/uploads/2010/02/p2177544-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177544-11-730x600.jpg
rename to content/wp-content/uploads/2010/02/p2177544-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2177544-11.jpg b/content/wp-content/uploads/2010/02/p2177544-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2177544-11.jpg
rename to content/wp-content/uploads/2010/02/p2177544-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2187547-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2187547-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2187547-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2187547-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2187547-11-189x300.jpg b/content/wp-content/uploads/2010/02/p2187547-11-189x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2187547-11-189x300.jpg
rename to content/wp-content/uploads/2010/02/p2187547-11-189x300.jpg
diff --git a/files/wp-content/uploads/2010/02/p2187547-11-379x600.jpg b/content/wp-content/uploads/2010/02/p2187547-11-379x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2187547-11-379x600.jpg
rename to content/wp-content/uploads/2010/02/p2187547-11-379x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2187547-11.jpg b/content/wp-content/uploads/2010/02/p2187547-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2187547-11.jpg
rename to content/wp-content/uploads/2010/02/p2187547-11.jpg
diff --git a/files/wp-content/uploads/2010/02/p2187548-11-150x150.jpg b/content/wp-content/uploads/2010/02/p2187548-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2187548-11-150x150.jpg
rename to content/wp-content/uploads/2010/02/p2187548-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/02/p2187548-11-218x300.jpg b/content/wp-content/uploads/2010/02/p2187548-11-218x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2187548-11-218x300.jpg
rename to content/wp-content/uploads/2010/02/p2187548-11-218x300.jpg
diff --git a/files/wp-content/uploads/2010/02/p2187548-11-437x600.jpg b/content/wp-content/uploads/2010/02/p2187548-11-437x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2187548-11-437x600.jpg
rename to content/wp-content/uploads/2010/02/p2187548-11-437x600.jpg
diff --git a/files/wp-content/uploads/2010/02/p2187548-11.jpg b/content/wp-content/uploads/2010/02/p2187548-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/02/p2187548-11.jpg
rename to content/wp-content/uploads/2010/02/p2187548-11.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.23-150x150.jpg b/content/wp-content/uploads/2010/03/2009.12.23-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.23-150x150.jpg
rename to content/wp-content/uploads/2010/03/2009.12.23-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.23-300x225.jpg b/content/wp-content/uploads/2010/03/2009.12.23-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.23-300x225.jpg
rename to content/wp-content/uploads/2010/03/2009.12.23-300x225.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.23-800x600.jpg b/content/wp-content/uploads/2010/03/2009.12.23-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.23-800x600.jpg
rename to content/wp-content/uploads/2010/03/2009.12.23-800x600.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.23.jpg b/content/wp-content/uploads/2010/03/2009.12.23.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.23.jpg
rename to content/wp-content/uploads/2010/03/2009.12.23.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.231-150x150.jpg b/content/wp-content/uploads/2010/03/2009.12.231-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.231-150x150.jpg
rename to content/wp-content/uploads/2010/03/2009.12.231-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.231-300x225.jpg b/content/wp-content/uploads/2010/03/2009.12.231-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.231-300x225.jpg
rename to content/wp-content/uploads/2010/03/2009.12.231-300x225.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.231-800x600.jpg b/content/wp-content/uploads/2010/03/2009.12.231-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.231-800x600.jpg
rename to content/wp-content/uploads/2010/03/2009.12.231-800x600.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.231.jpg b/content/wp-content/uploads/2010/03/2009.12.231.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.231.jpg
rename to content/wp-content/uploads/2010/03/2009.12.231.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.30-150x150.jpg b/content/wp-content/uploads/2010/03/2009.12.30-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.30-150x150.jpg
rename to content/wp-content/uploads/2010/03/2009.12.30-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.30-300x258.jpg b/content/wp-content/uploads/2010/03/2009.12.30-300x258.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.30-300x258.jpg
rename to content/wp-content/uploads/2010/03/2009.12.30-300x258.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.30-695x600.jpg b/content/wp-content/uploads/2010/03/2009.12.30-695x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.30-695x600.jpg
rename to content/wp-content/uploads/2010/03/2009.12.30-695x600.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.30.jpg b/content/wp-content/uploads/2010/03/2009.12.30.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.30.jpg
rename to content/wp-content/uploads/2010/03/2009.12.30.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.301-150x150.jpg b/content/wp-content/uploads/2010/03/2009.12.301-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.301-150x150.jpg
rename to content/wp-content/uploads/2010/03/2009.12.301-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.301-300x258.jpg b/content/wp-content/uploads/2010/03/2009.12.301-300x258.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.301-300x258.jpg
rename to content/wp-content/uploads/2010/03/2009.12.301-300x258.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.301-695x600.jpg b/content/wp-content/uploads/2010/03/2009.12.301-695x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.301-695x600.jpg
rename to content/wp-content/uploads/2010/03/2009.12.301-695x600.jpg
diff --git a/files/wp-content/uploads/2010/03/2009.12.301.jpg b/content/wp-content/uploads/2010/03/2009.12.301.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2009.12.301.jpg
rename to content/wp-content/uploads/2010/03/2009.12.301.jpg
diff --git a/files/wp-content/uploads/2010/03/2010.02.27-150x150.jpg b/content/wp-content/uploads/2010/03/2010.02.27-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2010.02.27-150x150.jpg
rename to content/wp-content/uploads/2010/03/2010.02.27-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/2010.02.27-300x246.jpg b/content/wp-content/uploads/2010/03/2010.02.27-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2010.02.27-300x246.jpg
rename to content/wp-content/uploads/2010/03/2010.02.27-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/2010.02.27-730x600.jpg b/content/wp-content/uploads/2010/03/2010.02.27-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2010.02.27-730x600.jpg
rename to content/wp-content/uploads/2010/03/2010.02.27-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/2010.02.27.jpg b/content/wp-content/uploads/2010/03/2010.02.27.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/2010.02.27.jpg
rename to content/wp-content/uploads/2010/03/2010.02.27.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779411-150x150.jpg b/content/wp-content/uploads/2010/03/P32779411-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779411-150x150.jpg
rename to content/wp-content/uploads/2010/03/P32779411-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779411-300x246.jpg b/content/wp-content/uploads/2010/03/P32779411-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779411-300x246.jpg
rename to content/wp-content/uploads/2010/03/P32779411-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779411-730x600.jpg b/content/wp-content/uploads/2010/03/P32779411-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779411-730x600.jpg
rename to content/wp-content/uploads/2010/03/P32779411-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779411.jpg b/content/wp-content/uploads/2010/03/P32779411.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779411.jpg
rename to content/wp-content/uploads/2010/03/P32779411.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779461-150x150.jpg b/content/wp-content/uploads/2010/03/P32779461-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779461-150x150.jpg
rename to content/wp-content/uploads/2010/03/P32779461-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779461-300x246.jpg b/content/wp-content/uploads/2010/03/P32779461-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779461-300x246.jpg
rename to content/wp-content/uploads/2010/03/P32779461-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779461-730x600.jpg b/content/wp-content/uploads/2010/03/P32779461-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779461-730x600.jpg
rename to content/wp-content/uploads/2010/03/P32779461-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779461.jpg b/content/wp-content/uploads/2010/03/P32779461.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779461.jpg
rename to content/wp-content/uploads/2010/03/P32779461.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779651-150x150.jpg b/content/wp-content/uploads/2010/03/P32779651-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779651-150x150.jpg
rename to content/wp-content/uploads/2010/03/P32779651-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779651-300x246.jpg b/content/wp-content/uploads/2010/03/P32779651-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779651-300x246.jpg
rename to content/wp-content/uploads/2010/03/P32779651-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779651-730x600.jpg b/content/wp-content/uploads/2010/03/P32779651-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779651-730x600.jpg
rename to content/wp-content/uploads/2010/03/P32779651-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779651.jpg b/content/wp-content/uploads/2010/03/P32779651.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779651.jpg
rename to content/wp-content/uploads/2010/03/P32779651.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779681-150x150.jpg b/content/wp-content/uploads/2010/03/P32779681-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779681-150x150.jpg
rename to content/wp-content/uploads/2010/03/P32779681-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779681-300x246.jpg b/content/wp-content/uploads/2010/03/P32779681-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779681-300x246.jpg
rename to content/wp-content/uploads/2010/03/P32779681-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779681-730x600.jpg b/content/wp-content/uploads/2010/03/P32779681-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779681-730x600.jpg
rename to content/wp-content/uploads/2010/03/P32779681-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779681.jpg b/content/wp-content/uploads/2010/03/P32779681.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779681.jpg
rename to content/wp-content/uploads/2010/03/P32779681.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779682-150x150.jpg b/content/wp-content/uploads/2010/03/P32779682-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779682-150x150.jpg
rename to content/wp-content/uploads/2010/03/P32779682-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779682-300x246.jpg b/content/wp-content/uploads/2010/03/P32779682-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779682-300x246.jpg
rename to content/wp-content/uploads/2010/03/P32779682-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779682-730x600.jpg b/content/wp-content/uploads/2010/03/P32779682-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779682-730x600.jpg
rename to content/wp-content/uploads/2010/03/P32779682-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/P32779682.jpg b/content/wp-content/uploads/2010/03/P32779682.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/P32779682.jpg
rename to content/wp-content/uploads/2010/03/P32779682.jpg
diff --git a/files/wp-content/uploads/2010/03/p2187545-1-150x150.jpg b/content/wp-content/uploads/2010/03/p2187545-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2187545-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2187545-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2187545-1-284x300.jpg b/content/wp-content/uploads/2010/03/p2187545-1-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2187545-1-284x300.jpg
rename to content/wp-content/uploads/2010/03/p2187545-1-284x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p2187545-1-568x600.jpg b/content/wp-content/uploads/2010/03/p2187545-1-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2187545-1-568x600.jpg
rename to content/wp-content/uploads/2010/03/p2187545-1-568x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2187545-1.jpg b/content/wp-content/uploads/2010/03/p2187545-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2187545-1.jpg
rename to content/wp-content/uploads/2010/03/p2187545-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p2247607-1-150x150.jpg b/content/wp-content/uploads/2010/03/p2247607-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2247607-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2247607-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2247607-1-218x300.jpg b/content/wp-content/uploads/2010/03/p2247607-1-218x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2247607-1-218x300.jpg
rename to content/wp-content/uploads/2010/03/p2247607-1-218x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p2247607-1-437x600.jpg b/content/wp-content/uploads/2010/03/p2247607-1-437x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2247607-1-437x600.jpg
rename to content/wp-content/uploads/2010/03/p2247607-1-437x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2247607-1.jpg b/content/wp-content/uploads/2010/03/p2247607-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2247607-1.jpg
rename to content/wp-content/uploads/2010/03/p2247607-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p2247608-1-146x300.jpg b/content/wp-content/uploads/2010/03/p2247608-1-146x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2247608-1-146x300.jpg
rename to content/wp-content/uploads/2010/03/p2247608-1-146x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p2247608-1-150x150.jpg b/content/wp-content/uploads/2010/03/p2247608-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2247608-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2247608-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2247608-1-292x600.jpg b/content/wp-content/uploads/2010/03/p2247608-1-292x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2247608-1-292x600.jpg
rename to content/wp-content/uploads/2010/03/p2247608-1-292x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2247608-1.jpg b/content/wp-content/uploads/2010/03/p2247608-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2247608-1.jpg
rename to content/wp-content/uploads/2010/03/p2247608-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p2267617-1-150x150.jpg b/content/wp-content/uploads/2010/03/p2267617-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2267617-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2267617-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2267617-1-300x246.jpg b/content/wp-content/uploads/2010/03/p2267617-1-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2267617-1-300x246.jpg
rename to content/wp-content/uploads/2010/03/p2267617-1-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p2267617-1-730x600.jpg b/content/wp-content/uploads/2010/03/p2267617-1-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2267617-1-730x600.jpg
rename to content/wp-content/uploads/2010/03/p2267617-1-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2267617-1.jpg b/content/wp-content/uploads/2010/03/p2267617-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2267617-1.jpg
rename to content/wp-content/uploads/2010/03/p2267617-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277623-1-150x150.jpg b/content/wp-content/uploads/2010/03/p2277623-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277623-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2277623-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277623-1-284x300.jpg b/content/wp-content/uploads/2010/03/p2277623-1-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277623-1-284x300.jpg
rename to content/wp-content/uploads/2010/03/p2277623-1-284x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277623-1-568x600.jpg b/content/wp-content/uploads/2010/03/p2277623-1-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277623-1-568x600.jpg
rename to content/wp-content/uploads/2010/03/p2277623-1-568x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277623-1.jpg b/content/wp-content/uploads/2010/03/p2277623-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277623-1.jpg
rename to content/wp-content/uploads/2010/03/p2277623-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277623-11-150x150.jpg b/content/wp-content/uploads/2010/03/p2277623-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277623-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2277623-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277623-11-284x300.jpg b/content/wp-content/uploads/2010/03/p2277623-11-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277623-11-284x300.jpg
rename to content/wp-content/uploads/2010/03/p2277623-11-284x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277623-11-568x600.jpg b/content/wp-content/uploads/2010/03/p2277623-11-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277623-11-568x600.jpg
rename to content/wp-content/uploads/2010/03/p2277623-11-568x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277623-11.jpg b/content/wp-content/uploads/2010/03/p2277623-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277623-11.jpg
rename to content/wp-content/uploads/2010/03/p2277623-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277627-1-150x150.jpg b/content/wp-content/uploads/2010/03/p2277627-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277627-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2277627-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277627-1-284x300.jpg b/content/wp-content/uploads/2010/03/p2277627-1-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277627-1-284x300.jpg
rename to content/wp-content/uploads/2010/03/p2277627-1-284x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277627-1-568x600.jpg b/content/wp-content/uploads/2010/03/p2277627-1-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277627-1-568x600.jpg
rename to content/wp-content/uploads/2010/03/p2277627-1-568x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277627-1.jpg b/content/wp-content/uploads/2010/03/p2277627-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277627-1.jpg
rename to content/wp-content/uploads/2010/03/p2277627-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277627-11-150x150.jpg b/content/wp-content/uploads/2010/03/p2277627-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277627-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2277627-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277627-11-284x300.jpg b/content/wp-content/uploads/2010/03/p2277627-11-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277627-11-284x300.jpg
rename to content/wp-content/uploads/2010/03/p2277627-11-284x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277627-11-568x600.jpg b/content/wp-content/uploads/2010/03/p2277627-11-568x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277627-11-568x600.jpg
rename to content/wp-content/uploads/2010/03/p2277627-11-568x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277627-11.jpg b/content/wp-content/uploads/2010/03/p2277627-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277627-11.jpg
rename to content/wp-content/uploads/2010/03/p2277627-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277628-1-150x150.jpg b/content/wp-content/uploads/2010/03/p2277628-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277628-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2277628-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277628-1-300x246.jpg b/content/wp-content/uploads/2010/03/p2277628-1-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277628-1-300x246.jpg
rename to content/wp-content/uploads/2010/03/p2277628-1-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277628-1-730x600.jpg b/content/wp-content/uploads/2010/03/p2277628-1-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277628-1-730x600.jpg
rename to content/wp-content/uploads/2010/03/p2277628-1-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277628-1.jpg b/content/wp-content/uploads/2010/03/p2277628-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277628-1.jpg
rename to content/wp-content/uploads/2010/03/p2277628-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277628-11-150x150.jpg b/content/wp-content/uploads/2010/03/p2277628-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277628-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p2277628-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277628-11-300x246.jpg b/content/wp-content/uploads/2010/03/p2277628-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277628-11-300x246.jpg
rename to content/wp-content/uploads/2010/03/p2277628-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277628-11-730x600.jpg b/content/wp-content/uploads/2010/03/p2277628-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277628-11-730x600.jpg
rename to content/wp-content/uploads/2010/03/p2277628-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p2277628-11.jpg b/content/wp-content/uploads/2010/03/p2277628-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p2277628-11.jpg
rename to content/wp-content/uploads/2010/03/p2277628-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3027680-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3027680-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3027680-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3027680-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3027680-1-158x300.jpg b/content/wp-content/uploads/2010/03/p3027680-1-158x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3027680-1-158x300.jpg
rename to content/wp-content/uploads/2010/03/p3027680-1-158x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3027680-1-316x600.jpg b/content/wp-content/uploads/2010/03/p3027680-1-316x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3027680-1-316x600.jpg
rename to content/wp-content/uploads/2010/03/p3027680-1-316x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3027680-1.jpg b/content/wp-content/uploads/2010/03/p3027680-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3027680-1.jpg
rename to content/wp-content/uploads/2010/03/p3027680-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3027680-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3027680-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3027680-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3027680-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3027680-11-158x300.jpg b/content/wp-content/uploads/2010/03/p3027680-11-158x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3027680-11-158x300.jpg
rename to content/wp-content/uploads/2010/03/p3027680-11-158x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3027680-11-316x600.jpg b/content/wp-content/uploads/2010/03/p3027680-11-316x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3027680-11-316x600.jpg
rename to content/wp-content/uploads/2010/03/p3027680-11-316x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3027680-11.jpg b/content/wp-content/uploads/2010/03/p3027680-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3027680-11.jpg
rename to content/wp-content/uploads/2010/03/p3027680-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3037684-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3037684-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3037684-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3037684-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3037684-1-300x246.jpg b/content/wp-content/uploads/2010/03/p3037684-1-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3037684-1-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3037684-1-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3037684-1-730x600.jpg b/content/wp-content/uploads/2010/03/p3037684-1-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3037684-1-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3037684-1-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3037684-1.jpg b/content/wp-content/uploads/2010/03/p3037684-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3037684-1.jpg
rename to content/wp-content/uploads/2010/03/p3037684-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3037684-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3037684-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3037684-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3037684-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3037684-11-300x246.jpg b/content/wp-content/uploads/2010/03/p3037684-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3037684-11-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3037684-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3037684-11-730x600.jpg b/content/wp-content/uploads/2010/03/p3037684-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3037684-11-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3037684-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3037684-11.jpg b/content/wp-content/uploads/2010/03/p3037684-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3037684-11.jpg
rename to content/wp-content/uploads/2010/03/p3037684-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3057687-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3057687-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3057687-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3057687-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3057687-1-300x246.jpg b/content/wp-content/uploads/2010/03/p3057687-1-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3057687-1-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3057687-1-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3057687-1-730x600.jpg b/content/wp-content/uploads/2010/03/p3057687-1-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3057687-1-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3057687-1-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3057687-1.jpg b/content/wp-content/uploads/2010/03/p3057687-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3057687-1.jpg
rename to content/wp-content/uploads/2010/03/p3057687-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3057687-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3057687-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3057687-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3057687-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3057687-11-300x246.jpg b/content/wp-content/uploads/2010/03/p3057687-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3057687-11-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3057687-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3057687-11-730x600.jpg b/content/wp-content/uploads/2010/03/p3057687-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3057687-11-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3057687-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3057687-11.jpg b/content/wp-content/uploads/2010/03/p3057687-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3057687-11.jpg
rename to content/wp-content/uploads/2010/03/p3057687-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3067709-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3067709-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3067709-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3067709-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3067709-1-300x246.jpg b/content/wp-content/uploads/2010/03/p3067709-1-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3067709-1-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3067709-1-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3067709-1-730x600.jpg b/content/wp-content/uploads/2010/03/p3067709-1-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3067709-1-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3067709-1-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3067709-1.jpg b/content/wp-content/uploads/2010/03/p3067709-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3067709-1.jpg
rename to content/wp-content/uploads/2010/03/p3067709-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107764-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3107764-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107764-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107764-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107764-1-283x300.jpg b/content/wp-content/uploads/2010/03/p3107764-1-283x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107764-1-283x300.jpg
rename to content/wp-content/uploads/2010/03/p3107764-1-283x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107764-1-567x600.jpg b/content/wp-content/uploads/2010/03/p3107764-1-567x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107764-1-567x600.jpg
rename to content/wp-content/uploads/2010/03/p3107764-1-567x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107764-1.jpg b/content/wp-content/uploads/2010/03/p3107764-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107764-1.jpg
rename to content/wp-content/uploads/2010/03/p3107764-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107765-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3107765-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107765-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107765-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107765-1-219x300.jpg b/content/wp-content/uploads/2010/03/p3107765-1-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107765-1-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3107765-1-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107765-1-438x600.jpg b/content/wp-content/uploads/2010/03/p3107765-1-438x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107765-1-438x600.jpg
rename to content/wp-content/uploads/2010/03/p3107765-1-438x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107765-1.jpg b/content/wp-content/uploads/2010/03/p3107765-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107765-1.jpg
rename to content/wp-content/uploads/2010/03/p3107765-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107765-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3107765-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107765-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107765-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107765-11-219x300.jpg b/content/wp-content/uploads/2010/03/p3107765-11-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107765-11-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3107765-11-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107765-11-438x600.jpg b/content/wp-content/uploads/2010/03/p3107765-11-438x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107765-11-438x600.jpg
rename to content/wp-content/uploads/2010/03/p3107765-11-438x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107765-11.jpg b/content/wp-content/uploads/2010/03/p3107765-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107765-11.jpg
rename to content/wp-content/uploads/2010/03/p3107765-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107768-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3107768-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107768-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107768-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107768-1-219x300.jpg b/content/wp-content/uploads/2010/03/p3107768-1-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107768-1-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3107768-1-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107768-1-438x600.jpg b/content/wp-content/uploads/2010/03/p3107768-1-438x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107768-1-438x600.jpg
rename to content/wp-content/uploads/2010/03/p3107768-1-438x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107768-1.jpg b/content/wp-content/uploads/2010/03/p3107768-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107768-1.jpg
rename to content/wp-content/uploads/2010/03/p3107768-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107768-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3107768-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107768-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107768-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107768-11-219x300.jpg b/content/wp-content/uploads/2010/03/p3107768-11-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107768-11-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3107768-11-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107768-11-438x600.jpg b/content/wp-content/uploads/2010/03/p3107768-11-438x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107768-11-438x600.jpg
rename to content/wp-content/uploads/2010/03/p3107768-11-438x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107768-11.jpg b/content/wp-content/uploads/2010/03/p3107768-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107768-11.jpg
rename to content/wp-content/uploads/2010/03/p3107768-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107769-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3107769-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107769-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107769-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107769-1-300x245.jpg b/content/wp-content/uploads/2010/03/p3107769-1-300x245.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107769-1-300x245.jpg
rename to content/wp-content/uploads/2010/03/p3107769-1-300x245.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107769-1-733x600.jpg b/content/wp-content/uploads/2010/03/p3107769-1-733x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107769-1-733x600.jpg
rename to content/wp-content/uploads/2010/03/p3107769-1-733x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107769-1.jpg b/content/wp-content/uploads/2010/03/p3107769-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107769-1.jpg
rename to content/wp-content/uploads/2010/03/p3107769-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107769-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3107769-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107769-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107769-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107769-11-300x245.jpg b/content/wp-content/uploads/2010/03/p3107769-11-300x245.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107769-11-300x245.jpg
rename to content/wp-content/uploads/2010/03/p3107769-11-300x245.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107769-11-733x600.jpg b/content/wp-content/uploads/2010/03/p3107769-11-733x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107769-11-733x600.jpg
rename to content/wp-content/uploads/2010/03/p3107769-11-733x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107769-11.jpg b/content/wp-content/uploads/2010/03/p3107769-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107769-11.jpg
rename to content/wp-content/uploads/2010/03/p3107769-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107770-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3107770-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107770-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107770-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107770-1-157x300.jpg b/content/wp-content/uploads/2010/03/p3107770-1-157x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107770-1-157x300.jpg
rename to content/wp-content/uploads/2010/03/p3107770-1-157x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107770-1-314x600.jpg b/content/wp-content/uploads/2010/03/p3107770-1-314x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107770-1-314x600.jpg
rename to content/wp-content/uploads/2010/03/p3107770-1-314x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107770-1.jpg b/content/wp-content/uploads/2010/03/p3107770-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107770-1.jpg
rename to content/wp-content/uploads/2010/03/p3107770-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107770-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3107770-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107770-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107770-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107770-11-157x300.jpg b/content/wp-content/uploads/2010/03/p3107770-11-157x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107770-11-157x300.jpg
rename to content/wp-content/uploads/2010/03/p3107770-11-157x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107770-11-314x600.jpg b/content/wp-content/uploads/2010/03/p3107770-11-314x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107770-11-314x600.jpg
rename to content/wp-content/uploads/2010/03/p3107770-11-314x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107770-11.jpg b/content/wp-content/uploads/2010/03/p3107770-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107770-11.jpg
rename to content/wp-content/uploads/2010/03/p3107770-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3107772-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107772-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-1-300x246.jpg b/content/wp-content/uploads/2010/03/p3107772-1-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-1-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3107772-1-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-1-730x600.jpg b/content/wp-content/uploads/2010/03/p3107772-1-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-1-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3107772-1-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-1.jpg b/content/wp-content/uploads/2010/03/p3107772-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-1.jpg
rename to content/wp-content/uploads/2010/03/p3107772-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3107772-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107772-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-11-300x246.jpg b/content/wp-content/uploads/2010/03/p3107772-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-11-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3107772-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-11-730x600.jpg b/content/wp-content/uploads/2010/03/p3107772-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-11-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3107772-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-11.jpg b/content/wp-content/uploads/2010/03/p3107772-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-11.jpg
rename to content/wp-content/uploads/2010/03/p3107772-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-12-150x150.jpg b/content/wp-content/uploads/2010/03/p3107772-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-12-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3107772-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-12-300x246.jpg b/content/wp-content/uploads/2010/03/p3107772-12-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-12-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3107772-12-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-12-730x600.jpg b/content/wp-content/uploads/2010/03/p3107772-12-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-12-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3107772-12-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3107772-12.jpg b/content/wp-content/uploads/2010/03/p3107772-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3107772-12.jpg
rename to content/wp-content/uploads/2010/03/p3107772-12.jpg
diff --git a/files/wp-content/uploads/2010/03/p3117776-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3117776-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3117776-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3117776-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3117776-1-219x300.jpg b/content/wp-content/uploads/2010/03/p3117776-1-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3117776-1-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3117776-1-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3117776-1-439x600.jpg b/content/wp-content/uploads/2010/03/p3117776-1-439x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3117776-1-439x600.jpg
rename to content/wp-content/uploads/2010/03/p3117776-1-439x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3117776-1.jpg b/content/wp-content/uploads/2010/03/p3117776-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3117776-1.jpg
rename to content/wp-content/uploads/2010/03/p3117776-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3117776-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3117776-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3117776-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3117776-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3117776-11-219x300.jpg b/content/wp-content/uploads/2010/03/p3117776-11-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3117776-11-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3117776-11-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3117776-11-439x600.jpg b/content/wp-content/uploads/2010/03/p3117776-11-439x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3117776-11-439x600.jpg
rename to content/wp-content/uploads/2010/03/p3117776-11-439x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3117776-11.jpg b/content/wp-content/uploads/2010/03/p3117776-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3117776-11.jpg
rename to content/wp-content/uploads/2010/03/p3117776-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177829-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3177829-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177829-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177829-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177829-11-300x193.jpg b/content/wp-content/uploads/2010/03/p3177829-11-300x193.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177829-11-300x193.jpg
rename to content/wp-content/uploads/2010/03/p3177829-11-300x193.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177829-11-800x516.jpg b/content/wp-content/uploads/2010/03/p3177829-11-800x516.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177829-11-800x516.jpg
rename to content/wp-content/uploads/2010/03/p3177829-11-800x516.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177829-11.jpg b/content/wp-content/uploads/2010/03/p3177829-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177829-11.jpg
rename to content/wp-content/uploads/2010/03/p3177829-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177829-12-150x150.jpg b/content/wp-content/uploads/2010/03/p3177829-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177829-12-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177829-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177829-12-300x193.jpg b/content/wp-content/uploads/2010/03/p3177829-12-300x193.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177829-12-300x193.jpg
rename to content/wp-content/uploads/2010/03/p3177829-12-300x193.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177829-12-800x516.jpg b/content/wp-content/uploads/2010/03/p3177829-12-800x516.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177829-12-800x516.jpg
rename to content/wp-content/uploads/2010/03/p3177829-12-800x516.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177829-12.jpg b/content/wp-content/uploads/2010/03/p3177829-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177829-12.jpg
rename to content/wp-content/uploads/2010/03/p3177829-12.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177843-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3177843-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177843-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177843-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177843-11-300x210.jpg b/content/wp-content/uploads/2010/03/p3177843-11-300x210.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177843-11-300x210.jpg
rename to content/wp-content/uploads/2010/03/p3177843-11-300x210.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177843-11-800x562.jpg b/content/wp-content/uploads/2010/03/p3177843-11-800x562.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177843-11-800x562.jpg
rename to content/wp-content/uploads/2010/03/p3177843-11-800x562.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177843-11.jpg b/content/wp-content/uploads/2010/03/p3177843-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177843-11.jpg
rename to content/wp-content/uploads/2010/03/p3177843-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177843-12-150x150.jpg b/content/wp-content/uploads/2010/03/p3177843-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177843-12-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177843-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177843-12-300x210.jpg b/content/wp-content/uploads/2010/03/p3177843-12-300x210.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177843-12-300x210.jpg
rename to content/wp-content/uploads/2010/03/p3177843-12-300x210.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177843-12-800x562.jpg b/content/wp-content/uploads/2010/03/p3177843-12-800x562.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177843-12-800x562.jpg
rename to content/wp-content/uploads/2010/03/p3177843-12-800x562.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177843-12.jpg b/content/wp-content/uploads/2010/03/p3177843-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177843-12.jpg
rename to content/wp-content/uploads/2010/03/p3177843-12.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177846-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3177846-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177846-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177846-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177846-1-219x300.jpg b/content/wp-content/uploads/2010/03/p3177846-1-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177846-1-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3177846-1-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177846-1-438x600.jpg b/content/wp-content/uploads/2010/03/p3177846-1-438x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177846-1-438x600.jpg
rename to content/wp-content/uploads/2010/03/p3177846-1-438x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177846-1.jpg b/content/wp-content/uploads/2010/03/p3177846-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177846-1.jpg
rename to content/wp-content/uploads/2010/03/p3177846-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177846-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3177846-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177846-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177846-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177846-11-219x300.jpg b/content/wp-content/uploads/2010/03/p3177846-11-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177846-11-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3177846-11-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177846-11-438x600.jpg b/content/wp-content/uploads/2010/03/p3177846-11-438x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177846-11-438x600.jpg
rename to content/wp-content/uploads/2010/03/p3177846-11-438x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177846-11.jpg b/content/wp-content/uploads/2010/03/p3177846-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177846-11.jpg
rename to content/wp-content/uploads/2010/03/p3177846-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177871-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3177871-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177871-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177871-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177871-11-300x246.jpg b/content/wp-content/uploads/2010/03/p3177871-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177871-11-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3177871-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177871-11-730x600.jpg b/content/wp-content/uploads/2010/03/p3177871-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177871-11-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3177871-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177871-11.jpg b/content/wp-content/uploads/2010/03/p3177871-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177871-11.jpg
rename to content/wp-content/uploads/2010/03/p3177871-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177871-12-150x150.jpg b/content/wp-content/uploads/2010/03/p3177871-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177871-12-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177871-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177871-12-300x246.jpg b/content/wp-content/uploads/2010/03/p3177871-12-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177871-12-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3177871-12-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177871-12-730x600.jpg b/content/wp-content/uploads/2010/03/p3177871-12-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177871-12-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3177871-12-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177871-12.jpg b/content/wp-content/uploads/2010/03/p3177871-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177871-12.jpg
rename to content/wp-content/uploads/2010/03/p3177871-12.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-1-150x150.jpg b/content/wp-content/uploads/2010/03/p3177893-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-1-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177893-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-1-219x300.jpg b/content/wp-content/uploads/2010/03/p3177893-1-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-1-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3177893-1-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-1-438x600.jpg b/content/wp-content/uploads/2010/03/p3177893-1-438x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-1-438x600.jpg
rename to content/wp-content/uploads/2010/03/p3177893-1-438x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-1.jpg b/content/wp-content/uploads/2010/03/p3177893-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-1.jpg
rename to content/wp-content/uploads/2010/03/p3177893-1.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3177893-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177893-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-11-219x300.jpg b/content/wp-content/uploads/2010/03/p3177893-11-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-11-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3177893-11-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-11-438x600.jpg b/content/wp-content/uploads/2010/03/p3177893-11-438x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-11-438x600.jpg
rename to content/wp-content/uploads/2010/03/p3177893-11-438x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-11.jpg b/content/wp-content/uploads/2010/03/p3177893-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-11.jpg
rename to content/wp-content/uploads/2010/03/p3177893-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-12-150x150.jpg b/content/wp-content/uploads/2010/03/p3177893-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-12-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177893-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-12-219x300.jpg b/content/wp-content/uploads/2010/03/p3177893-12-219x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-12-219x300.jpg
rename to content/wp-content/uploads/2010/03/p3177893-12-219x300.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-12-438x600.jpg b/content/wp-content/uploads/2010/03/p3177893-12-438x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-12-438x600.jpg
rename to content/wp-content/uploads/2010/03/p3177893-12-438x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177893-12.jpg b/content/wp-content/uploads/2010/03/p3177893-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177893-12.jpg
rename to content/wp-content/uploads/2010/03/p3177893-12.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177905-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3177905-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177905-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177905-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177905-11-300x193.jpg b/content/wp-content/uploads/2010/03/p3177905-11-300x193.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177905-11-300x193.jpg
rename to content/wp-content/uploads/2010/03/p3177905-11-300x193.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177905-11-800x516.jpg b/content/wp-content/uploads/2010/03/p3177905-11-800x516.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177905-11-800x516.jpg
rename to content/wp-content/uploads/2010/03/p3177905-11-800x516.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177905-11.jpg b/content/wp-content/uploads/2010/03/p3177905-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177905-11.jpg
rename to content/wp-content/uploads/2010/03/p3177905-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3177909-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177909-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-11-300x193.jpg b/content/wp-content/uploads/2010/03/p3177909-11-300x193.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-11-300x193.jpg
rename to content/wp-content/uploads/2010/03/p3177909-11-300x193.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-11-800x514.jpg b/content/wp-content/uploads/2010/03/p3177909-11-800x514.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-11-800x514.jpg
rename to content/wp-content/uploads/2010/03/p3177909-11-800x514.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-11.jpg b/content/wp-content/uploads/2010/03/p3177909-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-11.jpg
rename to content/wp-content/uploads/2010/03/p3177909-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-12-150x150.jpg b/content/wp-content/uploads/2010/03/p3177909-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-12-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177909-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-12-300x193.jpg b/content/wp-content/uploads/2010/03/p3177909-12-300x193.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-12-300x193.jpg
rename to content/wp-content/uploads/2010/03/p3177909-12-300x193.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-12-800x514.jpg b/content/wp-content/uploads/2010/03/p3177909-12-800x514.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-12-800x514.jpg
rename to content/wp-content/uploads/2010/03/p3177909-12-800x514.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-12.jpg b/content/wp-content/uploads/2010/03/p3177909-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-12.jpg
rename to content/wp-content/uploads/2010/03/p3177909-12.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-21-150x150.jpg b/content/wp-content/uploads/2010/03/p3177909-21-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-21-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177909-21-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-21-300x193.jpg b/content/wp-content/uploads/2010/03/p3177909-21-300x193.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-21-300x193.jpg
rename to content/wp-content/uploads/2010/03/p3177909-21-300x193.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-21-800x514.jpg b/content/wp-content/uploads/2010/03/p3177909-21-800x514.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-21-800x514.jpg
rename to content/wp-content/uploads/2010/03/p3177909-21-800x514.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-21.jpg b/content/wp-content/uploads/2010/03/p3177909-21.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-21.jpg
rename to content/wp-content/uploads/2010/03/p3177909-21.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-22-150x150.jpg b/content/wp-content/uploads/2010/03/p3177909-22-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-22-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177909-22-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-22-300x193.jpg b/content/wp-content/uploads/2010/03/p3177909-22-300x193.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-22-300x193.jpg
rename to content/wp-content/uploads/2010/03/p3177909-22-300x193.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-22-800x514.jpg b/content/wp-content/uploads/2010/03/p3177909-22-800x514.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-22-800x514.jpg
rename to content/wp-content/uploads/2010/03/p3177909-22-800x514.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177909-22.jpg b/content/wp-content/uploads/2010/03/p3177909-22.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177909-22.jpg
rename to content/wp-content/uploads/2010/03/p3177909-22.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177914-21-150x150.jpg b/content/wp-content/uploads/2010/03/p3177914-21-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177914-21-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177914-21-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177914-21-300x246.jpg b/content/wp-content/uploads/2010/03/p3177914-21-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177914-21-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3177914-21-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177914-21-730x600.jpg b/content/wp-content/uploads/2010/03/p3177914-21-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177914-21-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3177914-21-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177914-21.jpg b/content/wp-content/uploads/2010/03/p3177914-21.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177914-21.jpg
rename to content/wp-content/uploads/2010/03/p3177914-21.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177914-22-150x150.jpg b/content/wp-content/uploads/2010/03/p3177914-22-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177914-22-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177914-22-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177914-22-300x246.jpg b/content/wp-content/uploads/2010/03/p3177914-22-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177914-22-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3177914-22-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177914-22-730x600.jpg b/content/wp-content/uploads/2010/03/p3177914-22-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177914-22-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3177914-22-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177914-22.jpg b/content/wp-content/uploads/2010/03/p3177914-22.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177914-22.jpg
rename to content/wp-content/uploads/2010/03/p3177914-22.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177919-11-150x150.jpg b/content/wp-content/uploads/2010/03/p3177919-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177919-11-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177919-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177919-11-300x246.jpg b/content/wp-content/uploads/2010/03/p3177919-11-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177919-11-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3177919-11-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177919-11-730x600.jpg b/content/wp-content/uploads/2010/03/p3177919-11-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177919-11-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3177919-11-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177919-11.jpg b/content/wp-content/uploads/2010/03/p3177919-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177919-11.jpg
rename to content/wp-content/uploads/2010/03/p3177919-11.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177919-12-150x150.jpg b/content/wp-content/uploads/2010/03/p3177919-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177919-12-150x150.jpg
rename to content/wp-content/uploads/2010/03/p3177919-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177919-12-300x246.jpg b/content/wp-content/uploads/2010/03/p3177919-12-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177919-12-300x246.jpg
rename to content/wp-content/uploads/2010/03/p3177919-12-300x246.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177919-12-730x600.jpg b/content/wp-content/uploads/2010/03/p3177919-12-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177919-12-730x600.jpg
rename to content/wp-content/uploads/2010/03/p3177919-12-730x600.jpg
diff --git a/files/wp-content/uploads/2010/03/p3177919-12.jpg b/content/wp-content/uploads/2010/03/p3177919-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/03/p3177919-12.jpg
rename to content/wp-content/uploads/2010/03/p3177919-12.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167800-11-150x150.jpg b/content/wp-content/uploads/2010/04/P3167800-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167800-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P3167800-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167800-11-300x225.jpg b/content/wp-content/uploads/2010/04/P3167800-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167800-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P3167800-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167800-11-800x600.jpg b/content/wp-content/uploads/2010/04/P3167800-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167800-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P3167800-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167800-11.jpg b/content/wp-content/uploads/2010/04/P3167800-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167800-11.jpg
rename to content/wp-content/uploads/2010/04/P3167800-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167808-11-150x150.jpg b/content/wp-content/uploads/2010/04/P3167808-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167808-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P3167808-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167808-11-300x225.jpg b/content/wp-content/uploads/2010/04/P3167808-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167808-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P3167808-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167808-11-800x600.jpg b/content/wp-content/uploads/2010/04/P3167808-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167808-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P3167808-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167808-11.jpg b/content/wp-content/uploads/2010/04/P3167808-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167808-11.jpg
rename to content/wp-content/uploads/2010/04/P3167808-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167813-11-150x150.jpg b/content/wp-content/uploads/2010/04/P3167813-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167813-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P3167813-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167813-11-300x225.jpg b/content/wp-content/uploads/2010/04/P3167813-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167813-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P3167813-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167813-11-800x600.jpg b/content/wp-content/uploads/2010/04/P3167813-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167813-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P3167813-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167813-11.jpg b/content/wp-content/uploads/2010/04/P3167813-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167813-11.jpg
rename to content/wp-content/uploads/2010/04/P3167813-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167814-11-150x150.jpg b/content/wp-content/uploads/2010/04/P3167814-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167814-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P3167814-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167814-11-300x225.jpg b/content/wp-content/uploads/2010/04/P3167814-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167814-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P3167814-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167814-11-800x600.jpg b/content/wp-content/uploads/2010/04/P3167814-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167814-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P3167814-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P3167814-11.jpg b/content/wp-content/uploads/2010/04/P3167814-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3167814-11.jpg
rename to content/wp-content/uploads/2010/04/P3167814-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P3277944-150x150.jpg b/content/wp-content/uploads/2010/04/P3277944-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3277944-150x150.jpg
rename to content/wp-content/uploads/2010/04/P3277944-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P3277944-300x246.jpg b/content/wp-content/uploads/2010/04/P3277944-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3277944-300x246.jpg
rename to content/wp-content/uploads/2010/04/P3277944-300x246.jpg
diff --git a/files/wp-content/uploads/2010/04/P3277944-730x600.jpg b/content/wp-content/uploads/2010/04/P3277944-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3277944-730x600.jpg
rename to content/wp-content/uploads/2010/04/P3277944-730x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P3277944.jpg b/content/wp-content/uploads/2010/04/P3277944.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3277944.jpg
rename to content/wp-content/uploads/2010/04/P3277944.jpg
diff --git a/files/wp-content/uploads/2010/04/P3277945-150x150.jpg b/content/wp-content/uploads/2010/04/P3277945-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3277945-150x150.jpg
rename to content/wp-content/uploads/2010/04/P3277945-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P3277945-300x246.jpg b/content/wp-content/uploads/2010/04/P3277945-300x246.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3277945-300x246.jpg
rename to content/wp-content/uploads/2010/04/P3277945-300x246.jpg
diff --git a/files/wp-content/uploads/2010/04/P3277945-730x600.jpg b/content/wp-content/uploads/2010/04/P3277945-730x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3277945-730x600.jpg
rename to content/wp-content/uploads/2010/04/P3277945-730x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P3277945.jpg b/content/wp-content/uploads/2010/04/P3277945.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P3277945.jpg
rename to content/wp-content/uploads/2010/04/P3277945.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038046-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038046-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038046-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038046-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038046-11-300x225.jpg b/content/wp-content/uploads/2010/04/P4038046-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038046-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038046-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038046-11-800x600.jpg b/content/wp-content/uploads/2010/04/P4038046-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038046-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038046-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038046-11.jpg b/content/wp-content/uploads/2010/04/P4038046-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038046-11.jpg
rename to content/wp-content/uploads/2010/04/P4038046-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038053-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038053-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038053-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038053-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038053-11-300x225.jpg b/content/wp-content/uploads/2010/04/P4038053-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038053-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038053-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038053-11-800x600.jpg b/content/wp-content/uploads/2010/04/P4038053-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038053-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038053-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038053-11.jpg b/content/wp-content/uploads/2010/04/P4038053-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038053-11.jpg
rename to content/wp-content/uploads/2010/04/P4038053-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038059-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038059-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038059-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038059-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038059-11-300x225.jpg b/content/wp-content/uploads/2010/04/P4038059-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038059-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038059-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038059-11-800x600.jpg b/content/wp-content/uploads/2010/04/P4038059-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038059-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038059-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038059-11.jpg b/content/wp-content/uploads/2010/04/P4038059-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038059-11.jpg
rename to content/wp-content/uploads/2010/04/P4038059-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038060-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038060-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038060-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038060-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038060-11-300x225.jpg b/content/wp-content/uploads/2010/04/P4038060-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038060-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038060-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038060-11-800x600.jpg b/content/wp-content/uploads/2010/04/P4038060-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038060-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038060-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038060-11.jpg b/content/wp-content/uploads/2010/04/P4038060-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038060-11.jpg
rename to content/wp-content/uploads/2010/04/P4038060-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038061-21-150x150.jpg b/content/wp-content/uploads/2010/04/P4038061-21-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038061-21-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038061-21-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038061-21-300x225.jpg b/content/wp-content/uploads/2010/04/P4038061-21-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038061-21-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038061-21-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038061-21-800x600.jpg b/content/wp-content/uploads/2010/04/P4038061-21-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038061-21-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038061-21-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038061-21.jpg b/content/wp-content/uploads/2010/04/P4038061-21.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038061-21.jpg
rename to content/wp-content/uploads/2010/04/P4038061-21.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038065-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038065-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038065-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038065-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038065-11-300x160.jpg b/content/wp-content/uploads/2010/04/P4038065-11-300x160.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038065-11-300x160.jpg
rename to content/wp-content/uploads/2010/04/P4038065-11-300x160.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038065-11-800x427.jpg b/content/wp-content/uploads/2010/04/P4038065-11-800x427.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038065-11-800x427.jpg
rename to content/wp-content/uploads/2010/04/P4038065-11-800x427.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038065-11.jpg b/content/wp-content/uploads/2010/04/P4038065-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038065-11.jpg
rename to content/wp-content/uploads/2010/04/P4038065-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038076-21-150x150.jpg b/content/wp-content/uploads/2010/04/P4038076-21-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038076-21-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038076-21-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038076-21-300x225.jpg b/content/wp-content/uploads/2010/04/P4038076-21-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038076-21-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038076-21-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038076-21-800x600.jpg b/content/wp-content/uploads/2010/04/P4038076-21-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038076-21-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038076-21-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038076-21.jpg b/content/wp-content/uploads/2010/04/P4038076-21.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038076-21.jpg
rename to content/wp-content/uploads/2010/04/P4038076-21.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038102-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038102-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038102-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038102-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038102-11-300x189.jpg b/content/wp-content/uploads/2010/04/P4038102-11-300x189.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038102-11-300x189.jpg
rename to content/wp-content/uploads/2010/04/P4038102-11-300x189.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038102-11-800x504.jpg b/content/wp-content/uploads/2010/04/P4038102-11-800x504.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038102-11-800x504.jpg
rename to content/wp-content/uploads/2010/04/P4038102-11-800x504.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038102-11.jpg b/content/wp-content/uploads/2010/04/P4038102-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038102-11.jpg
rename to content/wp-content/uploads/2010/04/P4038102-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038113-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038113-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038113-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038113-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038113-11-300x239.jpg b/content/wp-content/uploads/2010/04/P4038113-11-300x239.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038113-11-300x239.jpg
rename to content/wp-content/uploads/2010/04/P4038113-11-300x239.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038113-11-752x600.jpg b/content/wp-content/uploads/2010/04/P4038113-11-752x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038113-11-752x600.jpg
rename to content/wp-content/uploads/2010/04/P4038113-11-752x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038113-11.jpg b/content/wp-content/uploads/2010/04/P4038113-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038113-11.jpg
rename to content/wp-content/uploads/2010/04/P4038113-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038115-hdr1-150x150.jpg b/content/wp-content/uploads/2010/04/P4038115-hdr1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038115-hdr1-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038115-hdr1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038115-hdr1-300x225.jpg b/content/wp-content/uploads/2010/04/P4038115-hdr1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038115-hdr1-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038115-hdr1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038115-hdr1-800x600.jpg b/content/wp-content/uploads/2010/04/P4038115-hdr1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038115-hdr1-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038115-hdr1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038115-hdr1.jpg b/content/wp-content/uploads/2010/04/P4038115-hdr1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038115-hdr1.jpg
rename to content/wp-content/uploads/2010/04/P4038115-hdr1.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038121-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038121-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038121-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038121-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038121-11-300x225.jpg b/content/wp-content/uploads/2010/04/P4038121-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038121-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038121-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038121-11-800x600.jpg b/content/wp-content/uploads/2010/04/P4038121-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038121-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038121-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038121-11.jpg b/content/wp-content/uploads/2010/04/P4038121-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038121-11.jpg
rename to content/wp-content/uploads/2010/04/P4038121-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038121-12-150x150.jpg b/content/wp-content/uploads/2010/04/P4038121-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038121-12-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038121-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038121-12-300x225.jpg b/content/wp-content/uploads/2010/04/P4038121-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038121-12-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038121-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038121-12-800x600.jpg b/content/wp-content/uploads/2010/04/P4038121-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038121-12-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038121-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038121-12.jpg b/content/wp-content/uploads/2010/04/P4038121-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038121-12.jpg
rename to content/wp-content/uploads/2010/04/P4038121-12.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038122-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038122-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038122-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038122-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038122-11-300x225.jpg b/content/wp-content/uploads/2010/04/P4038122-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038122-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038122-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038122-11-800x600.jpg b/content/wp-content/uploads/2010/04/P4038122-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038122-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038122-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038122-11.jpg b/content/wp-content/uploads/2010/04/P4038122-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038122-11.jpg
rename to content/wp-content/uploads/2010/04/P4038122-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038122-12-150x150.jpg b/content/wp-content/uploads/2010/04/P4038122-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038122-12-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038122-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038122-12-300x225.jpg b/content/wp-content/uploads/2010/04/P4038122-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038122-12-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038122-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038122-12-800x600.jpg b/content/wp-content/uploads/2010/04/P4038122-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038122-12-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038122-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038122-12.jpg b/content/wp-content/uploads/2010/04/P4038122-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038122-12.jpg
rename to content/wp-content/uploads/2010/04/P4038122-12.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038128-11-150x150.jpg b/content/wp-content/uploads/2010/04/P4038128-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038128-11-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038128-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038128-11-300x225.jpg b/content/wp-content/uploads/2010/04/P4038128-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038128-11-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038128-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038128-11-800x600.jpg b/content/wp-content/uploads/2010/04/P4038128-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038128-11-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038128-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038128-11.jpg b/content/wp-content/uploads/2010/04/P4038128-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038128-11.jpg
rename to content/wp-content/uploads/2010/04/P4038128-11.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038136-21-150x150.jpg b/content/wp-content/uploads/2010/04/P4038136-21-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038136-21-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038136-21-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038136-21-300x271.jpg b/content/wp-content/uploads/2010/04/P4038136-21-300x271.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038136-21-300x271.jpg
rename to content/wp-content/uploads/2010/04/P4038136-21-300x271.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038136-21-662x600.jpg b/content/wp-content/uploads/2010/04/P4038136-21-662x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038136-21-662x600.jpg
rename to content/wp-content/uploads/2010/04/P4038136-21-662x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038136-21.jpg b/content/wp-content/uploads/2010/04/P4038136-21.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038136-21.jpg
rename to content/wp-content/uploads/2010/04/P4038136-21.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038186-21-150x150.jpg b/content/wp-content/uploads/2010/04/P4038186-21-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038186-21-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038186-21-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038186-21-300x225.jpg b/content/wp-content/uploads/2010/04/P4038186-21-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038186-21-300x225.jpg
rename to content/wp-content/uploads/2010/04/P4038186-21-300x225.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038186-21-800x600.jpg b/content/wp-content/uploads/2010/04/P4038186-21-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038186-21-800x600.jpg
rename to content/wp-content/uploads/2010/04/P4038186-21-800x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038186-21.jpg b/content/wp-content/uploads/2010/04/P4038186-21.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038186-21.jpg
rename to content/wp-content/uploads/2010/04/P4038186-21.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038219-21-150x150.jpg b/content/wp-content/uploads/2010/04/P4038219-21-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038219-21-150x150.jpg
rename to content/wp-content/uploads/2010/04/P4038219-21-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038219-21-225x300.jpg b/content/wp-content/uploads/2010/04/P4038219-21-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038219-21-225x300.jpg
rename to content/wp-content/uploads/2010/04/P4038219-21-225x300.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038219-21-450x600.jpg b/content/wp-content/uploads/2010/04/P4038219-21-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038219-21-450x600.jpg
rename to content/wp-content/uploads/2010/04/P4038219-21-450x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P4038219-21.jpg b/content/wp-content/uploads/2010/04/P4038219-21.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P4038219-21.jpg
rename to content/wp-content/uploads/2010/04/P4038219-21.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185521-150x150.jpg b/content/wp-content/uploads/2010/04/P41185521-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185521-150x150.jpg
rename to content/wp-content/uploads/2010/04/P41185521-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185521-300x223.jpg b/content/wp-content/uploads/2010/04/P41185521-300x223.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185521-300x223.jpg
rename to content/wp-content/uploads/2010/04/P41185521-300x223.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185521-800x596.jpg b/content/wp-content/uploads/2010/04/P41185521-800x596.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185521-800x596.jpg
rename to content/wp-content/uploads/2010/04/P41185521-800x596.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185521.jpg b/content/wp-content/uploads/2010/04/P41185521.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185521.jpg
rename to content/wp-content/uploads/2010/04/P41185521.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185621-150x150.jpg b/content/wp-content/uploads/2010/04/P41185621-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185621-150x150.jpg
rename to content/wp-content/uploads/2010/04/P41185621-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185621-300x226.jpg b/content/wp-content/uploads/2010/04/P41185621-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185621-300x226.jpg
rename to content/wp-content/uploads/2010/04/P41185621-300x226.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185621-796x600.jpg b/content/wp-content/uploads/2010/04/P41185621-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185621-796x600.jpg
rename to content/wp-content/uploads/2010/04/P41185621-796x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185621.jpg b/content/wp-content/uploads/2010/04/P41185621.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185621.jpg
rename to content/wp-content/uploads/2010/04/P41185621.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185631-150x150.jpg b/content/wp-content/uploads/2010/04/P41185631-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185631-150x150.jpg
rename to content/wp-content/uploads/2010/04/P41185631-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185631-300x226.jpg b/content/wp-content/uploads/2010/04/P41185631-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185631-300x226.jpg
rename to content/wp-content/uploads/2010/04/P41185631-300x226.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185631-796x600.jpg b/content/wp-content/uploads/2010/04/P41185631-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185631-796x600.jpg
rename to content/wp-content/uploads/2010/04/P41185631-796x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185631.jpg b/content/wp-content/uploads/2010/04/P41185631.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185631.jpg
rename to content/wp-content/uploads/2010/04/P41185631.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185671-150x150.jpg b/content/wp-content/uploads/2010/04/P41185671-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185671-150x150.jpg
rename to content/wp-content/uploads/2010/04/P41185671-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185671-300x226.jpg b/content/wp-content/uploads/2010/04/P41185671-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185671-300x226.jpg
rename to content/wp-content/uploads/2010/04/P41185671-300x226.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185671-796x600.jpg b/content/wp-content/uploads/2010/04/P41185671-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185671-796x600.jpg
rename to content/wp-content/uploads/2010/04/P41185671-796x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185671.jpg b/content/wp-content/uploads/2010/04/P41185671.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185671.jpg
rename to content/wp-content/uploads/2010/04/P41185671.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185681-150x150.jpg b/content/wp-content/uploads/2010/04/P41185681-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185681-150x150.jpg
rename to content/wp-content/uploads/2010/04/P41185681-150x150.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185681-300x226.jpg b/content/wp-content/uploads/2010/04/P41185681-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185681-300x226.jpg
rename to content/wp-content/uploads/2010/04/P41185681-300x226.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185681-796x600.jpg b/content/wp-content/uploads/2010/04/P41185681-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185681-796x600.jpg
rename to content/wp-content/uploads/2010/04/P41185681-796x600.jpg
diff --git a/files/wp-content/uploads/2010/04/P41185681.jpg b/content/wp-content/uploads/2010/04/P41185681.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/04/P41185681.jpg
rename to content/wp-content/uploads/2010/04/P41185681.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2534-1-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2534-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2534-1-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2534-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2534-1-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2534-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2534-1-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2534-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2534-1-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2534-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2534-1-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2534-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2534-1.jpg b/content/wp-content/uploads/2010/05/DSCN2534-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2534-1.jpg
rename to content/wp-content/uploads/2010/05/DSCN2534-1.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2534-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2534-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2534-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2534-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2534-11-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2534-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2534-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2534-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2534-11-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2534-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2534-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2534-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2534-11.jpg b/content/wp-content/uploads/2010/05/DSCN2534-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2534-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2534-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2535-1-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2535-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2535-1-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2535-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2535-1-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2535-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2535-1-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2535-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2535-1-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2535-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2535-1-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2535-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2535-1.jpg b/content/wp-content/uploads/2010/05/DSCN2535-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2535-1.jpg
rename to content/wp-content/uploads/2010/05/DSCN2535-1.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2536-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2536-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2536-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2536-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2536-11-240x300.jpg b/content/wp-content/uploads/2010/05/DSCN2536-11-240x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2536-11-240x300.jpg
rename to content/wp-content/uploads/2010/05/DSCN2536-11-240x300.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2536-11-481x600.jpg b/content/wp-content/uploads/2010/05/DSCN2536-11-481x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2536-11-481x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2536-11-481x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2536-11.jpg b/content/wp-content/uploads/2010/05/DSCN2536-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2536-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2536-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2538-1-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2538-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2538-1-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2538-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2538-1-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2538-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2538-1-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2538-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2538-1-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2538-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2538-1-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2538-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2538-1.jpg b/content/wp-content/uploads/2010/05/DSCN2538-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2538-1.jpg
rename to content/wp-content/uploads/2010/05/DSCN2538-1.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2559-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2559-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2559-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2559-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2559-11-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2559-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2559-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2559-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2559-11-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2559-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2559-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2559-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2559-11.jpg b/content/wp-content/uploads/2010/05/DSCN2559-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2559-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2559-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2559-12-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2559-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2559-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2559-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2559-12-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2559-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2559-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2559-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2559-12-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2559-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2559-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2559-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2559-12.jpg b/content/wp-content/uploads/2010/05/DSCN2559-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2559-12.jpg
rename to content/wp-content/uploads/2010/05/DSCN2559-12.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2560-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2560-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2560-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2560-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2560-11-225x300.jpg b/content/wp-content/uploads/2010/05/DSCN2560-11-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2560-11-225x300.jpg
rename to content/wp-content/uploads/2010/05/DSCN2560-11-225x300.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2560-11-450x600.jpg b/content/wp-content/uploads/2010/05/DSCN2560-11-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2560-11-450x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2560-11-450x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2560-11.jpg b/content/wp-content/uploads/2010/05/DSCN2560-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2560-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2560-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2560-12-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2560-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2560-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2560-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2560-12-225x300.jpg b/content/wp-content/uploads/2010/05/DSCN2560-12-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2560-12-225x300.jpg
rename to content/wp-content/uploads/2010/05/DSCN2560-12-225x300.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2560-12-450x600.jpg b/content/wp-content/uploads/2010/05/DSCN2560-12-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2560-12-450x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2560-12-450x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2560-12.jpg b/content/wp-content/uploads/2010/05/DSCN2560-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2560-12.jpg
rename to content/wp-content/uploads/2010/05/DSCN2560-12.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2561-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2561-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2561-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2561-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2561-11-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2561-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2561-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2561-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2561-11-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2561-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2561-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2561-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2561-11.jpg b/content/wp-content/uploads/2010/05/DSCN2561-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2561-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2561-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2561-12-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2561-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2561-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2561-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2561-12-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2561-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2561-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2561-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2561-12-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2561-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2561-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2561-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2561-12.jpg b/content/wp-content/uploads/2010/05/DSCN2561-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2561-12.jpg
rename to content/wp-content/uploads/2010/05/DSCN2561-12.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2563-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2563-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2563-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2563-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2563-11-300x244.jpg b/content/wp-content/uploads/2010/05/DSCN2563-11-300x244.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2563-11-300x244.jpg
rename to content/wp-content/uploads/2010/05/DSCN2563-11-300x244.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2563-11-736x600.jpg b/content/wp-content/uploads/2010/05/DSCN2563-11-736x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2563-11-736x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2563-11-736x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2563-11.jpg b/content/wp-content/uploads/2010/05/DSCN2563-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2563-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2563-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2563-12-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2563-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2563-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2563-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2563-12-300x244.jpg b/content/wp-content/uploads/2010/05/DSCN2563-12-300x244.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2563-12-300x244.jpg
rename to content/wp-content/uploads/2010/05/DSCN2563-12-300x244.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2563-12-736x600.jpg b/content/wp-content/uploads/2010/05/DSCN2563-12-736x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2563-12-736x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2563-12-736x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2563-12.jpg b/content/wp-content/uploads/2010/05/DSCN2563-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2563-12.jpg
rename to content/wp-content/uploads/2010/05/DSCN2563-12.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2566-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2566-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2566-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2566-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2566-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2566-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2566-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2566-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2566-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2566-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2566-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2566-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2566.jpg b/content/wp-content/uploads/2010/05/DSCN2566.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2566.jpg
rename to content/wp-content/uploads/2010/05/DSCN2566.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2569-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2569-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2569-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2569-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2569-11-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2569-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2569-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2569-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2569-11-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2569-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2569-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2569-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2569-11.jpg b/content/wp-content/uploads/2010/05/DSCN2569-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2569-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2569-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2569-12-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2569-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2569-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2569-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2569-12-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2569-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2569-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2569-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2569-12-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2569-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2569-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2569-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2569-12.jpg b/content/wp-content/uploads/2010/05/DSCN2569-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2569-12.jpg
rename to content/wp-content/uploads/2010/05/DSCN2569-12.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2575-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2575-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2575-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2575-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2575-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2575-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2575-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2575-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2575-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2575-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2575-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2575-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2575.jpg b/content/wp-content/uploads/2010/05/DSCN2575.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2575.jpg
rename to content/wp-content/uploads/2010/05/DSCN2575.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2576-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2576-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2576-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2576-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2576-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2576-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2576-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2576-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2576-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2576-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2576-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2576-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2576.jpg b/content/wp-content/uploads/2010/05/DSCN2576.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2576.jpg
rename to content/wp-content/uploads/2010/05/DSCN2576.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2583-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2583-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2583-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2583-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2583-11-225x300.jpg b/content/wp-content/uploads/2010/05/DSCN2583-11-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2583-11-225x300.jpg
rename to content/wp-content/uploads/2010/05/DSCN2583-11-225x300.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2583-11-450x600.jpg b/content/wp-content/uploads/2010/05/DSCN2583-11-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2583-11-450x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2583-11-450x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2583-11.jpg b/content/wp-content/uploads/2010/05/DSCN2583-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2583-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2583-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2583-12-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2583-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2583-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2583-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2583-12-225x300.jpg b/content/wp-content/uploads/2010/05/DSCN2583-12-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2583-12-225x300.jpg
rename to content/wp-content/uploads/2010/05/DSCN2583-12-225x300.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2583-12-450x600.jpg b/content/wp-content/uploads/2010/05/DSCN2583-12-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2583-12-450x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2583-12-450x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2583-12.jpg b/content/wp-content/uploads/2010/05/DSCN2583-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2583-12.jpg
rename to content/wp-content/uploads/2010/05/DSCN2583-12.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2593-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2593-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2593-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2593-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2593-11-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2593-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2593-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2593-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2593-11-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2593-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2593-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2593-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2593-11.jpg b/content/wp-content/uploads/2010/05/DSCN2593-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2593-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2593-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2593-12-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2593-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2593-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2593-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2593-12-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2593-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2593-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2593-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2593-12-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2593-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2593-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2593-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2593-12.jpg b/content/wp-content/uploads/2010/05/DSCN2593-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2593-12.jpg
rename to content/wp-content/uploads/2010/05/DSCN2593-12.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2603-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2603-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2603-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2603-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2603-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2603-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2603-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2603-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2603-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2603-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2603-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2603-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2603.jpg b/content/wp-content/uploads/2010/05/DSCN2603.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2603.jpg
rename to content/wp-content/uploads/2010/05/DSCN2603.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2607-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2607-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2607-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2607-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2607-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2607-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2607-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2607-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2607-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2607-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2607-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2607-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2607.jpg b/content/wp-content/uploads/2010/05/DSCN2607.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2607.jpg
rename to content/wp-content/uploads/2010/05/DSCN2607.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2624-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2624-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2624-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2624-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2624-11-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2624-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2624-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2624-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2624-11-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2624-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2624-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2624-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2624-11.jpg b/content/wp-content/uploads/2010/05/DSCN2624-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2624-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2624-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2624-12-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2624-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2624-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2624-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2624-12-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2624-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2624-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2624-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2624-12-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2624-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2624-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2624-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2624-12.jpg b/content/wp-content/uploads/2010/05/DSCN2624-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2624-12.jpg
rename to content/wp-content/uploads/2010/05/DSCN2624-12.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2633-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2633-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2633-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2633-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2633-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2633-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2633-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2633-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2633-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2633-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2633-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2633-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2633.jpg b/content/wp-content/uploads/2010/05/DSCN2633.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2633.jpg
rename to content/wp-content/uploads/2010/05/DSCN2633.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2641-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2641-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2641-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2641-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2641-225x300.jpg b/content/wp-content/uploads/2010/05/DSCN2641-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2641-225x300.jpg
rename to content/wp-content/uploads/2010/05/DSCN2641-225x300.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2641-450x600.jpg b/content/wp-content/uploads/2010/05/DSCN2641-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2641-450x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2641-450x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2641.jpg b/content/wp-content/uploads/2010/05/DSCN2641.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2641.jpg
rename to content/wp-content/uploads/2010/05/DSCN2641.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2643-11-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2643-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2643-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2643-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2643-11-225x300.jpg b/content/wp-content/uploads/2010/05/DSCN2643-11-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2643-11-225x300.jpg
rename to content/wp-content/uploads/2010/05/DSCN2643-11-225x300.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2643-11-450x600.jpg b/content/wp-content/uploads/2010/05/DSCN2643-11-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2643-11-450x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2643-11-450x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2643-11.jpg b/content/wp-content/uploads/2010/05/DSCN2643-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2643-11.jpg
rename to content/wp-content/uploads/2010/05/DSCN2643-11.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2643-12-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2643-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2643-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2643-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2643-12-225x300.jpg b/content/wp-content/uploads/2010/05/DSCN2643-12-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2643-12-225x300.jpg
rename to content/wp-content/uploads/2010/05/DSCN2643-12-225x300.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2643-12-450x600.jpg b/content/wp-content/uploads/2010/05/DSCN2643-12-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2643-12-450x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2643-12-450x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2643-12.jpg b/content/wp-content/uploads/2010/05/DSCN2643-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2643-12.jpg
rename to content/wp-content/uploads/2010/05/DSCN2643-12.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2645-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2645-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2645-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2645-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2645-225x300.jpg b/content/wp-content/uploads/2010/05/DSCN2645-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2645-225x300.jpg
rename to content/wp-content/uploads/2010/05/DSCN2645-225x300.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2645-450x600.jpg b/content/wp-content/uploads/2010/05/DSCN2645-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2645-450x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2645-450x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2645.jpg b/content/wp-content/uploads/2010/05/DSCN2645.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2645.jpg
rename to content/wp-content/uploads/2010/05/DSCN2645.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2652-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2652-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2652-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2652-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2652-300x187.jpg b/content/wp-content/uploads/2010/05/DSCN2652-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2652-300x187.jpg
rename to content/wp-content/uploads/2010/05/DSCN2652-300x187.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2652-800x500.jpg b/content/wp-content/uploads/2010/05/DSCN2652-800x500.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2652-800x500.jpg
rename to content/wp-content/uploads/2010/05/DSCN2652-800x500.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2652.jpg b/content/wp-content/uploads/2010/05/DSCN2652.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2652.jpg
rename to content/wp-content/uploads/2010/05/DSCN2652.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2673-150x150.jpg b/content/wp-content/uploads/2010/05/DSCN2673-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2673-150x150.jpg
rename to content/wp-content/uploads/2010/05/DSCN2673-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2673-300x225.jpg b/content/wp-content/uploads/2010/05/DSCN2673-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2673-300x225.jpg
rename to content/wp-content/uploads/2010/05/DSCN2673-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2673-800x600.jpg b/content/wp-content/uploads/2010/05/DSCN2673-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2673-800x600.jpg
rename to content/wp-content/uploads/2010/05/DSCN2673-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/DSCN2673.jpg b/content/wp-content/uploads/2010/05/DSCN2673.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/DSCN2673.jpg
rename to content/wp-content/uploads/2010/05/DSCN2673.jpg
diff --git a/files/wp-content/uploads/2010/05/P4038228-2-150x150.jpg b/content/wp-content/uploads/2010/05/P4038228-2-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4038228-2-150x150.jpg
rename to content/wp-content/uploads/2010/05/P4038228-2-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P4038228-2-300x225.jpg b/content/wp-content/uploads/2010/05/P4038228-2-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4038228-2-300x225.jpg
rename to content/wp-content/uploads/2010/05/P4038228-2-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P4038228-2-800x600.jpg b/content/wp-content/uploads/2010/05/P4038228-2-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4038228-2-800x600.jpg
rename to content/wp-content/uploads/2010/05/P4038228-2-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P4038228-2.jpg b/content/wp-content/uploads/2010/05/P4038228-2.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4038228-2.jpg
rename to content/wp-content/uploads/2010/05/P4038228-2.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268863-1-150x150.jpg b/content/wp-content/uploads/2010/05/P4268863-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268863-1-150x150.jpg
rename to content/wp-content/uploads/2010/05/P4268863-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268863-1-209x300.jpg b/content/wp-content/uploads/2010/05/P4268863-1-209x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268863-1-209x300.jpg
rename to content/wp-content/uploads/2010/05/P4268863-1-209x300.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268863-1-419x600.jpg b/content/wp-content/uploads/2010/05/P4268863-1-419x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268863-1-419x600.jpg
rename to content/wp-content/uploads/2010/05/P4268863-1-419x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268863-1.jpg b/content/wp-content/uploads/2010/05/P4268863-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268863-1.jpg
rename to content/wp-content/uploads/2010/05/P4268863-1.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268863-11-150x150.jpg b/content/wp-content/uploads/2010/05/P4268863-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268863-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P4268863-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268863-11-209x300.jpg b/content/wp-content/uploads/2010/05/P4268863-11-209x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268863-11-209x300.jpg
rename to content/wp-content/uploads/2010/05/P4268863-11-209x300.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268863-11-419x600.jpg b/content/wp-content/uploads/2010/05/P4268863-11-419x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268863-11-419x600.jpg
rename to content/wp-content/uploads/2010/05/P4268863-11-419x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268863-11.jpg b/content/wp-content/uploads/2010/05/P4268863-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268863-11.jpg
rename to content/wp-content/uploads/2010/05/P4268863-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268864-1-150x150.jpg b/content/wp-content/uploads/2010/05/P4268864-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268864-1-150x150.jpg
rename to content/wp-content/uploads/2010/05/P4268864-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268864-1-300x225.jpg b/content/wp-content/uploads/2010/05/P4268864-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268864-1-300x225.jpg
rename to content/wp-content/uploads/2010/05/P4268864-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268864-1-796x600.jpg b/content/wp-content/uploads/2010/05/P4268864-1-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268864-1-796x600.jpg
rename to content/wp-content/uploads/2010/05/P4268864-1-796x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268864-1.jpg b/content/wp-content/uploads/2010/05/P4268864-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268864-1.jpg
rename to content/wp-content/uploads/2010/05/P4268864-1.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268864-11-150x150.jpg b/content/wp-content/uploads/2010/05/P4268864-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268864-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P4268864-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268864-11-300x225.jpg b/content/wp-content/uploads/2010/05/P4268864-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268864-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/P4268864-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268864-11-796x600.jpg b/content/wp-content/uploads/2010/05/P4268864-11-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268864-11-796x600.jpg
rename to content/wp-content/uploads/2010/05/P4268864-11-796x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268864-11.jpg b/content/wp-content/uploads/2010/05/P4268864-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268864-11.jpg
rename to content/wp-content/uploads/2010/05/P4268864-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268865-1-150x150.jpg b/content/wp-content/uploads/2010/05/P4268865-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268865-1-150x150.jpg
rename to content/wp-content/uploads/2010/05/P4268865-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268865-1-300x225.jpg b/content/wp-content/uploads/2010/05/P4268865-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268865-1-300x225.jpg
rename to content/wp-content/uploads/2010/05/P4268865-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268865-1-796x600.jpg b/content/wp-content/uploads/2010/05/P4268865-1-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268865-1-796x600.jpg
rename to content/wp-content/uploads/2010/05/P4268865-1-796x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268865-1.jpg b/content/wp-content/uploads/2010/05/P4268865-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268865-1.jpg
rename to content/wp-content/uploads/2010/05/P4268865-1.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268865-11-150x150.jpg b/content/wp-content/uploads/2010/05/P4268865-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268865-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P4268865-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268865-11-300x225.jpg b/content/wp-content/uploads/2010/05/P4268865-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268865-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/P4268865-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268865-11-796x600.jpg b/content/wp-content/uploads/2010/05/P4268865-11-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268865-11-796x600.jpg
rename to content/wp-content/uploads/2010/05/P4268865-11-796x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P4268865-11.jpg b/content/wp-content/uploads/2010/05/P4268865-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P4268865-11.jpg
rename to content/wp-content/uploads/2010/05/P4268865-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159076-11-150x150.jpg b/content/wp-content/uploads/2010/05/P5159076-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159076-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159076-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159076-11-300x225.jpg b/content/wp-content/uploads/2010/05/P5159076-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159076-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159076-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159076-11-800x600.jpg b/content/wp-content/uploads/2010/05/P5159076-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159076-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159076-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159076-11.jpg b/content/wp-content/uploads/2010/05/P5159076-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159076-11.jpg
rename to content/wp-content/uploads/2010/05/P5159076-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159107-11-150x150.jpg b/content/wp-content/uploads/2010/05/P5159107-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159107-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159107-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159107-11-300x225.jpg b/content/wp-content/uploads/2010/05/P5159107-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159107-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159107-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159107-11-800x600.jpg b/content/wp-content/uploads/2010/05/P5159107-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159107-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159107-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159107-11.jpg b/content/wp-content/uploads/2010/05/P5159107-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159107-11.jpg
rename to content/wp-content/uploads/2010/05/P5159107-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159107-12-150x150.jpg b/content/wp-content/uploads/2010/05/P5159107-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159107-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159107-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159107-12-300x225.jpg b/content/wp-content/uploads/2010/05/P5159107-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159107-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159107-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159107-12-800x600.jpg b/content/wp-content/uploads/2010/05/P5159107-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159107-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159107-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159107-12.jpg b/content/wp-content/uploads/2010/05/P5159107-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159107-12.jpg
rename to content/wp-content/uploads/2010/05/P5159107-12.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159273-11-150x150.jpg b/content/wp-content/uploads/2010/05/P5159273-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159273-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159273-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159273-11-300x225.jpg b/content/wp-content/uploads/2010/05/P5159273-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159273-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159273-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159273-11-800x600.jpg b/content/wp-content/uploads/2010/05/P5159273-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159273-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159273-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159273-11.jpg b/content/wp-content/uploads/2010/05/P5159273-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159273-11.jpg
rename to content/wp-content/uploads/2010/05/P5159273-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159273-12-150x150.jpg b/content/wp-content/uploads/2010/05/P5159273-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159273-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159273-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159273-12-300x225.jpg b/content/wp-content/uploads/2010/05/P5159273-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159273-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159273-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159273-12-800x600.jpg b/content/wp-content/uploads/2010/05/P5159273-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159273-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159273-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159273-12.jpg b/content/wp-content/uploads/2010/05/P5159273-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159273-12.jpg
rename to content/wp-content/uploads/2010/05/P5159273-12.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159274-11-150x150.jpg b/content/wp-content/uploads/2010/05/P5159274-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159274-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159274-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159274-11-232x300.jpg b/content/wp-content/uploads/2010/05/P5159274-11-232x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159274-11-232x300.jpg
rename to content/wp-content/uploads/2010/05/P5159274-11-232x300.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159274-11-464x600.jpg b/content/wp-content/uploads/2010/05/P5159274-11-464x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159274-11-464x600.jpg
rename to content/wp-content/uploads/2010/05/P5159274-11-464x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159274-11.jpg b/content/wp-content/uploads/2010/05/P5159274-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159274-11.jpg
rename to content/wp-content/uploads/2010/05/P5159274-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159274-12-150x150.jpg b/content/wp-content/uploads/2010/05/P5159274-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159274-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159274-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159274-12-232x300.jpg b/content/wp-content/uploads/2010/05/P5159274-12-232x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159274-12-232x300.jpg
rename to content/wp-content/uploads/2010/05/P5159274-12-232x300.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159274-12-464x600.jpg b/content/wp-content/uploads/2010/05/P5159274-12-464x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159274-12-464x600.jpg
rename to content/wp-content/uploads/2010/05/P5159274-12-464x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159274-12.jpg b/content/wp-content/uploads/2010/05/P5159274-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159274-12.jpg
rename to content/wp-content/uploads/2010/05/P5159274-12.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159280-11-150x150.jpg b/content/wp-content/uploads/2010/05/P5159280-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159280-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159280-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159280-11-300x225.jpg b/content/wp-content/uploads/2010/05/P5159280-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159280-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159280-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159280-11-800x600.jpg b/content/wp-content/uploads/2010/05/P5159280-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159280-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159280-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159280-11.jpg b/content/wp-content/uploads/2010/05/P5159280-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159280-11.jpg
rename to content/wp-content/uploads/2010/05/P5159280-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159280-12-150x150.jpg b/content/wp-content/uploads/2010/05/P5159280-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159280-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159280-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159280-12-300x225.jpg b/content/wp-content/uploads/2010/05/P5159280-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159280-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159280-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159280-12-800x600.jpg b/content/wp-content/uploads/2010/05/P5159280-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159280-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159280-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159280-12.jpg b/content/wp-content/uploads/2010/05/P5159280-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159280-12.jpg
rename to content/wp-content/uploads/2010/05/P5159280-12.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159304-11-150x150.jpg b/content/wp-content/uploads/2010/05/P5159304-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159304-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159304-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159304-11-300x225.jpg b/content/wp-content/uploads/2010/05/P5159304-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159304-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159304-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159304-11-800x600.jpg b/content/wp-content/uploads/2010/05/P5159304-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159304-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159304-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159304-11.jpg b/content/wp-content/uploads/2010/05/P5159304-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159304-11.jpg
rename to content/wp-content/uploads/2010/05/P5159304-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159304-12-150x150.jpg b/content/wp-content/uploads/2010/05/P5159304-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159304-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159304-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159304-12-300x225.jpg b/content/wp-content/uploads/2010/05/P5159304-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159304-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159304-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159304-12-800x600.jpg b/content/wp-content/uploads/2010/05/P5159304-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159304-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159304-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159304-12.jpg b/content/wp-content/uploads/2010/05/P5159304-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159304-12.jpg
rename to content/wp-content/uploads/2010/05/P5159304-12.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159343-11-150x150.jpg b/content/wp-content/uploads/2010/05/P5159343-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159343-11-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159343-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159343-11-300x225.jpg b/content/wp-content/uploads/2010/05/P5159343-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159343-11-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159343-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159343-11-800x600.jpg b/content/wp-content/uploads/2010/05/P5159343-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159343-11-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159343-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159343-11.jpg b/content/wp-content/uploads/2010/05/P5159343-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159343-11.jpg
rename to content/wp-content/uploads/2010/05/P5159343-11.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159343-12-150x150.jpg b/content/wp-content/uploads/2010/05/P5159343-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159343-12-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5159343-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159343-12-300x225.jpg b/content/wp-content/uploads/2010/05/P5159343-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159343-12-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5159343-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159343-12-800x600.jpg b/content/wp-content/uploads/2010/05/P5159343-12-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159343-12-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5159343-12-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5159343-12.jpg b/content/wp-content/uploads/2010/05/P5159343-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5159343-12.jpg
rename to content/wp-content/uploads/2010/05/P5159343-12.jpg
diff --git a/files/wp-content/uploads/2010/05/P5169412-150x150.jpg b/content/wp-content/uploads/2010/05/P5169412-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5169412-150x150.jpg
rename to content/wp-content/uploads/2010/05/P5169412-150x150.jpg
diff --git a/files/wp-content/uploads/2010/05/P5169412-300x225.jpg b/content/wp-content/uploads/2010/05/P5169412-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5169412-300x225.jpg
rename to content/wp-content/uploads/2010/05/P5169412-300x225.jpg
diff --git a/files/wp-content/uploads/2010/05/P5169412-800x600.jpg b/content/wp-content/uploads/2010/05/P5169412-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5169412-800x600.jpg
rename to content/wp-content/uploads/2010/05/P5169412-800x600.jpg
diff --git a/files/wp-content/uploads/2010/05/P5169412.jpg b/content/wp-content/uploads/2010/05/P5169412.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/05/P5169412.jpg
rename to content/wp-content/uploads/2010/05/P5169412.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2544-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN2544-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2544-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN2544-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2544-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN2544-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2544-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN2544-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2544-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN2544-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2544-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN2544-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2544.jpg b/content/wp-content/uploads/2010/06/DSCN2544.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2544.jpg
rename to content/wp-content/uploads/2010/06/DSCN2544.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25441-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN25441-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25441-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN25441-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25441-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN25441-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25441-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN25441-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25441-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN25441-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25441-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN25441-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25441.jpg b/content/wp-content/uploads/2010/06/DSCN25441.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25441.jpg
rename to content/wp-content/uploads/2010/06/DSCN25441.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25442-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN25442-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25442-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN25442-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25442-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN25442-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25442-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN25442-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25442-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN25442-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25442-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN25442-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25442.jpg b/content/wp-content/uploads/2010/06/DSCN25442.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25442.jpg
rename to content/wp-content/uploads/2010/06/DSCN25442.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25443-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN25443-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25443-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN25443-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25443-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN25443-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25443-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN25443-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25443-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN25443-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25443-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN25443-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25443.jpg b/content/wp-content/uploads/2010/06/DSCN25443.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25443.jpg
rename to content/wp-content/uploads/2010/06/DSCN25443.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25444-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN25444-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25444-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN25444-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25444-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN25444-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25444-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN25444-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25444-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN25444-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25444-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN25444-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25444.jpg b/content/wp-content/uploads/2010/06/DSCN25444.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25444.jpg
rename to content/wp-content/uploads/2010/06/DSCN25444.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25445-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN25445-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25445-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN25445-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25445-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN25445-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25445-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN25445-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25445-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN25445-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25445-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN25445-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25445.jpg b/content/wp-content/uploads/2010/06/DSCN25445.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25445.jpg
rename to content/wp-content/uploads/2010/06/DSCN25445.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25446-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN25446-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25446-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN25446-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25446-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN25446-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25446-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN25446-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25446-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN25446-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25446-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN25446-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN25446.jpg b/content/wp-content/uploads/2010/06/DSCN25446.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN25446.jpg
rename to content/wp-content/uploads/2010/06/DSCN25446.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2656-1-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN2656-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2656-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN2656-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2656-1-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN2656-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2656-1-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN2656-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2656-1-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN2656-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2656-1-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN2656-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2656-1.jpg b/content/wp-content/uploads/2010/06/DSCN2656-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2656-1.jpg
rename to content/wp-content/uploads/2010/06/DSCN2656-1.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2656-11-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN2656-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2656-11-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN2656-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2656-11-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN2656-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2656-11-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN2656-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2656-11-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN2656-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2656-11-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN2656-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2656-11.jpg b/content/wp-content/uploads/2010/06/DSCN2656-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2656-11.jpg
rename to content/wp-content/uploads/2010/06/DSCN2656-11.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2678-1-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN2678-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2678-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN2678-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2678-1-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN2678-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2678-1-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN2678-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2678-1-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN2678-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2678-1-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN2678-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2678-1.jpg b/content/wp-content/uploads/2010/06/DSCN2678-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2678-1.jpg
rename to content/wp-content/uploads/2010/06/DSCN2678-1.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2678-11-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN2678-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2678-11-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN2678-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2678-11-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN2678-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2678-11-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN2678-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2678-11-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN2678-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2678-11-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN2678-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2678-11.jpg b/content/wp-content/uploads/2010/06/DSCN2678-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2678-11.jpg
rename to content/wp-content/uploads/2010/06/DSCN2678-11.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2680-1-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN2680-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2680-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN2680-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2680-1-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN2680-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2680-1-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN2680-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2680-1-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN2680-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2680-1-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN2680-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2680-1.jpg b/content/wp-content/uploads/2010/06/DSCN2680-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2680-1.jpg
rename to content/wp-content/uploads/2010/06/DSCN2680-1.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2680-11-150x150.jpg b/content/wp-content/uploads/2010/06/DSCN2680-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2680-11-150x150.jpg
rename to content/wp-content/uploads/2010/06/DSCN2680-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2680-11-300x225.jpg b/content/wp-content/uploads/2010/06/DSCN2680-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2680-11-300x225.jpg
rename to content/wp-content/uploads/2010/06/DSCN2680-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2680-11-800x600.jpg b/content/wp-content/uploads/2010/06/DSCN2680-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2680-11-800x600.jpg
rename to content/wp-content/uploads/2010/06/DSCN2680-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/DSCN2680-11.jpg b/content/wp-content/uploads/2010/06/DSCN2680-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/DSCN2680-11.jpg
rename to content/wp-content/uploads/2010/06/DSCN2680-11.jpg
diff --git a/files/wp-content/uploads/2010/06/P3147781-1-150x150.jpg b/content/wp-content/uploads/2010/06/P3147781-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3147781-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/P3147781-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P3147781-1-300x225.jpg b/content/wp-content/uploads/2010/06/P3147781-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3147781-1-300x225.jpg
rename to content/wp-content/uploads/2010/06/P3147781-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P3147781-1-800x600.jpg b/content/wp-content/uploads/2010/06/P3147781-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3147781-1-800x600.jpg
rename to content/wp-content/uploads/2010/06/P3147781-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P3147781-1.jpg b/content/wp-content/uploads/2010/06/P3147781-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3147781-1.jpg
rename to content/wp-content/uploads/2010/06/P3147781-1.jpg
diff --git a/files/wp-content/uploads/2010/06/P3147781-11-150x150.jpg b/content/wp-content/uploads/2010/06/P3147781-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3147781-11-150x150.jpg
rename to content/wp-content/uploads/2010/06/P3147781-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P3147781-11-300x225.jpg b/content/wp-content/uploads/2010/06/P3147781-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3147781-11-300x225.jpg
rename to content/wp-content/uploads/2010/06/P3147781-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P3147781-11-800x600.jpg b/content/wp-content/uploads/2010/06/P3147781-11-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3147781-11-800x600.jpg
rename to content/wp-content/uploads/2010/06/P3147781-11-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P3147781-11.jpg b/content/wp-content/uploads/2010/06/P3147781-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3147781-11.jpg
rename to content/wp-content/uploads/2010/06/P3147781-11.jpg
diff --git a/files/wp-content/uploads/2010/06/P3267927-1-150x150.jpg b/content/wp-content/uploads/2010/06/P3267927-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3267927-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/P3267927-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P3267927-1-300x207.jpg b/content/wp-content/uploads/2010/06/P3267927-1-300x207.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3267927-1-300x207.jpg
rename to content/wp-content/uploads/2010/06/P3267927-1-300x207.jpg
diff --git a/files/wp-content/uploads/2010/06/P3267927-1-800x553.jpg b/content/wp-content/uploads/2010/06/P3267927-1-800x553.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3267927-1-800x553.jpg
rename to content/wp-content/uploads/2010/06/P3267927-1-800x553.jpg
diff --git a/files/wp-content/uploads/2010/06/P3267927-1.jpg b/content/wp-content/uploads/2010/06/P3267927-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3267927-1.jpg
rename to content/wp-content/uploads/2010/06/P3267927-1.jpg
diff --git a/files/wp-content/uploads/2010/06/P3267927-11-150x150.jpg b/content/wp-content/uploads/2010/06/P3267927-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3267927-11-150x150.jpg
rename to content/wp-content/uploads/2010/06/P3267927-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P3267927-11-300x207.jpg b/content/wp-content/uploads/2010/06/P3267927-11-300x207.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3267927-11-300x207.jpg
rename to content/wp-content/uploads/2010/06/P3267927-11-300x207.jpg
diff --git a/files/wp-content/uploads/2010/06/P3267927-11-800x553.jpg b/content/wp-content/uploads/2010/06/P3267927-11-800x553.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3267927-11-800x553.jpg
rename to content/wp-content/uploads/2010/06/P3267927-11-800x553.jpg
diff --git a/files/wp-content/uploads/2010/06/P3267927-11.jpg b/content/wp-content/uploads/2010/06/P3267927-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P3267927-11.jpg
rename to content/wp-content/uploads/2010/06/P3267927-11.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-1-150x150.jpg b/content/wp-content/uploads/2010/06/P4288885-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/P4288885-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-1-300x225.jpg b/content/wp-content/uploads/2010/06/P4288885-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-1-300x225.jpg
rename to content/wp-content/uploads/2010/06/P4288885-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-1-796x600.jpg b/content/wp-content/uploads/2010/06/P4288885-1-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-1-796x600.jpg
rename to content/wp-content/uploads/2010/06/P4288885-1-796x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-1.jpg b/content/wp-content/uploads/2010/06/P4288885-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-1.jpg
rename to content/wp-content/uploads/2010/06/P4288885-1.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-11-150x150.jpg b/content/wp-content/uploads/2010/06/P4288885-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-11-150x150.jpg
rename to content/wp-content/uploads/2010/06/P4288885-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-11-300x225.jpg b/content/wp-content/uploads/2010/06/P4288885-11-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-11-300x225.jpg
rename to content/wp-content/uploads/2010/06/P4288885-11-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-11-796x600.jpg b/content/wp-content/uploads/2010/06/P4288885-11-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-11-796x600.jpg
rename to content/wp-content/uploads/2010/06/P4288885-11-796x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-11.jpg b/content/wp-content/uploads/2010/06/P4288885-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-11.jpg
rename to content/wp-content/uploads/2010/06/P4288885-11.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-12-150x150.jpg b/content/wp-content/uploads/2010/06/P4288885-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-12-150x150.jpg
rename to content/wp-content/uploads/2010/06/P4288885-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-12-300x225.jpg b/content/wp-content/uploads/2010/06/P4288885-12-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-12-300x225.jpg
rename to content/wp-content/uploads/2010/06/P4288885-12-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-12-796x600.jpg b/content/wp-content/uploads/2010/06/P4288885-12-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-12-796x600.jpg
rename to content/wp-content/uploads/2010/06/P4288885-12-796x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-12.jpg b/content/wp-content/uploads/2010/06/P4288885-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-12.jpg
rename to content/wp-content/uploads/2010/06/P4288885-12.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-13-150x150.jpg b/content/wp-content/uploads/2010/06/P4288885-13-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-13-150x150.jpg
rename to content/wp-content/uploads/2010/06/P4288885-13-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-13-300x225.jpg b/content/wp-content/uploads/2010/06/P4288885-13-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-13-300x225.jpg
rename to content/wp-content/uploads/2010/06/P4288885-13-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-13-796x600.jpg b/content/wp-content/uploads/2010/06/P4288885-13-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-13-796x600.jpg
rename to content/wp-content/uploads/2010/06/P4288885-13-796x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-13.jpg b/content/wp-content/uploads/2010/06/P4288885-13.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-13.jpg
rename to content/wp-content/uploads/2010/06/P4288885-13.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-14-150x150.jpg b/content/wp-content/uploads/2010/06/P4288885-14-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-14-150x150.jpg
rename to content/wp-content/uploads/2010/06/P4288885-14-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-14-300x225.jpg b/content/wp-content/uploads/2010/06/P4288885-14-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-14-300x225.jpg
rename to content/wp-content/uploads/2010/06/P4288885-14-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-14-796x600.jpg b/content/wp-content/uploads/2010/06/P4288885-14-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-14-796x600.jpg
rename to content/wp-content/uploads/2010/06/P4288885-14-796x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288885-14.jpg b/content/wp-content/uploads/2010/06/P4288885-14.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288885-14.jpg
rename to content/wp-content/uploads/2010/06/P4288885-14.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288889-1-150x150.jpg b/content/wp-content/uploads/2010/06/P4288889-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288889-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/P4288889-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288889-1-225x300.jpg b/content/wp-content/uploads/2010/06/P4288889-1-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288889-1-225x300.jpg
rename to content/wp-content/uploads/2010/06/P4288889-1-225x300.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288889-1-451x600.jpg b/content/wp-content/uploads/2010/06/P4288889-1-451x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288889-1-451x600.jpg
rename to content/wp-content/uploads/2010/06/P4288889-1-451x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288889-1.jpg b/content/wp-content/uploads/2010/06/P4288889-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288889-1.jpg
rename to content/wp-content/uploads/2010/06/P4288889-1.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288889-11-150x150.jpg b/content/wp-content/uploads/2010/06/P4288889-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288889-11-150x150.jpg
rename to content/wp-content/uploads/2010/06/P4288889-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288889-11-225x300.jpg b/content/wp-content/uploads/2010/06/P4288889-11-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288889-11-225x300.jpg
rename to content/wp-content/uploads/2010/06/P4288889-11-225x300.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288889-11-451x600.jpg b/content/wp-content/uploads/2010/06/P4288889-11-451x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288889-11-451x600.jpg
rename to content/wp-content/uploads/2010/06/P4288889-11-451x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P4288889-11.jpg b/content/wp-content/uploads/2010/06/P4288889-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P4288889-11.jpg
rename to content/wp-content/uploads/2010/06/P4288889-11.jpg
diff --git a/files/wp-content/uploads/2010/06/P5039052-150x150.jpg b/content/wp-content/uploads/2010/06/P5039052-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P5039052-150x150.jpg
rename to content/wp-content/uploads/2010/06/P5039052-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P5039052-300x225.jpg b/content/wp-content/uploads/2010/06/P5039052-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P5039052-300x225.jpg
rename to content/wp-content/uploads/2010/06/P5039052-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P5039052-800x600.jpg b/content/wp-content/uploads/2010/06/P5039052-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P5039052-800x600.jpg
rename to content/wp-content/uploads/2010/06/P5039052-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P5039052.jpg b/content/wp-content/uploads/2010/06/P5039052.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P5039052.jpg
rename to content/wp-content/uploads/2010/06/P5039052.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390521-150x150.jpg b/content/wp-content/uploads/2010/06/P50390521-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390521-150x150.jpg
rename to content/wp-content/uploads/2010/06/P50390521-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390521-300x225.jpg b/content/wp-content/uploads/2010/06/P50390521-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390521-300x225.jpg
rename to content/wp-content/uploads/2010/06/P50390521-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390521-800x600.jpg b/content/wp-content/uploads/2010/06/P50390521-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390521-800x600.jpg
rename to content/wp-content/uploads/2010/06/P50390521-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390521.jpg b/content/wp-content/uploads/2010/06/P50390521.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390521.jpg
rename to content/wp-content/uploads/2010/06/P50390521.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390522-150x150.jpg b/content/wp-content/uploads/2010/06/P50390522-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390522-150x150.jpg
rename to content/wp-content/uploads/2010/06/P50390522-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390522-300x225.jpg b/content/wp-content/uploads/2010/06/P50390522-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390522-300x225.jpg
rename to content/wp-content/uploads/2010/06/P50390522-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390522-800x600.jpg b/content/wp-content/uploads/2010/06/P50390522-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390522-800x600.jpg
rename to content/wp-content/uploads/2010/06/P50390522-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390522.jpg b/content/wp-content/uploads/2010/06/P50390522.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390522.jpg
rename to content/wp-content/uploads/2010/06/P50390522.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390523-150x150.jpg b/content/wp-content/uploads/2010/06/P50390523-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390523-150x150.jpg
rename to content/wp-content/uploads/2010/06/P50390523-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390523-300x225.jpg b/content/wp-content/uploads/2010/06/P50390523-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390523-300x225.jpg
rename to content/wp-content/uploads/2010/06/P50390523-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390523-800x600.jpg b/content/wp-content/uploads/2010/06/P50390523-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390523-800x600.jpg
rename to content/wp-content/uploads/2010/06/P50390523-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390523.jpg b/content/wp-content/uploads/2010/06/P50390523.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390523.jpg
rename to content/wp-content/uploads/2010/06/P50390523.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390524-150x150.jpg b/content/wp-content/uploads/2010/06/P50390524-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390524-150x150.jpg
rename to content/wp-content/uploads/2010/06/P50390524-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390524-300x225.jpg b/content/wp-content/uploads/2010/06/P50390524-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390524-300x225.jpg
rename to content/wp-content/uploads/2010/06/P50390524-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390524-800x600.jpg b/content/wp-content/uploads/2010/06/P50390524-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390524-800x600.jpg
rename to content/wp-content/uploads/2010/06/P50390524-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P50390524.jpg b/content/wp-content/uploads/2010/06/P50390524.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P50390524.jpg
rename to content/wp-content/uploads/2010/06/P50390524.jpg
diff --git a/files/wp-content/uploads/2010/06/P5279442-150x150.jpg b/content/wp-content/uploads/2010/06/P5279442-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P5279442-150x150.jpg
rename to content/wp-content/uploads/2010/06/P5279442-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P5279442-300x230.jpg b/content/wp-content/uploads/2010/06/P5279442-300x230.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P5279442-300x230.jpg
rename to content/wp-content/uploads/2010/06/P5279442-300x230.jpg
diff --git a/files/wp-content/uploads/2010/06/P5279442-781x600.jpg b/content/wp-content/uploads/2010/06/P5279442-781x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P5279442-781x600.jpg
rename to content/wp-content/uploads/2010/06/P5279442-781x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P5279442.jpg b/content/wp-content/uploads/2010/06/P5279442.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P5279442.jpg
rename to content/wp-content/uploads/2010/06/P5279442.jpg
diff --git a/files/wp-content/uploads/2010/06/P52794421-150x150.jpg b/content/wp-content/uploads/2010/06/P52794421-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P52794421-150x150.jpg
rename to content/wp-content/uploads/2010/06/P52794421-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P52794421-300x230.jpg b/content/wp-content/uploads/2010/06/P52794421-300x230.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P52794421-300x230.jpg
rename to content/wp-content/uploads/2010/06/P52794421-300x230.jpg
diff --git a/files/wp-content/uploads/2010/06/P52794421-781x600.jpg b/content/wp-content/uploads/2010/06/P52794421-781x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P52794421-781x600.jpg
rename to content/wp-content/uploads/2010/06/P52794421-781x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P52794421.jpg b/content/wp-content/uploads/2010/06/P52794421.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P52794421.jpg
rename to content/wp-content/uploads/2010/06/P52794421.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229568-150x150.jpg b/content/wp-content/uploads/2010/06/P6229568-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229568-150x150.jpg
rename to content/wp-content/uploads/2010/06/P6229568-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229568-300x225.jpg b/content/wp-content/uploads/2010/06/P6229568-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229568-300x225.jpg
rename to content/wp-content/uploads/2010/06/P6229568-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229568-800x600.jpg b/content/wp-content/uploads/2010/06/P6229568-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229568-800x600.jpg
rename to content/wp-content/uploads/2010/06/P6229568-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229568.jpg b/content/wp-content/uploads/2010/06/P6229568.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229568.jpg
rename to content/wp-content/uploads/2010/06/P6229568.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229569-150x150.jpg b/content/wp-content/uploads/2010/06/P6229569-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229569-150x150.jpg
rename to content/wp-content/uploads/2010/06/P6229569-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229569-300x226.jpg b/content/wp-content/uploads/2010/06/P6229569-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229569-300x226.jpg
rename to content/wp-content/uploads/2010/06/P6229569-300x226.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229569-796x600.jpg b/content/wp-content/uploads/2010/06/P6229569-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229569-796x600.jpg
rename to content/wp-content/uploads/2010/06/P6229569-796x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229569.jpg b/content/wp-content/uploads/2010/06/P6229569.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229569.jpg
rename to content/wp-content/uploads/2010/06/P6229569.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229570-150x150.jpg b/content/wp-content/uploads/2010/06/P6229570-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229570-150x150.jpg
rename to content/wp-content/uploads/2010/06/P6229570-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229570-300x225.jpg b/content/wp-content/uploads/2010/06/P6229570-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229570-300x225.jpg
rename to content/wp-content/uploads/2010/06/P6229570-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229570-800x600.jpg b/content/wp-content/uploads/2010/06/P6229570-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229570-800x600.jpg
rename to content/wp-content/uploads/2010/06/P6229570-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229570.jpg b/content/wp-content/uploads/2010/06/P6229570.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229570.jpg
rename to content/wp-content/uploads/2010/06/P6229570.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229571-150x150.jpg b/content/wp-content/uploads/2010/06/P6229571-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229571-150x150.jpg
rename to content/wp-content/uploads/2010/06/P6229571-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229571-300x226.jpg b/content/wp-content/uploads/2010/06/P6229571-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229571-300x226.jpg
rename to content/wp-content/uploads/2010/06/P6229571-300x226.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229571-796x600.jpg b/content/wp-content/uploads/2010/06/P6229571-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229571-796x600.jpg
rename to content/wp-content/uploads/2010/06/P6229571-796x600.jpg
diff --git a/files/wp-content/uploads/2010/06/P6229571.jpg b/content/wp-content/uploads/2010/06/P6229571.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/P6229571.jpg
rename to content/wp-content/uploads/2010/06/P6229571.jpg
diff --git a/files/wp-content/uploads/2010/06/img_4835-1-150x150.jpg b/content/wp-content/uploads/2010/06/img_4835-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_4835-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_4835-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_4835-1-300x200.jpg b/content/wp-content/uploads/2010/06/img_4835-1-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_4835-1-300x200.jpg
rename to content/wp-content/uploads/2010/06/img_4835-1-300x200.jpg
diff --git a/files/wp-content/uploads/2010/06/img_4835-1-800x533.jpg b/content/wp-content/uploads/2010/06/img_4835-1-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_4835-1-800x533.jpg
rename to content/wp-content/uploads/2010/06/img_4835-1-800x533.jpg
diff --git a/files/wp-content/uploads/2010/06/img_4835-1.jpg b/content/wp-content/uploads/2010/06/img_4835-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_4835-1.jpg
rename to content/wp-content/uploads/2010/06/img_4835-1.jpg
diff --git a/files/wp-content/uploads/2010/06/img_4835-150x150.jpg b/content/wp-content/uploads/2010/06/img_4835-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_4835-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_4835-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_4835-300x200.jpg b/content/wp-content/uploads/2010/06/img_4835-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_4835-300x200.jpg
rename to content/wp-content/uploads/2010/06/img_4835-300x200.jpg
diff --git a/files/wp-content/uploads/2010/06/img_4835-800x533.jpg b/content/wp-content/uploads/2010/06/img_4835-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_4835-800x533.jpg
rename to content/wp-content/uploads/2010/06/img_4835-800x533.jpg
diff --git a/files/wp-content/uploads/2010/06/img_4835.jpg b/content/wp-content/uploads/2010/06/img_4835.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_4835.jpg
rename to content/wp-content/uploads/2010/06/img_4835.jpg
diff --git a/files/wp-content/uploads/2010/06/img_48351-150x150.jpg b/content/wp-content/uploads/2010/06/img_48351-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_48351-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_48351-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_48351-300x200.jpg b/content/wp-content/uploads/2010/06/img_48351-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_48351-300x200.jpg
rename to content/wp-content/uploads/2010/06/img_48351-300x200.jpg
diff --git a/files/wp-content/uploads/2010/06/img_48351-800x533.jpg b/content/wp-content/uploads/2010/06/img_48351-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_48351-800x533.jpg
rename to content/wp-content/uploads/2010/06/img_48351-800x533.jpg
diff --git a/files/wp-content/uploads/2010/06/img_48351.jpg b/content/wp-content/uploads/2010/06/img_48351.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_48351.jpg
rename to content/wp-content/uploads/2010/06/img_48351.jpg
diff --git a/files/wp-content/uploads/2010/06/img_5803-150x150.jpg b/content/wp-content/uploads/2010/06/img_5803-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_5803-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_5803-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_5803-284x300.jpg b/content/wp-content/uploads/2010/06/img_5803-284x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_5803-284x300.jpg
rename to content/wp-content/uploads/2010/06/img_5803-284x300.jpg
diff --git a/files/wp-content/uploads/2010/06/img_5803-569x600.jpg b/content/wp-content/uploads/2010/06/img_5803-569x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_5803-569x600.jpg
rename to content/wp-content/uploads/2010/06/img_5803-569x600.jpg
diff --git a/files/wp-content/uploads/2010/06/img_5803.jpg b/content/wp-content/uploads/2010/06/img_5803.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_5803.jpg
rename to content/wp-content/uploads/2010/06/img_5803.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6790-1-150x150.jpg b/content/wp-content/uploads/2010/06/img_6790-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6790-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_6790-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6790-1-300x200.jpg b/content/wp-content/uploads/2010/06/img_6790-1-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6790-1-300x200.jpg
rename to content/wp-content/uploads/2010/06/img_6790-1-300x200.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6790-1-800x533.jpg b/content/wp-content/uploads/2010/06/img_6790-1-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6790-1-800x533.jpg
rename to content/wp-content/uploads/2010/06/img_6790-1-800x533.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6790-1.jpg b/content/wp-content/uploads/2010/06/img_6790-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6790-1.jpg
rename to content/wp-content/uploads/2010/06/img_6790-1.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6790-150x150.jpg b/content/wp-content/uploads/2010/06/img_6790-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6790-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_6790-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6790-300x200.jpg b/content/wp-content/uploads/2010/06/img_6790-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6790-300x200.jpg
rename to content/wp-content/uploads/2010/06/img_6790-300x200.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6790-800x533.jpg b/content/wp-content/uploads/2010/06/img_6790-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6790-800x533.jpg
rename to content/wp-content/uploads/2010/06/img_6790-800x533.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6790.jpg b/content/wp-content/uploads/2010/06/img_6790.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6790.jpg
rename to content/wp-content/uploads/2010/06/img_6790.jpg
diff --git a/files/wp-content/uploads/2010/06/img_67901-150x150.jpg b/content/wp-content/uploads/2010/06/img_67901-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_67901-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_67901-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_67901-300x200.jpg b/content/wp-content/uploads/2010/06/img_67901-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_67901-300x200.jpg
rename to content/wp-content/uploads/2010/06/img_67901-300x200.jpg
diff --git a/files/wp-content/uploads/2010/06/img_67901-800x533.jpg b/content/wp-content/uploads/2010/06/img_67901-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_67901-800x533.jpg
rename to content/wp-content/uploads/2010/06/img_67901-800x533.jpg
diff --git a/files/wp-content/uploads/2010/06/img_67901.jpg b/content/wp-content/uploads/2010/06/img_67901.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_67901.jpg
rename to content/wp-content/uploads/2010/06/img_67901.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6930-1-150x150.jpg b/content/wp-content/uploads/2010/06/img_6930-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6930-1-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_6930-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6930-1-300x200.jpg b/content/wp-content/uploads/2010/06/img_6930-1-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6930-1-300x200.jpg
rename to content/wp-content/uploads/2010/06/img_6930-1-300x200.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6930-1-800x533.jpg b/content/wp-content/uploads/2010/06/img_6930-1-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6930-1-800x533.jpg
rename to content/wp-content/uploads/2010/06/img_6930-1-800x533.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6930-1.jpg b/content/wp-content/uploads/2010/06/img_6930-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6930-1.jpg
rename to content/wp-content/uploads/2010/06/img_6930-1.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6947-150x150.jpg b/content/wp-content/uploads/2010/06/img_6947-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6947-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_6947-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6947-300x168.jpg b/content/wp-content/uploads/2010/06/img_6947-300x168.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6947-300x168.jpg
rename to content/wp-content/uploads/2010/06/img_6947-300x168.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6947-800x449.jpg b/content/wp-content/uploads/2010/06/img_6947-800x449.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6947-800x449.jpg
rename to content/wp-content/uploads/2010/06/img_6947-800x449.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6947.jpg b/content/wp-content/uploads/2010/06/img_6947.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6947.jpg
rename to content/wp-content/uploads/2010/06/img_6947.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6949-150x150.jpg b/content/wp-content/uploads/2010/06/img_6949-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6949-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_6949-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6949-200x300.jpg b/content/wp-content/uploads/2010/06/img_6949-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6949-200x300.jpg
rename to content/wp-content/uploads/2010/06/img_6949-200x300.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6949-400x600.jpg b/content/wp-content/uploads/2010/06/img_6949-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6949-400x600.jpg
rename to content/wp-content/uploads/2010/06/img_6949-400x600.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6949.jpg b/content/wp-content/uploads/2010/06/img_6949.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6949.jpg
rename to content/wp-content/uploads/2010/06/img_6949.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6953-150x150.jpg b/content/wp-content/uploads/2010/06/img_6953-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6953-150x150.jpg
rename to content/wp-content/uploads/2010/06/img_6953-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6953-200x300.jpg b/content/wp-content/uploads/2010/06/img_6953-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6953-200x300.jpg
rename to content/wp-content/uploads/2010/06/img_6953-200x300.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6953-400x600.jpg b/content/wp-content/uploads/2010/06/img_6953-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6953-400x600.jpg
rename to content/wp-content/uploads/2010/06/img_6953-400x600.jpg
diff --git a/files/wp-content/uploads/2010/06/img_6953.jpg b/content/wp-content/uploads/2010/06/img_6953.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/img_6953.jpg
rename to content/wp-content/uploads/2010/06/img_6953.jpg
diff --git a/files/wp-content/uploads/2010/06/p3177893-150x150.jpg b/content/wp-content/uploads/2010/06/p3177893-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p3177893-150x150.jpg
rename to content/wp-content/uploads/2010/06/p3177893-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/p3177893-225x300.jpg b/content/wp-content/uploads/2010/06/p3177893-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p3177893-225x300.jpg
rename to content/wp-content/uploads/2010/06/p3177893-225x300.jpg
diff --git a/files/wp-content/uploads/2010/06/p3177893-450x600.jpg b/content/wp-content/uploads/2010/06/p3177893-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p3177893-450x600.jpg
rename to content/wp-content/uploads/2010/06/p3177893-450x600.jpg
diff --git a/files/wp-content/uploads/2010/06/p3177893.jpg b/content/wp-content/uploads/2010/06/p3177893.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p3177893.jpg
rename to content/wp-content/uploads/2010/06/p3177893.jpg
diff --git a/files/wp-content/uploads/2010/06/p7183198-150x150.jpg b/content/wp-content/uploads/2010/06/p7183198-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p7183198-150x150.jpg
rename to content/wp-content/uploads/2010/06/p7183198-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/p7183198-300x225.jpg b/content/wp-content/uploads/2010/06/p7183198-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p7183198-300x225.jpg
rename to content/wp-content/uploads/2010/06/p7183198-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/p7183198-797x600.jpg b/content/wp-content/uploads/2010/06/p7183198-797x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p7183198-797x600.jpg
rename to content/wp-content/uploads/2010/06/p7183198-797x600.jpg
diff --git a/files/wp-content/uploads/2010/06/p7183198.jpg b/content/wp-content/uploads/2010/06/p7183198.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p7183198.jpg
rename to content/wp-content/uploads/2010/06/p7183198.jpg
diff --git a/files/wp-content/uploads/2010/06/p7183205-150x150.jpg b/content/wp-content/uploads/2010/06/p7183205-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p7183205-150x150.jpg
rename to content/wp-content/uploads/2010/06/p7183205-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/p7183205-300x225.jpg b/content/wp-content/uploads/2010/06/p7183205-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p7183205-300x225.jpg
rename to content/wp-content/uploads/2010/06/p7183205-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/p7183205-797x600.jpg b/content/wp-content/uploads/2010/06/p7183205-797x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p7183205-797x600.jpg
rename to content/wp-content/uploads/2010/06/p7183205-797x600.jpg
diff --git a/files/wp-content/uploads/2010/06/p7183205.jpg b/content/wp-content/uploads/2010/06/p7183205.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/p7183205.jpg
rename to content/wp-content/uploads/2010/06/p7183205.jpg
diff --git a/files/wp-content/uploads/2010/06/pb146389-150x150.jpg b/content/wp-content/uploads/2010/06/pb146389-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb146389-150x150.jpg
rename to content/wp-content/uploads/2010/06/pb146389-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/pb146389-300x225.jpg b/content/wp-content/uploads/2010/06/pb146389-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb146389-300x225.jpg
rename to content/wp-content/uploads/2010/06/pb146389-300x225.jpg
diff --git a/files/wp-content/uploads/2010/06/pb146389-800x600.jpg b/content/wp-content/uploads/2010/06/pb146389-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb146389-800x600.jpg
rename to content/wp-content/uploads/2010/06/pb146389-800x600.jpg
diff --git a/files/wp-content/uploads/2010/06/pb146389.jpg b/content/wp-content/uploads/2010/06/pb146389.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb146389.jpg
rename to content/wp-content/uploads/2010/06/pb146389.jpg
diff --git a/files/wp-content/uploads/2010/06/pb166609-150x150.jpg b/content/wp-content/uploads/2010/06/pb166609-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb166609-150x150.jpg
rename to content/wp-content/uploads/2010/06/pb166609-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/pb166609-300x240.jpg b/content/wp-content/uploads/2010/06/pb166609-300x240.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb166609-300x240.jpg
rename to content/wp-content/uploads/2010/06/pb166609-300x240.jpg
diff --git a/files/wp-content/uploads/2010/06/pb166609-747x600.jpg b/content/wp-content/uploads/2010/06/pb166609-747x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb166609-747x600.jpg
rename to content/wp-content/uploads/2010/06/pb166609-747x600.jpg
diff --git a/files/wp-content/uploads/2010/06/pb166609.jpg b/content/wp-content/uploads/2010/06/pb166609.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb166609.jpg
rename to content/wp-content/uploads/2010/06/pb166609.jpg
diff --git a/files/wp-content/uploads/2010/06/pb286923-150x150.jpg b/content/wp-content/uploads/2010/06/pb286923-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb286923-150x150.jpg
rename to content/wp-content/uploads/2010/06/pb286923-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/pb286923-300x214.jpg b/content/wp-content/uploads/2010/06/pb286923-300x214.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb286923-300x214.jpg
rename to content/wp-content/uploads/2010/06/pb286923-300x214.jpg
diff --git a/files/wp-content/uploads/2010/06/pb286923-800x572.jpg b/content/wp-content/uploads/2010/06/pb286923-800x572.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb286923-800x572.jpg
rename to content/wp-content/uploads/2010/06/pb286923-800x572.jpg
diff --git a/files/wp-content/uploads/2010/06/pb286923.jpg b/content/wp-content/uploads/2010/06/pb286923.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pb286923.jpg
rename to content/wp-content/uploads/2010/06/pb286923.jpg
diff --git a/files/wp-content/uploads/2010/06/pc117110-150x150.jpg b/content/wp-content/uploads/2010/06/pc117110-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pc117110-150x150.jpg
rename to content/wp-content/uploads/2010/06/pc117110-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/pc117110-300x169.jpg b/content/wp-content/uploads/2010/06/pc117110-300x169.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pc117110-300x169.jpg
rename to content/wp-content/uploads/2010/06/pc117110-300x169.jpg
diff --git a/files/wp-content/uploads/2010/06/pc117110-800x451.jpg b/content/wp-content/uploads/2010/06/pc117110-800x451.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pc117110-800x451.jpg
rename to content/wp-content/uploads/2010/06/pc117110-800x451.jpg
diff --git a/files/wp-content/uploads/2010/06/pc117110.jpg b/content/wp-content/uploads/2010/06/pc117110.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/pc117110.jpg
rename to content/wp-content/uploads/2010/06/pc117110.jpg
diff --git a/files/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25-150x150.jpg b/content/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25-150x150.jpg
rename to content/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25-150x150.jpg
diff --git a/files/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25-224x300.jpg b/content/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25-224x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25-224x300.jpg
rename to content/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25-224x300.jpg
diff --git a/files/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25.jpg b/content/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25.jpg
rename to content/wp-content/uploads/2010/06/wpid-2010-06-22-13.13.25.jpg
diff --git a/files/wp-content/uploads/2010/07/DSCN2544-150x150.jpg b/content/wp-content/uploads/2010/07/DSCN2544-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/DSCN2544-150x150.jpg
rename to content/wp-content/uploads/2010/07/DSCN2544-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/DSCN2544-300x225.jpg b/content/wp-content/uploads/2010/07/DSCN2544-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/DSCN2544-300x225.jpg
rename to content/wp-content/uploads/2010/07/DSCN2544-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/DSCN2544-800x600.jpg b/content/wp-content/uploads/2010/07/DSCN2544-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/DSCN2544-800x600.jpg
rename to content/wp-content/uploads/2010/07/DSCN2544-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/DSCN2544.jpg b/content/wp-content/uploads/2010/07/DSCN2544.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/DSCN2544.jpg
rename to content/wp-content/uploads/2010/07/DSCN2544.jpg
diff --git a/files/wp-content/uploads/2010/07/DSCN2683-150x150.jpg b/content/wp-content/uploads/2010/07/DSCN2683-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/DSCN2683-150x150.jpg
rename to content/wp-content/uploads/2010/07/DSCN2683-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/DSCN2683-300x225.jpg b/content/wp-content/uploads/2010/07/DSCN2683-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/DSCN2683-300x225.jpg
rename to content/wp-content/uploads/2010/07/DSCN2683-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/DSCN2683-800x600.jpg b/content/wp-content/uploads/2010/07/DSCN2683-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/DSCN2683-800x600.jpg
rename to content/wp-content/uploads/2010/07/DSCN2683-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/DSCN2683.jpg b/content/wp-content/uploads/2010/07/DSCN2683.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/DSCN2683.jpg
rename to content/wp-content/uploads/2010/07/DSCN2683.jpg
diff --git a/files/wp-content/uploads/2010/07/P4288885-1-150x150.jpg b/content/wp-content/uploads/2010/07/P4288885-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P4288885-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P4288885-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P4288885-1-300x225.jpg b/content/wp-content/uploads/2010/07/P4288885-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P4288885-1-300x225.jpg
rename to content/wp-content/uploads/2010/07/P4288885-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P4288885-1-796x600.jpg b/content/wp-content/uploads/2010/07/P4288885-1-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P4288885-1-796x600.jpg
rename to content/wp-content/uploads/2010/07/P4288885-1-796x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P4288885-1.jpg b/content/wp-content/uploads/2010/07/P4288885-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P4288885-1.jpg
rename to content/wp-content/uploads/2010/07/P4288885-1.jpg
diff --git a/files/wp-content/uploads/2010/07/P5039052-150x150.jpg b/content/wp-content/uploads/2010/07/P5039052-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P5039052-150x150.jpg
rename to content/wp-content/uploads/2010/07/P5039052-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P5039052-300x225.jpg b/content/wp-content/uploads/2010/07/P5039052-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P5039052-300x225.jpg
rename to content/wp-content/uploads/2010/07/P5039052-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P5039052-800x600.jpg b/content/wp-content/uploads/2010/07/P5039052-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P5039052-800x600.jpg
rename to content/wp-content/uploads/2010/07/P5039052-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P5039052.jpg b/content/wp-content/uploads/2010/07/P5039052.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P5039052.jpg
rename to content/wp-content/uploads/2010/07/P5039052.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279615-1-150x150.jpg b/content/wp-content/uploads/2010/07/P6279615-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279615-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6279615-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279615-1-300x253.jpg b/content/wp-content/uploads/2010/07/P6279615-1-300x253.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279615-1-300x253.jpg
rename to content/wp-content/uploads/2010/07/P6279615-1-300x253.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279615-1-709x600.jpg b/content/wp-content/uploads/2010/07/P6279615-1-709x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279615-1-709x600.jpg
rename to content/wp-content/uploads/2010/07/P6279615-1-709x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279615-1.jpg b/content/wp-content/uploads/2010/07/P6279615-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279615-1.jpg
rename to content/wp-content/uploads/2010/07/P6279615-1.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279700-150x150.jpg b/content/wp-content/uploads/2010/07/P6279700-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279700-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6279700-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279700-300x225.jpg b/content/wp-content/uploads/2010/07/P6279700-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279700-300x225.jpg
rename to content/wp-content/uploads/2010/07/P6279700-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279700-800x600.jpg b/content/wp-content/uploads/2010/07/P6279700-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279700-800x600.jpg
rename to content/wp-content/uploads/2010/07/P6279700-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279700.jpg b/content/wp-content/uploads/2010/07/P6279700.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279700.jpg
rename to content/wp-content/uploads/2010/07/P6279700.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279742-150x150.jpg b/content/wp-content/uploads/2010/07/P6279742-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279742-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6279742-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279742-225x300.jpg b/content/wp-content/uploads/2010/07/P6279742-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279742-225x300.jpg
rename to content/wp-content/uploads/2010/07/P6279742-225x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279742-450x600.jpg b/content/wp-content/uploads/2010/07/P6279742-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279742-450x600.jpg
rename to content/wp-content/uploads/2010/07/P6279742-450x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279742.jpg b/content/wp-content/uploads/2010/07/P6279742.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279742.jpg
rename to content/wp-content/uploads/2010/07/P6279742.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279780-150x150.jpg b/content/wp-content/uploads/2010/07/P6279780-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279780-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6279780-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279780-300x196.jpg b/content/wp-content/uploads/2010/07/P6279780-300x196.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279780-300x196.jpg
rename to content/wp-content/uploads/2010/07/P6279780-300x196.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279780-800x523.jpg b/content/wp-content/uploads/2010/07/P6279780-800x523.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279780-800x523.jpg
rename to content/wp-content/uploads/2010/07/P6279780-800x523.jpg
diff --git a/files/wp-content/uploads/2010/07/P6279780.jpg b/content/wp-content/uploads/2010/07/P6279780.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6279780.jpg
rename to content/wp-content/uploads/2010/07/P6279780.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290047-150x150.jpg b/content/wp-content/uploads/2010/07/P6290047-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290047-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6290047-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290047-300x225.jpg b/content/wp-content/uploads/2010/07/P6290047-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290047-300x225.jpg
rename to content/wp-content/uploads/2010/07/P6290047-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290047-800x600.jpg b/content/wp-content/uploads/2010/07/P6290047-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290047-800x600.jpg
rename to content/wp-content/uploads/2010/07/P6290047-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290047.jpg b/content/wp-content/uploads/2010/07/P6290047.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290047.jpg
rename to content/wp-content/uploads/2010/07/P6290047.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290049-150x150.jpg b/content/wp-content/uploads/2010/07/P6290049-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290049-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6290049-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290049-300x177.jpg b/content/wp-content/uploads/2010/07/P6290049-300x177.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290049-300x177.jpg
rename to content/wp-content/uploads/2010/07/P6290049-300x177.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290049-800x472.jpg b/content/wp-content/uploads/2010/07/P6290049-800x472.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290049-800x472.jpg
rename to content/wp-content/uploads/2010/07/P6290049-800x472.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290049.jpg b/content/wp-content/uploads/2010/07/P6290049.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290049.jpg
rename to content/wp-content/uploads/2010/07/P6290049.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290053-150x150.jpg b/content/wp-content/uploads/2010/07/P6290053-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290053-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6290053-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290053-225x300.jpg b/content/wp-content/uploads/2010/07/P6290053-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290053-225x300.jpg
rename to content/wp-content/uploads/2010/07/P6290053-225x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290053-450x600.jpg b/content/wp-content/uploads/2010/07/P6290053-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290053-450x600.jpg
rename to content/wp-content/uploads/2010/07/P6290053-450x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290053.jpg b/content/wp-content/uploads/2010/07/P6290053.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290053.jpg
rename to content/wp-content/uploads/2010/07/P6290053.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290081-150x150.jpg b/content/wp-content/uploads/2010/07/P6290081-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290081-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6290081-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290081-300x196.jpg b/content/wp-content/uploads/2010/07/P6290081-300x196.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290081-300x196.jpg
rename to content/wp-content/uploads/2010/07/P6290081-300x196.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290081-800x525.jpg b/content/wp-content/uploads/2010/07/P6290081-800x525.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290081-800x525.jpg
rename to content/wp-content/uploads/2010/07/P6290081-800x525.jpg
diff --git a/files/wp-content/uploads/2010/07/P6290081.jpg b/content/wp-content/uploads/2010/07/P6290081.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6290081.jpg
rename to content/wp-content/uploads/2010/07/P6290081.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299872-1-150x150.jpg b/content/wp-content/uploads/2010/07/P6299872-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299872-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299872-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299872-1-300x225.jpg b/content/wp-content/uploads/2010/07/P6299872-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299872-1-300x225.jpg
rename to content/wp-content/uploads/2010/07/P6299872-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299872-1-800x600.jpg b/content/wp-content/uploads/2010/07/P6299872-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299872-1-800x600.jpg
rename to content/wp-content/uploads/2010/07/P6299872-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299872-1.jpg b/content/wp-content/uploads/2010/07/P6299872-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299872-1.jpg
rename to content/wp-content/uploads/2010/07/P6299872-1.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299872-150x150.jpg b/content/wp-content/uploads/2010/07/P6299872-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299872-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299872-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299872-300x225.jpg b/content/wp-content/uploads/2010/07/P6299872-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299872-300x225.jpg
rename to content/wp-content/uploads/2010/07/P6299872-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299872-800x600.jpg b/content/wp-content/uploads/2010/07/P6299872-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299872-800x600.jpg
rename to content/wp-content/uploads/2010/07/P6299872-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299872.jpg b/content/wp-content/uploads/2010/07/P6299872.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299872.jpg
rename to content/wp-content/uploads/2010/07/P6299872.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299876-150x150.jpg b/content/wp-content/uploads/2010/07/P6299876-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299876-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299876-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299876-300x225.jpg b/content/wp-content/uploads/2010/07/P6299876-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299876-300x225.jpg
rename to content/wp-content/uploads/2010/07/P6299876-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299876-800x600.jpg b/content/wp-content/uploads/2010/07/P6299876-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299876-800x600.jpg
rename to content/wp-content/uploads/2010/07/P6299876-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299876.jpg b/content/wp-content/uploads/2010/07/P6299876.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299876.jpg
rename to content/wp-content/uploads/2010/07/P6299876.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299897-150x150.jpg b/content/wp-content/uploads/2010/07/P6299897-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299897-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299897-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299897-300x225.jpg b/content/wp-content/uploads/2010/07/P6299897-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299897-300x225.jpg
rename to content/wp-content/uploads/2010/07/P6299897-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299897-800x600.jpg b/content/wp-content/uploads/2010/07/P6299897-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299897-800x600.jpg
rename to content/wp-content/uploads/2010/07/P6299897-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299897.jpg b/content/wp-content/uploads/2010/07/P6299897.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299897.jpg
rename to content/wp-content/uploads/2010/07/P6299897.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299911-150x150.jpg b/content/wp-content/uploads/2010/07/P6299911-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299911-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299911-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299911-300x225.jpg b/content/wp-content/uploads/2010/07/P6299911-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299911-300x225.jpg
rename to content/wp-content/uploads/2010/07/P6299911-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299911-800x600.jpg b/content/wp-content/uploads/2010/07/P6299911-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299911-800x600.jpg
rename to content/wp-content/uploads/2010/07/P6299911-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299911.jpg b/content/wp-content/uploads/2010/07/P6299911.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299911.jpg
rename to content/wp-content/uploads/2010/07/P6299911.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299919-150x150.jpg b/content/wp-content/uploads/2010/07/P6299919-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299919-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299919-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299919-225x300.jpg b/content/wp-content/uploads/2010/07/P6299919-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299919-225x300.jpg
rename to content/wp-content/uploads/2010/07/P6299919-225x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299919-450x600.jpg b/content/wp-content/uploads/2010/07/P6299919-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299919-450x600.jpg
rename to content/wp-content/uploads/2010/07/P6299919-450x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299919.jpg b/content/wp-content/uploads/2010/07/P6299919.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299919.jpg
rename to content/wp-content/uploads/2010/07/P6299919.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299922-150x150.jpg b/content/wp-content/uploads/2010/07/P6299922-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299922-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299922-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299922-300x300.jpg b/content/wp-content/uploads/2010/07/P6299922-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299922-300x300.jpg
rename to content/wp-content/uploads/2010/07/P6299922-300x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299922-598x600.jpg b/content/wp-content/uploads/2010/07/P6299922-598x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299922-598x600.jpg
rename to content/wp-content/uploads/2010/07/P6299922-598x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299922.jpg b/content/wp-content/uploads/2010/07/P6299922.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299922.jpg
rename to content/wp-content/uploads/2010/07/P6299922.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299939-1-150x150.jpg b/content/wp-content/uploads/2010/07/P6299939-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299939-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299939-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299939-1-215x300.jpg b/content/wp-content/uploads/2010/07/P6299939-1-215x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299939-1-215x300.jpg
rename to content/wp-content/uploads/2010/07/P6299939-1-215x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299939-1-431x600.jpg b/content/wp-content/uploads/2010/07/P6299939-1-431x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299939-1-431x600.jpg
rename to content/wp-content/uploads/2010/07/P6299939-1-431x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299939-1.jpg b/content/wp-content/uploads/2010/07/P6299939-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299939-1.jpg
rename to content/wp-content/uploads/2010/07/P6299939-1.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299953-150x150.jpg b/content/wp-content/uploads/2010/07/P6299953-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299953-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299953-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299953-287x300.jpg b/content/wp-content/uploads/2010/07/P6299953-287x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299953-287x300.jpg
rename to content/wp-content/uploads/2010/07/P6299953-287x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299953-575x600.jpg b/content/wp-content/uploads/2010/07/P6299953-575x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299953-575x600.jpg
rename to content/wp-content/uploads/2010/07/P6299953-575x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299953.jpg b/content/wp-content/uploads/2010/07/P6299953.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299953.jpg
rename to content/wp-content/uploads/2010/07/P6299953.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299955-150x150.jpg b/content/wp-content/uploads/2010/07/P6299955-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299955-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299955-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299955-300x300.jpg b/content/wp-content/uploads/2010/07/P6299955-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299955-300x300.jpg
rename to content/wp-content/uploads/2010/07/P6299955-300x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299955-600x600.jpg b/content/wp-content/uploads/2010/07/P6299955-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299955-600x600.jpg
rename to content/wp-content/uploads/2010/07/P6299955-600x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299955.jpg b/content/wp-content/uploads/2010/07/P6299955.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299955.jpg
rename to content/wp-content/uploads/2010/07/P6299955.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299968-1-150x150.jpg b/content/wp-content/uploads/2010/07/P6299968-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299968-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299968-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299968-1-247x300.jpg b/content/wp-content/uploads/2010/07/P6299968-1-247x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299968-1-247x300.jpg
rename to content/wp-content/uploads/2010/07/P6299968-1-247x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299968-1-495x600.jpg b/content/wp-content/uploads/2010/07/P6299968-1-495x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299968-1-495x600.jpg
rename to content/wp-content/uploads/2010/07/P6299968-1-495x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299968-1.jpg b/content/wp-content/uploads/2010/07/P6299968-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299968-1.jpg
rename to content/wp-content/uploads/2010/07/P6299968-1.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299994-150x150.jpg b/content/wp-content/uploads/2010/07/P6299994-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299994-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299994-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299994-300x169.jpg b/content/wp-content/uploads/2010/07/P6299994-300x169.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299994-300x169.jpg
rename to content/wp-content/uploads/2010/07/P6299994-300x169.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299994-800x452.jpg b/content/wp-content/uploads/2010/07/P6299994-800x452.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299994-800x452.jpg
rename to content/wp-content/uploads/2010/07/P6299994-800x452.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299994.jpg b/content/wp-content/uploads/2010/07/P6299994.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299994.jpg
rename to content/wp-content/uploads/2010/07/P6299994.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299999-150x150.jpg b/content/wp-content/uploads/2010/07/P6299999-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299999-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6299999-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299999-300x195.jpg b/content/wp-content/uploads/2010/07/P6299999-300x195.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299999-300x195.jpg
rename to content/wp-content/uploads/2010/07/P6299999-300x195.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299999-800x521.jpg b/content/wp-content/uploads/2010/07/P6299999-800x521.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299999-800x521.jpg
rename to content/wp-content/uploads/2010/07/P6299999-800x521.jpg
diff --git a/files/wp-content/uploads/2010/07/P6299999.jpg b/content/wp-content/uploads/2010/07/P6299999.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6299999.jpg
rename to content/wp-content/uploads/2010/07/P6299999.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300155-150x150.jpg b/content/wp-content/uploads/2010/07/P6300155-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300155-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6300155-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300155-225x300.jpg b/content/wp-content/uploads/2010/07/P6300155-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300155-225x300.jpg
rename to content/wp-content/uploads/2010/07/P6300155-225x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300155-450x600.jpg b/content/wp-content/uploads/2010/07/P6300155-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300155-450x600.jpg
rename to content/wp-content/uploads/2010/07/P6300155-450x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300155.jpg b/content/wp-content/uploads/2010/07/P6300155.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300155.jpg
rename to content/wp-content/uploads/2010/07/P6300155.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300160-150x150.jpg b/content/wp-content/uploads/2010/07/P6300160-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300160-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6300160-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300160-300x225.jpg b/content/wp-content/uploads/2010/07/P6300160-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300160-300x225.jpg
rename to content/wp-content/uploads/2010/07/P6300160-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300160-800x600.jpg b/content/wp-content/uploads/2010/07/P6300160-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300160-800x600.jpg
rename to content/wp-content/uploads/2010/07/P6300160-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300160.jpg b/content/wp-content/uploads/2010/07/P6300160.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300160.jpg
rename to content/wp-content/uploads/2010/07/P6300160.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300215-150x150.jpg b/content/wp-content/uploads/2010/07/P6300215-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300215-150x150.jpg
rename to content/wp-content/uploads/2010/07/P6300215-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300215-300x225.jpg b/content/wp-content/uploads/2010/07/P6300215-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300215-300x225.jpg
rename to content/wp-content/uploads/2010/07/P6300215-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300215-800x600.jpg b/content/wp-content/uploads/2010/07/P6300215-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300215-800x600.jpg
rename to content/wp-content/uploads/2010/07/P6300215-800x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P6300215.jpg b/content/wp-content/uploads/2010/07/P6300215.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P6300215.jpg
rename to content/wp-content/uploads/2010/07/P6300215.jpg
diff --git a/files/wp-content/uploads/2010/07/P7010390-1-150x150.jpg b/content/wp-content/uploads/2010/07/P7010390-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7010390-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P7010390-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P7010390-1-225x300.jpg b/content/wp-content/uploads/2010/07/P7010390-1-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7010390-1-225x300.jpg
rename to content/wp-content/uploads/2010/07/P7010390-1-225x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P7010390-1-450x600.jpg b/content/wp-content/uploads/2010/07/P7010390-1-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7010390-1-450x600.jpg
rename to content/wp-content/uploads/2010/07/P7010390-1-450x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P7010390-1.jpg b/content/wp-content/uploads/2010/07/P7010390-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7010390-1.jpg
rename to content/wp-content/uploads/2010/07/P7010390-1.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240724-1-150x150.jpg b/content/wp-content/uploads/2010/07/P7240724-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240724-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P7240724-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240724-1-300x225.jpg b/content/wp-content/uploads/2010/07/P7240724-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240724-1-300x225.jpg
rename to content/wp-content/uploads/2010/07/P7240724-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240724-1-796x600.jpg b/content/wp-content/uploads/2010/07/P7240724-1-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240724-1-796x600.jpg
rename to content/wp-content/uploads/2010/07/P7240724-1-796x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240724-1.jpg b/content/wp-content/uploads/2010/07/P7240724-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240724-1.jpg
rename to content/wp-content/uploads/2010/07/P7240724-1.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240780-1-150x150.jpg b/content/wp-content/uploads/2010/07/P7240780-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240780-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P7240780-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240780-1-225x300.jpg b/content/wp-content/uploads/2010/07/P7240780-1-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240780-1-225x300.jpg
rename to content/wp-content/uploads/2010/07/P7240780-1-225x300.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240780-1-451x600.jpg b/content/wp-content/uploads/2010/07/P7240780-1-451x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240780-1-451x600.jpg
rename to content/wp-content/uploads/2010/07/P7240780-1-451x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240780-1.jpg b/content/wp-content/uploads/2010/07/P7240780-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240780-1.jpg
rename to content/wp-content/uploads/2010/07/P7240780-1.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240943-1-150x150.jpg b/content/wp-content/uploads/2010/07/P7240943-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240943-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P7240943-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240943-1-300x225.jpg b/content/wp-content/uploads/2010/07/P7240943-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240943-1-300x225.jpg
rename to content/wp-content/uploads/2010/07/P7240943-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240943-1-796x600.jpg b/content/wp-content/uploads/2010/07/P7240943-1-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240943-1-796x600.jpg
rename to content/wp-content/uploads/2010/07/P7240943-1-796x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240943-1.jpg b/content/wp-content/uploads/2010/07/P7240943-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240943-1.jpg
rename to content/wp-content/uploads/2010/07/P7240943-1.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240945-1-150x150.jpg b/content/wp-content/uploads/2010/07/P7240945-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240945-1-150x150.jpg
rename to content/wp-content/uploads/2010/07/P7240945-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240945-1-300x225.jpg b/content/wp-content/uploads/2010/07/P7240945-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240945-1-300x225.jpg
rename to content/wp-content/uploads/2010/07/P7240945-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240945-1-796x600.jpg b/content/wp-content/uploads/2010/07/P7240945-1-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240945-1-796x600.jpg
rename to content/wp-content/uploads/2010/07/P7240945-1-796x600.jpg
diff --git a/files/wp-content/uploads/2010/07/P7240945-1.jpg b/content/wp-content/uploads/2010/07/P7240945-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/P7240945-1.jpg
rename to content/wp-content/uploads/2010/07/P7240945-1.jpg
diff --git a/files/wp-content/uploads/2010/07/pc177168-150x150.jpg b/content/wp-content/uploads/2010/07/pc177168-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/pc177168-150x150.jpg
rename to content/wp-content/uploads/2010/07/pc177168-150x150.jpg
diff --git a/files/wp-content/uploads/2010/07/pc177168-225x300.jpg b/content/wp-content/uploads/2010/07/pc177168-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/pc177168-225x300.jpg
rename to content/wp-content/uploads/2010/07/pc177168-225x300.jpg
diff --git a/files/wp-content/uploads/2010/07/pc177168-450x600.jpg b/content/wp-content/uploads/2010/07/pc177168-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/pc177168-450x600.jpg
rename to content/wp-content/uploads/2010/07/pc177168-450x600.jpg
diff --git a/files/wp-content/uploads/2010/07/pc177168.jpg b/content/wp-content/uploads/2010/07/pc177168.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/07/pc177168.jpg
rename to content/wp-content/uploads/2010/07/pc177168.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7492-1-150x150.jpg b/content/wp-content/uploads/2010/08/IMG_7492-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7492-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/IMG_7492-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7492-1-300x280.jpg b/content/wp-content/uploads/2010/08/IMG_7492-1-300x280.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7492-1-300x280.jpg
rename to content/wp-content/uploads/2010/08/IMG_7492-1-300x280.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7492-1-641x600.jpg b/content/wp-content/uploads/2010/08/IMG_7492-1-641x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7492-1-641x600.jpg
rename to content/wp-content/uploads/2010/08/IMG_7492-1-641x600.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7492-1.jpg b/content/wp-content/uploads/2010/08/IMG_7492-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7492-1.jpg
rename to content/wp-content/uploads/2010/08/IMG_7492-1.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7493-1-150x150.jpg b/content/wp-content/uploads/2010/08/IMG_7493-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7493-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/IMG_7493-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7493-1-200x300.jpg b/content/wp-content/uploads/2010/08/IMG_7493-1-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7493-1-200x300.jpg
rename to content/wp-content/uploads/2010/08/IMG_7493-1-200x300.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7493-1-400x600.jpg b/content/wp-content/uploads/2010/08/IMG_7493-1-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7493-1-400x600.jpg
rename to content/wp-content/uploads/2010/08/IMG_7493-1-400x600.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7493-1.jpg b/content/wp-content/uploads/2010/08/IMG_7493-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7493-1.jpg
rename to content/wp-content/uploads/2010/08/IMG_7493-1.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7493-2-150x150.jpg b/content/wp-content/uploads/2010/08/IMG_7493-2-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7493-2-150x150.jpg
rename to content/wp-content/uploads/2010/08/IMG_7493-2-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7493-2-200x300.jpg b/content/wp-content/uploads/2010/08/IMG_7493-2-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7493-2-200x300.jpg
rename to content/wp-content/uploads/2010/08/IMG_7493-2-200x300.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7493-2-400x600.jpg b/content/wp-content/uploads/2010/08/IMG_7493-2-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7493-2-400x600.jpg
rename to content/wp-content/uploads/2010/08/IMG_7493-2-400x600.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7493-2.jpg b/content/wp-content/uploads/2010/08/IMG_7493-2.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7493-2.jpg
rename to content/wp-content/uploads/2010/08/IMG_7493-2.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7565-1-150x150.jpg b/content/wp-content/uploads/2010/08/IMG_7565-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7565-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/IMG_7565-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7565-1-300x200.jpg b/content/wp-content/uploads/2010/08/IMG_7565-1-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7565-1-300x200.jpg
rename to content/wp-content/uploads/2010/08/IMG_7565-1-300x200.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7565-1-800x533.jpg b/content/wp-content/uploads/2010/08/IMG_7565-1-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7565-1-800x533.jpg
rename to content/wp-content/uploads/2010/08/IMG_7565-1-800x533.jpg
diff --git a/files/wp-content/uploads/2010/08/IMG_7565-1.jpg b/content/wp-content/uploads/2010/08/IMG_7565-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/IMG_7565-1.jpg
rename to content/wp-content/uploads/2010/08/IMG_7565-1.jpg
diff --git a/files/wp-content/uploads/2010/08/P2220213-150x150.jpg b/content/wp-content/uploads/2010/08/P2220213-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P2220213-150x150.jpg
rename to content/wp-content/uploads/2010/08/P2220213-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P2220213-300x199.jpg b/content/wp-content/uploads/2010/08/P2220213-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P2220213-300x199.jpg
rename to content/wp-content/uploads/2010/08/P2220213-300x199.jpg
diff --git a/files/wp-content/uploads/2010/08/P2220213-800x532.jpg b/content/wp-content/uploads/2010/08/P2220213-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P2220213-800x532.jpg
rename to content/wp-content/uploads/2010/08/P2220213-800x532.jpg
diff --git a/files/wp-content/uploads/2010/08/P2220213.jpg b/content/wp-content/uploads/2010/08/P2220213.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P2220213.jpg
rename to content/wp-content/uploads/2010/08/P2220213.jpg
diff --git a/files/wp-content/uploads/2010/08/P2220221-150x150.jpg b/content/wp-content/uploads/2010/08/P2220221-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P2220221-150x150.jpg
rename to content/wp-content/uploads/2010/08/P2220221-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P2220221-300x225.jpg b/content/wp-content/uploads/2010/08/P2220221-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P2220221-300x225.jpg
rename to content/wp-content/uploads/2010/08/P2220221-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/P2220221-800x600.jpg b/content/wp-content/uploads/2010/08/P2220221-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P2220221-800x600.jpg
rename to content/wp-content/uploads/2010/08/P2220221-800x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P2220221.jpg b/content/wp-content/uploads/2010/08/P2220221.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P2220221.jpg
rename to content/wp-content/uploads/2010/08/P2220221.jpg
diff --git a/files/wp-content/uploads/2010/08/P3318032-150x150.jpg b/content/wp-content/uploads/2010/08/P3318032-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P3318032-150x150.jpg
rename to content/wp-content/uploads/2010/08/P3318032-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P3318032-300x225.jpg b/content/wp-content/uploads/2010/08/P3318032-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P3318032-300x225.jpg
rename to content/wp-content/uploads/2010/08/P3318032-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/P3318032-800x600.jpg b/content/wp-content/uploads/2010/08/P3318032-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P3318032-800x600.jpg
rename to content/wp-content/uploads/2010/08/P3318032-800x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P3318032.jpg b/content/wp-content/uploads/2010/08/P3318032.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P3318032.jpg
rename to content/wp-content/uploads/2010/08/P3318032.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038111-1-150x150.jpg b/content/wp-content/uploads/2010/08/P4038111-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038111-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/P4038111-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038111-1-300x225.jpg b/content/wp-content/uploads/2010/08/P4038111-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038111-1-300x225.jpg
rename to content/wp-content/uploads/2010/08/P4038111-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038111-1-800x600.jpg b/content/wp-content/uploads/2010/08/P4038111-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038111-1-800x600.jpg
rename to content/wp-content/uploads/2010/08/P4038111-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038111-1.jpg b/content/wp-content/uploads/2010/08/P4038111-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038111-1.jpg
rename to content/wp-content/uploads/2010/08/P4038111-1.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038144-1-150x150.jpg b/content/wp-content/uploads/2010/08/P4038144-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038144-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/P4038144-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038144-1-225x300.jpg b/content/wp-content/uploads/2010/08/P4038144-1-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038144-1-225x300.jpg
rename to content/wp-content/uploads/2010/08/P4038144-1-225x300.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038144-1-450x600.jpg b/content/wp-content/uploads/2010/08/P4038144-1-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038144-1-450x600.jpg
rename to content/wp-content/uploads/2010/08/P4038144-1-450x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038144-1.jpg b/content/wp-content/uploads/2010/08/P4038144-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038144-1.jpg
rename to content/wp-content/uploads/2010/08/P4038144-1.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038338-1-150x150.jpg b/content/wp-content/uploads/2010/08/P4038338-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038338-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/P4038338-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038338-1-300x225.jpg b/content/wp-content/uploads/2010/08/P4038338-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038338-1-300x225.jpg
rename to content/wp-content/uploads/2010/08/P4038338-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038338-1-800x600.jpg b/content/wp-content/uploads/2010/08/P4038338-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038338-1-800x600.jpg
rename to content/wp-content/uploads/2010/08/P4038338-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P4038338-1.jpg b/content/wp-content/uploads/2010/08/P4038338-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4038338-1.jpg
rename to content/wp-content/uploads/2010/08/P4038338-1.jpg
diff --git a/files/wp-content/uploads/2010/08/P4108512-150x150.jpg b/content/wp-content/uploads/2010/08/P4108512-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4108512-150x150.jpg
rename to content/wp-content/uploads/2010/08/P4108512-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P4108512-300x225.jpg b/content/wp-content/uploads/2010/08/P4108512-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4108512-300x225.jpg
rename to content/wp-content/uploads/2010/08/P4108512-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/P4108512-796x600.jpg b/content/wp-content/uploads/2010/08/P4108512-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4108512-796x600.jpg
rename to content/wp-content/uploads/2010/08/P4108512-796x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P4108512.jpg b/content/wp-content/uploads/2010/08/P4108512.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P4108512.jpg
rename to content/wp-content/uploads/2010/08/P4108512.jpg
diff --git a/files/wp-content/uploads/2010/08/P6299898-150x150.jpg b/content/wp-content/uploads/2010/08/P6299898-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P6299898-150x150.jpg
rename to content/wp-content/uploads/2010/08/P6299898-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P6299898-300x225.jpg b/content/wp-content/uploads/2010/08/P6299898-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P6299898-300x225.jpg
rename to content/wp-content/uploads/2010/08/P6299898-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/P6299898-800x600.jpg b/content/wp-content/uploads/2010/08/P6299898-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P6299898-800x600.jpg
rename to content/wp-content/uploads/2010/08/P6299898-800x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P6299898.jpg b/content/wp-content/uploads/2010/08/P6299898.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P6299898.jpg
rename to content/wp-content/uploads/2010/08/P6299898.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240740-150x150.jpg b/content/wp-content/uploads/2010/08/P7240740-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240740-150x150.jpg
rename to content/wp-content/uploads/2010/08/P7240740-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240740-300x199.jpg b/content/wp-content/uploads/2010/08/P7240740-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240740-300x199.jpg
rename to content/wp-content/uploads/2010/08/P7240740-300x199.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240740-800x531.jpg b/content/wp-content/uploads/2010/08/P7240740-800x531.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240740-800x531.jpg
rename to content/wp-content/uploads/2010/08/P7240740-800x531.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240740.jpg b/content/wp-content/uploads/2010/08/P7240740.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240740.jpg
rename to content/wp-content/uploads/2010/08/P7240740.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240806-150x150.jpg b/content/wp-content/uploads/2010/08/P7240806-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240806-150x150.jpg
rename to content/wp-content/uploads/2010/08/P7240806-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240806-300x225.jpg b/content/wp-content/uploads/2010/08/P7240806-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240806-300x225.jpg
rename to content/wp-content/uploads/2010/08/P7240806-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240806-796x600.jpg b/content/wp-content/uploads/2010/08/P7240806-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240806-796x600.jpg
rename to content/wp-content/uploads/2010/08/P7240806-796x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240806.jpg b/content/wp-content/uploads/2010/08/P7240806.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240806.jpg
rename to content/wp-content/uploads/2010/08/P7240806.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240852-150x150.jpg b/content/wp-content/uploads/2010/08/P7240852-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240852-150x150.jpg
rename to content/wp-content/uploads/2010/08/P7240852-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240852-300x225.jpg b/content/wp-content/uploads/2010/08/P7240852-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240852-300x225.jpg
rename to content/wp-content/uploads/2010/08/P7240852-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240852-796x600.jpg b/content/wp-content/uploads/2010/08/P7240852-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240852-796x600.jpg
rename to content/wp-content/uploads/2010/08/P7240852-796x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240852.jpg b/content/wp-content/uploads/2010/08/P7240852.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240852.jpg
rename to content/wp-content/uploads/2010/08/P7240852.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240897-150x150.jpg b/content/wp-content/uploads/2010/08/P7240897-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240897-150x150.jpg
rename to content/wp-content/uploads/2010/08/P7240897-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240897-300x225.jpg b/content/wp-content/uploads/2010/08/P7240897-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240897-300x225.jpg
rename to content/wp-content/uploads/2010/08/P7240897-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240897-796x600.jpg b/content/wp-content/uploads/2010/08/P7240897-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240897-796x600.jpg
rename to content/wp-content/uploads/2010/08/P7240897-796x600.jpg
diff --git a/files/wp-content/uploads/2010/08/P7240897.jpg b/content/wp-content/uploads/2010/08/P7240897.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/P7240897.jpg
rename to content/wp-content/uploads/2010/08/P7240897.jpg
diff --git a/files/wp-content/uploads/2010/08/img_6948-150x150.jpg b/content/wp-content/uploads/2010/08/img_6948-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_6948-150x150.jpg
rename to content/wp-content/uploads/2010/08/img_6948-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/img_6948-300x200.jpg b/content/wp-content/uploads/2010/08/img_6948-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_6948-300x200.jpg
rename to content/wp-content/uploads/2010/08/img_6948-300x200.jpg
diff --git a/files/wp-content/uploads/2010/08/img_6948-800x533.jpg b/content/wp-content/uploads/2010/08/img_6948-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_6948-800x533.jpg
rename to content/wp-content/uploads/2010/08/img_6948-800x533.jpg
diff --git a/files/wp-content/uploads/2010/08/img_6948.jpg b/content/wp-content/uploads/2010/08/img_6948.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_6948.jpg
rename to content/wp-content/uploads/2010/08/img_6948.jpg
diff --git a/files/wp-content/uploads/2010/08/img_7003-150x150.jpg b/content/wp-content/uploads/2010/08/img_7003-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_7003-150x150.jpg
rename to content/wp-content/uploads/2010/08/img_7003-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/img_7003-300x300.jpg b/content/wp-content/uploads/2010/08/img_7003-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_7003-300x300.jpg
rename to content/wp-content/uploads/2010/08/img_7003-300x300.jpg
diff --git a/files/wp-content/uploads/2010/08/img_7003-600x600.jpg b/content/wp-content/uploads/2010/08/img_7003-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_7003-600x600.jpg
rename to content/wp-content/uploads/2010/08/img_7003-600x600.jpg
diff --git a/files/wp-content/uploads/2010/08/img_7003.jpg b/content/wp-content/uploads/2010/08/img_7003.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_7003.jpg
rename to content/wp-content/uploads/2010/08/img_7003.jpg
diff --git a/files/wp-content/uploads/2010/08/img_7080-150x150.jpg b/content/wp-content/uploads/2010/08/img_7080-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_7080-150x150.jpg
rename to content/wp-content/uploads/2010/08/img_7080-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/img_7080-300x200.jpg b/content/wp-content/uploads/2010/08/img_7080-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_7080-300x200.jpg
rename to content/wp-content/uploads/2010/08/img_7080-300x200.jpg
diff --git a/files/wp-content/uploads/2010/08/img_7080-800x533.jpg b/content/wp-content/uploads/2010/08/img_7080-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_7080-800x533.jpg
rename to content/wp-content/uploads/2010/08/img_7080-800x533.jpg
diff --git a/files/wp-content/uploads/2010/08/img_7080.jpg b/content/wp-content/uploads/2010/08/img_7080.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/img_7080.jpg
rename to content/wp-content/uploads/2010/08/img_7080.jpg
diff --git a/files/wp-content/uploads/2010/08/p1131308-1-150x150.jpg b/content/wp-content/uploads/2010/08/p1131308-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p1131308-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/p1131308-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/p1131308-1-300x200.jpg b/content/wp-content/uploads/2010/08/p1131308-1-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p1131308-1-300x200.jpg
rename to content/wp-content/uploads/2010/08/p1131308-1-300x200.jpg
diff --git a/files/wp-content/uploads/2010/08/p1131308-1-800x533.jpg b/content/wp-content/uploads/2010/08/p1131308-1-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p1131308-1-800x533.jpg
rename to content/wp-content/uploads/2010/08/p1131308-1-800x533.jpg
diff --git a/files/wp-content/uploads/2010/08/p1131308-1.jpg b/content/wp-content/uploads/2010/08/p1131308-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p1131308-1.jpg
rename to content/wp-content/uploads/2010/08/p1131308-1.jpg
diff --git a/files/wp-content/uploads/2010/08/p1247435-150x150.jpg b/content/wp-content/uploads/2010/08/p1247435-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p1247435-150x150.jpg
rename to content/wp-content/uploads/2010/08/p1247435-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/p1247435-225x300.jpg b/content/wp-content/uploads/2010/08/p1247435-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p1247435-225x300.jpg
rename to content/wp-content/uploads/2010/08/p1247435-225x300.jpg
diff --git a/files/wp-content/uploads/2010/08/p1247435-450x600.jpg b/content/wp-content/uploads/2010/08/p1247435-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p1247435-450x600.jpg
rename to content/wp-content/uploads/2010/08/p1247435-450x600.jpg
diff --git a/files/wp-content/uploads/2010/08/p1247435.jpg b/content/wp-content/uploads/2010/08/p1247435.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p1247435.jpg
rename to content/wp-content/uploads/2010/08/p1247435.jpg
diff --git a/files/wp-content/uploads/2010/08/p7264697-1-150x150.jpg b/content/wp-content/uploads/2010/08/p7264697-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p7264697-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/p7264697-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/p7264697-1-300x225.jpg b/content/wp-content/uploads/2010/08/p7264697-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p7264697-1-300x225.jpg
rename to content/wp-content/uploads/2010/08/p7264697-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/p7264697-1-800x600.jpg b/content/wp-content/uploads/2010/08/p7264697-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p7264697-1-800x600.jpg
rename to content/wp-content/uploads/2010/08/p7264697-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/08/p7264697-1.jpg b/content/wp-content/uploads/2010/08/p7264697-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p7264697-1.jpg
rename to content/wp-content/uploads/2010/08/p7264697-1.jpg
diff --git a/files/wp-content/uploads/2010/08/p7285015-1-150x150.jpg b/content/wp-content/uploads/2010/08/p7285015-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p7285015-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/p7285015-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/p7285015-1-300x225.jpg b/content/wp-content/uploads/2010/08/p7285015-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p7285015-1-300x225.jpg
rename to content/wp-content/uploads/2010/08/p7285015-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/p7285015-1-800x600.jpg b/content/wp-content/uploads/2010/08/p7285015-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p7285015-1-800x600.jpg
rename to content/wp-content/uploads/2010/08/p7285015-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/08/p7285015-1.jpg b/content/wp-content/uploads/2010/08/p7285015-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p7285015-1.jpg
rename to content/wp-content/uploads/2010/08/p7285015-1.jpg
diff --git a/files/wp-content/uploads/2010/08/p9115694-1-150x150.jpg b/content/wp-content/uploads/2010/08/p9115694-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p9115694-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/p9115694-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/p9115694-1-300x199.jpg b/content/wp-content/uploads/2010/08/p9115694-1-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p9115694-1-300x199.jpg
rename to content/wp-content/uploads/2010/08/p9115694-1-300x199.jpg
diff --git a/files/wp-content/uploads/2010/08/p9115694-1-800x532.jpg b/content/wp-content/uploads/2010/08/p9115694-1-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p9115694-1-800x532.jpg
rename to content/wp-content/uploads/2010/08/p9115694-1-800x532.jpg
diff --git a/files/wp-content/uploads/2010/08/p9115694-1.jpg b/content/wp-content/uploads/2010/08/p9115694-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p9115694-1.jpg
rename to content/wp-content/uploads/2010/08/p9115694-1.jpg
diff --git a/files/wp-content/uploads/2010/08/p9156397-1-150x150.jpg b/content/wp-content/uploads/2010/08/p9156397-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p9156397-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/p9156397-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/p9156397-1-300x225.jpg b/content/wp-content/uploads/2010/08/p9156397-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p9156397-1-300x225.jpg
rename to content/wp-content/uploads/2010/08/p9156397-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/p9156397-1-800x600.jpg b/content/wp-content/uploads/2010/08/p9156397-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p9156397-1-800x600.jpg
rename to content/wp-content/uploads/2010/08/p9156397-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/08/p9156397-1.jpg b/content/wp-content/uploads/2010/08/p9156397-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/p9156397-1.jpg
rename to content/wp-content/uploads/2010/08/p9156397-1.jpg
diff --git a/files/wp-content/uploads/2010/08/pa016964-1-150x150.jpg b/content/wp-content/uploads/2010/08/pa016964-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/pa016964-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/pa016964-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/pa016964-1-300x225.jpg b/content/wp-content/uploads/2010/08/pa016964-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/pa016964-1-300x225.jpg
rename to content/wp-content/uploads/2010/08/pa016964-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/08/pa016964-1-800x600.jpg b/content/wp-content/uploads/2010/08/pa016964-1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/pa016964-1-800x600.jpg
rename to content/wp-content/uploads/2010/08/pa016964-1-800x600.jpg
diff --git a/files/wp-content/uploads/2010/08/pa016964-1.jpg b/content/wp-content/uploads/2010/08/pa016964-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/pa016964-1.jpg
rename to content/wp-content/uploads/2010/08/pa016964-1.jpg
diff --git a/files/wp-content/uploads/2010/08/pa017019-1-150x150.jpg b/content/wp-content/uploads/2010/08/pa017019-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/pa017019-1-150x150.jpg
rename to content/wp-content/uploads/2010/08/pa017019-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/pa017019-1-233x300.jpg b/content/wp-content/uploads/2010/08/pa017019-1-233x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/pa017019-1-233x300.jpg
rename to content/wp-content/uploads/2010/08/pa017019-1-233x300.jpg
diff --git a/files/wp-content/uploads/2010/08/pa017019-1-466x600.jpg b/content/wp-content/uploads/2010/08/pa017019-1-466x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/pa017019-1-466x600.jpg
rename to content/wp-content/uploads/2010/08/pa017019-1-466x600.jpg
diff --git a/files/wp-content/uploads/2010/08/pa017019-1.jpg b/content/wp-content/uploads/2010/08/pa017019-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/pa017019-1.jpg
rename to content/wp-content/uploads/2010/08/pa017019-1.jpg
diff --git a/files/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02-150x150.jpg b/content/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02-150x150.jpg
rename to content/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02-150x150.jpg
diff --git a/files/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02-300x224.jpg b/content/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02-300x224.jpg
rename to content/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02-300x224.jpg
diff --git a/files/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02.jpg b/content/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02.jpg
rename to content/wp-content/uploads/2010/08/wpid-2010-07-31-13.15.02.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-20-06.29.53-150x150.jpg b/content/wp-content/uploads/2010/09/2010-07-20-06.29.53-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-20-06.29.53-150x150.jpg
rename to content/wp-content/uploads/2010/09/2010-07-20-06.29.53-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-20-06.29.53-300x224.jpg b/content/wp-content/uploads/2010/09/2010-07-20-06.29.53-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-20-06.29.53-300x224.jpg
rename to content/wp-content/uploads/2010/09/2010-07-20-06.29.53-300x224.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-20-06.29.53-800x597.jpg b/content/wp-content/uploads/2010/09/2010-07-20-06.29.53-800x597.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-20-06.29.53-800x597.jpg
rename to content/wp-content/uploads/2010/09/2010-07-20-06.29.53-800x597.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-20-06.29.53.jpg b/content/wp-content/uploads/2010/09/2010-07-20-06.29.53.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-20-06.29.53.jpg
rename to content/wp-content/uploads/2010/09/2010-07-20-06.29.53.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-22-20.30.04-150x150.jpg b/content/wp-content/uploads/2010/09/2010-07-22-20.30.04-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-22-20.30.04-150x150.jpg
rename to content/wp-content/uploads/2010/09/2010-07-22-20.30.04-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-22-20.30.04-300x224.jpg b/content/wp-content/uploads/2010/09/2010-07-22-20.30.04-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-22-20.30.04-300x224.jpg
rename to content/wp-content/uploads/2010/09/2010-07-22-20.30.04-300x224.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-22-20.30.04-800x597.jpg b/content/wp-content/uploads/2010/09/2010-07-22-20.30.04-800x597.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-22-20.30.04-800x597.jpg
rename to content/wp-content/uploads/2010/09/2010-07-22-20.30.04-800x597.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-22-20.30.04.jpg b/content/wp-content/uploads/2010/09/2010-07-22-20.30.04.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-22-20.30.04.jpg
rename to content/wp-content/uploads/2010/09/2010-07-22-20.30.04.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-31-16.04.13-150x150.jpg b/content/wp-content/uploads/2010/09/2010-07-31-16.04.13-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-31-16.04.13-150x150.jpg
rename to content/wp-content/uploads/2010/09/2010-07-31-16.04.13-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-31-16.04.13-300x132.jpg b/content/wp-content/uploads/2010/09/2010-07-31-16.04.13-300x132.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-31-16.04.13-300x132.jpg
rename to content/wp-content/uploads/2010/09/2010-07-31-16.04.13-300x132.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-31-16.04.13-800x352.jpg b/content/wp-content/uploads/2010/09/2010-07-31-16.04.13-800x352.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-31-16.04.13-800x352.jpg
rename to content/wp-content/uploads/2010/09/2010-07-31-16.04.13-800x352.jpg
diff --git a/files/wp-content/uploads/2010/09/2010-07-31-16.04.13.jpg b/content/wp-content/uploads/2010/09/2010-07-31-16.04.13.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/2010-07-31-16.04.13.jpg
rename to content/wp-content/uploads/2010/09/2010-07-31-16.04.13.jpg
diff --git a/files/wp-content/uploads/2010/09/DSCN2774-150x150.jpg b/content/wp-content/uploads/2010/09/DSCN2774-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/DSCN2774-150x150.jpg
rename to content/wp-content/uploads/2010/09/DSCN2774-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/DSCN2774-300x225.jpg b/content/wp-content/uploads/2010/09/DSCN2774-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/DSCN2774-300x225.jpg
rename to content/wp-content/uploads/2010/09/DSCN2774-300x225.jpg
diff --git a/files/wp-content/uploads/2010/09/DSCN2774-800x600.jpg b/content/wp-content/uploads/2010/09/DSCN2774-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/DSCN2774-800x600.jpg
rename to content/wp-content/uploads/2010/09/DSCN2774-800x600.jpg
diff --git a/files/wp-content/uploads/2010/09/DSCN2774.jpg b/content/wp-content/uploads/2010/09/DSCN2774.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/DSCN2774.jpg
rename to content/wp-content/uploads/2010/09/DSCN2774.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100906_181541-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_20100906_181541-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100906_181541-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100906_181541-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100906_181541-300x235.jpg b/content/wp-content/uploads/2010/09/IMG_20100906_181541-300x235.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100906_181541-300x235.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100906_181541-300x235.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100906_181541-765x600.jpg b/content/wp-content/uploads/2010/09/IMG_20100906_181541-765x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100906_181541-765x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100906_181541-765x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100906_181541.jpg b/content/wp-content/uploads/2010/09/IMG_20100906_181541.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100906_181541.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100906_181541.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_081423-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_081423-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_081423-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_081423-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_081423-225x300.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_081423-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_081423-225x300.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_081423-225x300.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_081423-450x600.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_081423-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_081423-450x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_081423-450x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_081423.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_081423.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_081423.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_081423.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_112924-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_112924-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_112924-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_112924-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_112924-300x224.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_112924-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_112924-300x224.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_112924-300x224.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_112924.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_112924.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_112924.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_112924.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_113004-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_113004-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_113004-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_113004-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_113004-225x300.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_113004-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_113004-225x300.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_113004-225x300.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_113004-450x600.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_113004-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_113004-450x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_113004-450x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_113004.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_113004.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_113004.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_113004.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_113036-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_113036-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_113036-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_113036-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_113036-300x225.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_113036-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_113036-300x225.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_113036-300x225.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100915_113036.jpg b/content/wp-content/uploads/2010/09/IMG_20100915_113036.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100915_113036.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100915_113036.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100919_115211-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_20100919_115211-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100919_115211-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100919_115211-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100919_115211-300x224.jpg b/content/wp-content/uploads/2010/09/IMG_20100919_115211-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100919_115211-300x224.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100919_115211-300x224.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100919_115211-800x597.jpg b/content/wp-content/uploads/2010/09/IMG_20100919_115211-800x597.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100919_115211-800x597.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100919_115211-800x597.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100919_115211.jpg b/content/wp-content/uploads/2010/09/IMG_20100919_115211.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100919_115211.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100919_115211.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100920_192328-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_20100920_192328-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100920_192328-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100920_192328-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100920_192328-300x224.jpg b/content/wp-content/uploads/2010/09/IMG_20100920_192328-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100920_192328-300x224.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100920_192328-300x224.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100920_192328-800x597.jpg b/content/wp-content/uploads/2010/09/IMG_20100920_192328-800x597.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100920_192328-800x597.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100920_192328-800x597.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_20100920_192328.jpg b/content/wp-content/uploads/2010/09/IMG_20100920_192328.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_20100920_192328.jpg
rename to content/wp-content/uploads/2010/09/IMG_20100920_192328.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7492-1-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7492-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7492-1-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7492-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7492-1-300x280.jpg b/content/wp-content/uploads/2010/09/IMG_7492-1-300x280.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7492-1-300x280.jpg
rename to content/wp-content/uploads/2010/09/IMG_7492-1-300x280.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7492-1-641x600.jpg b/content/wp-content/uploads/2010/09/IMG_7492-1-641x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7492-1-641x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_7492-1-641x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7492-1.jpg b/content/wp-content/uploads/2010/09/IMG_7492-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7492-1.jpg
rename to content/wp-content/uploads/2010/09/IMG_7492-1.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7493-2-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7493-2-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7493-2-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7493-2-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7493-2-200x300.jpg b/content/wp-content/uploads/2010/09/IMG_7493-2-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7493-2-200x300.jpg
rename to content/wp-content/uploads/2010/09/IMG_7493-2-200x300.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7493-2-400x600.jpg b/content/wp-content/uploads/2010/09/IMG_7493-2-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7493-2-400x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_7493-2-400x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7493-2.jpg b/content/wp-content/uploads/2010/09/IMG_7493-2.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7493-2.jpg
rename to content/wp-content/uploads/2010/09/IMG_7493-2.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7565-1-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7565-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7565-1-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7565-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7565-1-300x200.jpg b/content/wp-content/uploads/2010/09/IMG_7565-1-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7565-1-300x200.jpg
rename to content/wp-content/uploads/2010/09/IMG_7565-1-300x200.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7565-1-800x533.jpg b/content/wp-content/uploads/2010/09/IMG_7565-1-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7565-1-800x533.jpg
rename to content/wp-content/uploads/2010/09/IMG_7565-1-800x533.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7565-1.jpg b/content/wp-content/uploads/2010/09/IMG_7565-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7565-1.jpg
rename to content/wp-content/uploads/2010/09/IMG_7565-1.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7577-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7577-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7577-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7577-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7577-199x300.jpg b/content/wp-content/uploads/2010/09/IMG_7577-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7577-199x300.jpg
rename to content/wp-content/uploads/2010/09/IMG_7577-199x300.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7577-399x600.jpg b/content/wp-content/uploads/2010/09/IMG_7577-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7577-399x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_7577-399x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7577.jpg b/content/wp-content/uploads/2010/09/IMG_7577.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7577.jpg
rename to content/wp-content/uploads/2010/09/IMG_7577.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7582-1-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7582-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7582-1-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7582-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7582-1-300x199.jpg b/content/wp-content/uploads/2010/09/IMG_7582-1-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7582-1-300x199.jpg
rename to content/wp-content/uploads/2010/09/IMG_7582-1-300x199.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7582-1-800x532.jpg b/content/wp-content/uploads/2010/09/IMG_7582-1-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7582-1-800x532.jpg
rename to content/wp-content/uploads/2010/09/IMG_7582-1-800x532.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7582-1.jpg b/content/wp-content/uploads/2010/09/IMG_7582-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7582-1.jpg
rename to content/wp-content/uploads/2010/09/IMG_7582-1.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7586-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7586-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7586-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7586-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7586-199x300.jpg b/content/wp-content/uploads/2010/09/IMG_7586-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7586-199x300.jpg
rename to content/wp-content/uploads/2010/09/IMG_7586-199x300.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7586-399x600.jpg b/content/wp-content/uploads/2010/09/IMG_7586-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7586-399x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_7586-399x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7586.jpg b/content/wp-content/uploads/2010/09/IMG_7586.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7586.jpg
rename to content/wp-content/uploads/2010/09/IMG_7586.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7588-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7588-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7588-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7588-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7588-300x199.jpg b/content/wp-content/uploads/2010/09/IMG_7588-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7588-300x199.jpg
rename to content/wp-content/uploads/2010/09/IMG_7588-300x199.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7588-800x532.jpg b/content/wp-content/uploads/2010/09/IMG_7588-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7588-800x532.jpg
rename to content/wp-content/uploads/2010/09/IMG_7588-800x532.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7588.jpg b/content/wp-content/uploads/2010/09/IMG_7588.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7588.jpg
rename to content/wp-content/uploads/2010/09/IMG_7588.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7589-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7589-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7589-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7589-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7589-300x199.jpg b/content/wp-content/uploads/2010/09/IMG_7589-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7589-300x199.jpg
rename to content/wp-content/uploads/2010/09/IMG_7589-300x199.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7589-800x532.jpg b/content/wp-content/uploads/2010/09/IMG_7589-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7589-800x532.jpg
rename to content/wp-content/uploads/2010/09/IMG_7589-800x532.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7589.jpg b/content/wp-content/uploads/2010/09/IMG_7589.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7589.jpg
rename to content/wp-content/uploads/2010/09/IMG_7589.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7606-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7606-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7606-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7606-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7606-200x300.jpg b/content/wp-content/uploads/2010/09/IMG_7606-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7606-200x300.jpg
rename to content/wp-content/uploads/2010/09/IMG_7606-200x300.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7606-400x600.jpg b/content/wp-content/uploads/2010/09/IMG_7606-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7606-400x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_7606-400x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7606.jpg b/content/wp-content/uploads/2010/09/IMG_7606.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7606.jpg
rename to content/wp-content/uploads/2010/09/IMG_7606.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7608-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7608-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7608-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7608-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7608-200x300.jpg b/content/wp-content/uploads/2010/09/IMG_7608-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7608-200x300.jpg
rename to content/wp-content/uploads/2010/09/IMG_7608-200x300.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7608-400x600.jpg b/content/wp-content/uploads/2010/09/IMG_7608-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7608-400x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_7608-400x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7608.jpg b/content/wp-content/uploads/2010/09/IMG_7608.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7608.jpg
rename to content/wp-content/uploads/2010/09/IMG_7608.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7628-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7628-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7628-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7628-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7628-300x199.jpg b/content/wp-content/uploads/2010/09/IMG_7628-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7628-300x199.jpg
rename to content/wp-content/uploads/2010/09/IMG_7628-300x199.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7628-800x532.jpg b/content/wp-content/uploads/2010/09/IMG_7628-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7628-800x532.jpg
rename to content/wp-content/uploads/2010/09/IMG_7628-800x532.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7628.jpg b/content/wp-content/uploads/2010/09/IMG_7628.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7628.jpg
rename to content/wp-content/uploads/2010/09/IMG_7628.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7656-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7656-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7656-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7656-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7656-300x199.jpg b/content/wp-content/uploads/2010/09/IMG_7656-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7656-300x199.jpg
rename to content/wp-content/uploads/2010/09/IMG_7656-300x199.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7656.jpg b/content/wp-content/uploads/2010/09/IMG_7656.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7656.jpg
rename to content/wp-content/uploads/2010/09/IMG_7656.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7687-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7687-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7687-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7687-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7687-300x300.jpg b/content/wp-content/uploads/2010/09/IMG_7687-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7687-300x300.jpg
rename to content/wp-content/uploads/2010/09/IMG_7687-300x300.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7687-600x600.jpg b/content/wp-content/uploads/2010/09/IMG_7687-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7687-600x600.jpg
rename to content/wp-content/uploads/2010/09/IMG_7687-600x600.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7687.jpg b/content/wp-content/uploads/2010/09/IMG_7687.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7687.jpg
rename to content/wp-content/uploads/2010/09/IMG_7687.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7700-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7700-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7700-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7700-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7700-300x200.jpg b/content/wp-content/uploads/2010/09/IMG_7700-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7700-300x200.jpg
rename to content/wp-content/uploads/2010/09/IMG_7700-300x200.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7700.jpg b/content/wp-content/uploads/2010/09/IMG_7700.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7700.jpg
rename to content/wp-content/uploads/2010/09/IMG_7700.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7713-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7713-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7713-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7713-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7713-300x199.jpg b/content/wp-content/uploads/2010/09/IMG_7713-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7713-300x199.jpg
rename to content/wp-content/uploads/2010/09/IMG_7713-300x199.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7713.jpg b/content/wp-content/uploads/2010/09/IMG_7713.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7713.jpg
rename to content/wp-content/uploads/2010/09/IMG_7713.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7718-150x150.jpg b/content/wp-content/uploads/2010/09/IMG_7718-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7718-150x150.jpg
rename to content/wp-content/uploads/2010/09/IMG_7718-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7718-300x200.jpg b/content/wp-content/uploads/2010/09/IMG_7718-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7718-300x200.jpg
rename to content/wp-content/uploads/2010/09/IMG_7718-300x200.jpg
diff --git a/files/wp-content/uploads/2010/09/IMG_7718.jpg b/content/wp-content/uploads/2010/09/IMG_7718.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/IMG_7718.jpg
rename to content/wp-content/uploads/2010/09/IMG_7718.jpg
diff --git a/files/wp-content/uploads/2010/09/P4038261-150x150.jpg b/content/wp-content/uploads/2010/09/P4038261-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/P4038261-150x150.jpg
rename to content/wp-content/uploads/2010/09/P4038261-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/P4038261-300x225.jpg b/content/wp-content/uploads/2010/09/P4038261-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/P4038261-300x225.jpg
rename to content/wp-content/uploads/2010/09/P4038261-300x225.jpg
diff --git a/files/wp-content/uploads/2010/09/P4038261.jpg b/content/wp-content/uploads/2010/09/P4038261.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/P4038261.jpg
rename to content/wp-content/uploads/2010/09/P4038261.jpg
diff --git a/files/wp-content/uploads/2010/09/P4178686-150x150.jpg b/content/wp-content/uploads/2010/09/P4178686-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/P4178686-150x150.jpg
rename to content/wp-content/uploads/2010/09/P4178686-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/P4178686-300x226.jpg b/content/wp-content/uploads/2010/09/P4178686-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/P4178686-300x226.jpg
rename to content/wp-content/uploads/2010/09/P4178686-300x226.jpg
diff --git a/files/wp-content/uploads/2010/09/P4178686-796x600.jpg b/content/wp-content/uploads/2010/09/P4178686-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/P4178686-796x600.jpg
rename to content/wp-content/uploads/2010/09/P4178686-796x600.jpg
diff --git a/files/wp-content/uploads/2010/09/P4178686.jpg b/content/wp-content/uploads/2010/09/P4178686.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/P4178686.jpg
rename to content/wp-content/uploads/2010/09/P4178686.jpg
diff --git a/files/wp-content/uploads/2010/09/PA205504-150x150.jpg b/content/wp-content/uploads/2010/09/PA205504-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/PA205504-150x150.jpg
rename to content/wp-content/uploads/2010/09/PA205504-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/PA205504-300x225.jpg b/content/wp-content/uploads/2010/09/PA205504-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/PA205504-300x225.jpg
rename to content/wp-content/uploads/2010/09/PA205504-300x225.jpg
diff --git a/files/wp-content/uploads/2010/09/PA205504-800x600.jpg b/content/wp-content/uploads/2010/09/PA205504-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/PA205504-800x600.jpg
rename to content/wp-content/uploads/2010/09/PA205504-800x600.jpg
diff --git a/files/wp-content/uploads/2010/09/PA205504.jpg b/content/wp-content/uploads/2010/09/PA205504.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/PA205504.jpg
rename to content/wp-content/uploads/2010/09/PA205504.jpg
diff --git a/files/wp-content/uploads/2010/09/img_6828-2-150x150.jpg b/content/wp-content/uploads/2010/09/img_6828-2-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/img_6828-2-150x150.jpg
rename to content/wp-content/uploads/2010/09/img_6828-2-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/img_6828-2-300x300.jpg b/content/wp-content/uploads/2010/09/img_6828-2-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/img_6828-2-300x300.jpg
rename to content/wp-content/uploads/2010/09/img_6828-2-300x300.jpg
diff --git a/files/wp-content/uploads/2010/09/img_6828-2-600x600.jpg b/content/wp-content/uploads/2010/09/img_6828-2-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/img_6828-2-600x600.jpg
rename to content/wp-content/uploads/2010/09/img_6828-2-600x600.jpg
diff --git a/files/wp-content/uploads/2010/09/img_6828-2.jpg b/content/wp-content/uploads/2010/09/img_6828-2.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/img_6828-2.jpg
rename to content/wp-content/uploads/2010/09/img_6828-2.jpg
diff --git a/files/wp-content/uploads/2010/09/p9234105-150x150.jpg b/content/wp-content/uploads/2010/09/p9234105-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/p9234105-150x150.jpg
rename to content/wp-content/uploads/2010/09/p9234105-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/p9234105-225x300.jpg b/content/wp-content/uploads/2010/09/p9234105-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/p9234105-225x300.jpg
rename to content/wp-content/uploads/2010/09/p9234105-225x300.jpg
diff --git a/files/wp-content/uploads/2010/09/p9234105-450x600.jpg b/content/wp-content/uploads/2010/09/p9234105-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/p9234105-450x600.jpg
rename to content/wp-content/uploads/2010/09/p9234105-450x600.jpg
diff --git a/files/wp-content/uploads/2010/09/p9234105.jpg b/content/wp-content/uploads/2010/09/p9234105.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/p9234105.jpg
rename to content/wp-content/uploads/2010/09/p9234105.jpg
diff --git a/files/wp-content/uploads/2010/09/p9294137-CC-150x150.jpg b/content/wp-content/uploads/2010/09/p9294137-CC-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/p9294137-CC-150x150.jpg
rename to content/wp-content/uploads/2010/09/p9294137-CC-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/p9294137-CC-300x225.jpg b/content/wp-content/uploads/2010/09/p9294137-CC-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/p9294137-CC-300x225.jpg
rename to content/wp-content/uploads/2010/09/p9294137-CC-300x225.jpg
diff --git a/files/wp-content/uploads/2010/09/p9294137-CC-800x600.jpg b/content/wp-content/uploads/2010/09/p9294137-CC-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/p9294137-CC-800x600.jpg
rename to content/wp-content/uploads/2010/09/p9294137-CC-800x600.jpg
diff --git a/files/wp-content/uploads/2010/09/p9294137-CC.jpg b/content/wp-content/uploads/2010/09/p9294137-CC.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/p9294137-CC.jpg
rename to content/wp-content/uploads/2010/09/p9294137-CC.jpg
diff --git a/files/wp-content/uploads/2010/09/pc117125-150x150.jpg b/content/wp-content/uploads/2010/09/pc117125-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/pc117125-150x150.jpg
rename to content/wp-content/uploads/2010/09/pc117125-150x150.jpg
diff --git a/files/wp-content/uploads/2010/09/pc117125-300x225.jpg b/content/wp-content/uploads/2010/09/pc117125-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/pc117125-300x225.jpg
rename to content/wp-content/uploads/2010/09/pc117125-300x225.jpg
diff --git a/files/wp-content/uploads/2010/09/pc117125.jpg b/content/wp-content/uploads/2010/09/pc117125.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/09/pc117125.jpg
rename to content/wp-content/uploads/2010/09/pc117125.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-150x150.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-150x150.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-300x300.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-300x300.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-600x600.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-600x600.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-41-12-312-600x600.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-41-12-312.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-41-12-312.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-41-12-312.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-41-12-312.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-150x150.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-150x150.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-300x300.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-300x300.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-600x600.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-600x600.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-43-47-550-600x600.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-43-47-550.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-43-47-550.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-43-47-550.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-43-47-550.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-150x150.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-150x150.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-300x300.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-300x300.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-600x600.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-600x600.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-44-27-086-600x600.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-44-27-086.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-44-27-086.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-44-27-086.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-44-27-086.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-150x150.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-150x150.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-300x215.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-300x215.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-300x215.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-300x215.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-800x573.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-800x573.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-800x573.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-47-32-403-800x573.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-47-32-403.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-47-32-403.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-47-32-403.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-47-32-403.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-150x150.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-150x150.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-300x215.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-300x215.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-300x215.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-300x215.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-800x573.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-800x573.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-800x573.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-54-09-006-800x573.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-54-09-006.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-54-09-006.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-54-09-006.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-54-09-006.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-150x150.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-150x150.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-300x215.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-300x215.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-300x215.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-300x215.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-800x573.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-800x573.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-800x573.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-55-35-772-800x573.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-08-55-35-772.jpg b/content/wp-content/uploads/2010/10/2010-10-13-08-55-35-772.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-08-55-35-772.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-08-55-35-772.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-150x150.jpg b/content/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-150x150.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-300x215.jpg b/content/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-300x215.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-300x215.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-300x215.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-800x573.jpg b/content/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-800x573.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-800x573.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-17-45-58-166-800x573.jpg
diff --git a/files/wp-content/uploads/2010/10/2010-10-13-17-45-58-166.jpg b/content/wp-content/uploads/2010/10/2010-10-13-17-45-58-166.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/2010-10-13-17-45-58-166.jpg
rename to content/wp-content/uploads/2010/10/2010-10-13-17-45-58-166.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_0001-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_0001-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_0001-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_0001-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_0001-300x205.jpg b/content/wp-content/uploads/2010/10/IMG_0001-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_0001-300x205.jpg
rename to content/wp-content/uploads/2010/10/IMG_0001-300x205.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_0001-800x549.jpg b/content/wp-content/uploads/2010/10/IMG_0001-800x549.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_0001-800x549.jpg
rename to content/wp-content/uploads/2010/10/IMG_0001-800x549.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_0001.jpg b/content/wp-content/uploads/2010/10/IMG_0001.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_0001.jpg
rename to content/wp-content/uploads/2010/10/IMG_0001.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7743-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7743-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7743-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7743-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7743-300x200.jpg b/content/wp-content/uploads/2010/10/IMG_7743-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7743-300x200.jpg
rename to content/wp-content/uploads/2010/10/IMG_7743-300x200.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7743-800x533.jpg b/content/wp-content/uploads/2010/10/IMG_7743-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7743-800x533.jpg
rename to content/wp-content/uploads/2010/10/IMG_7743-800x533.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7743.jpg b/content/wp-content/uploads/2010/10/IMG_7743.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7743.jpg
rename to content/wp-content/uploads/2010/10/IMG_7743.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7757-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7757-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7757-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7757-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7757-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_7757-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7757-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_7757-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7757-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_7757-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7757-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_7757-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7757.jpg b/content/wp-content/uploads/2010/10/IMG_7757.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7757.jpg
rename to content/wp-content/uploads/2010/10/IMG_7757.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7761-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7761-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7761-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7761-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7761-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_7761-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7761-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_7761-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7761-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_7761-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7761-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_7761-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7761.jpg b/content/wp-content/uploads/2010/10/IMG_7761.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7761.jpg
rename to content/wp-content/uploads/2010/10/IMG_7761.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7768-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7768-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7768-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7768-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7768-300x200.jpg b/content/wp-content/uploads/2010/10/IMG_7768-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7768-300x200.jpg
rename to content/wp-content/uploads/2010/10/IMG_7768-300x200.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7768-800x533.jpg b/content/wp-content/uploads/2010/10/IMG_7768-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7768-800x533.jpg
rename to content/wp-content/uploads/2010/10/IMG_7768-800x533.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7768.jpg b/content/wp-content/uploads/2010/10/IMG_7768.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7768.jpg
rename to content/wp-content/uploads/2010/10/IMG_7768.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7787-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7787-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7787-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7787-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7787-300x300.jpg b/content/wp-content/uploads/2010/10/IMG_7787-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7787-300x300.jpg
rename to content/wp-content/uploads/2010/10/IMG_7787-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7787-600x600.jpg b/content/wp-content/uploads/2010/10/IMG_7787-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7787-600x600.jpg
rename to content/wp-content/uploads/2010/10/IMG_7787-600x600.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7787.jpg b/content/wp-content/uploads/2010/10/IMG_7787.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7787.jpg
rename to content/wp-content/uploads/2010/10/IMG_7787.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7788-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7788-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7788-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7788-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7788-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_7788-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7788-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_7788-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7788-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_7788-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7788-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_7788-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7788.jpg b/content/wp-content/uploads/2010/10/IMG_7788.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7788.jpg
rename to content/wp-content/uploads/2010/10/IMG_7788.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7790-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7790-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7790-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7790-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7790-300x300.jpg b/content/wp-content/uploads/2010/10/IMG_7790-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7790-300x300.jpg
rename to content/wp-content/uploads/2010/10/IMG_7790-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7790-598x600.jpg b/content/wp-content/uploads/2010/10/IMG_7790-598x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7790-598x600.jpg
rename to content/wp-content/uploads/2010/10/IMG_7790-598x600.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7790.jpg b/content/wp-content/uploads/2010/10/IMG_7790.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7790.jpg
rename to content/wp-content/uploads/2010/10/IMG_7790.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7791-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7791-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7791-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7791-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7791-300x300.jpg b/content/wp-content/uploads/2010/10/IMG_7791-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7791-300x300.jpg
rename to content/wp-content/uploads/2010/10/IMG_7791-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7791-599x600.jpg b/content/wp-content/uploads/2010/10/IMG_7791-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7791-599x600.jpg
rename to content/wp-content/uploads/2010/10/IMG_7791-599x600.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7791.jpg b/content/wp-content/uploads/2010/10/IMG_7791.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7791.jpg
rename to content/wp-content/uploads/2010/10/IMG_7791.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7819-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7819-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7819-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7819-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7819-300x300.jpg b/content/wp-content/uploads/2010/10/IMG_7819-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7819-300x300.jpg
rename to content/wp-content/uploads/2010/10/IMG_7819-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7819-599x600.jpg b/content/wp-content/uploads/2010/10/IMG_7819-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7819-599x600.jpg
rename to content/wp-content/uploads/2010/10/IMG_7819-599x600.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7819.jpg b/content/wp-content/uploads/2010/10/IMG_7819.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7819.jpg
rename to content/wp-content/uploads/2010/10/IMG_7819.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7932-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7932-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7932-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7932-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7932-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_7932-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7932-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_7932-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7932-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_7932-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7932-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_7932-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7932.jpg b/content/wp-content/uploads/2010/10/IMG_7932.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7932.jpg
rename to content/wp-content/uploads/2010/10/IMG_7932.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7941-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7941-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7941-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7941-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7941-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_7941-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7941-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_7941-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7941-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_7941-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7941-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_7941-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7941.jpg b/content/wp-content/uploads/2010/10/IMG_7941.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7941.jpg
rename to content/wp-content/uploads/2010/10/IMG_7941.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7956-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7956-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7956-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7956-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7956-199x300.jpg b/content/wp-content/uploads/2010/10/IMG_7956-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7956-199x300.jpg
rename to content/wp-content/uploads/2010/10/IMG_7956-199x300.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7956-399x600.jpg b/content/wp-content/uploads/2010/10/IMG_7956-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7956-399x600.jpg
rename to content/wp-content/uploads/2010/10/IMG_7956-399x600.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7956.jpg b/content/wp-content/uploads/2010/10/IMG_7956.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7956.jpg
rename to content/wp-content/uploads/2010/10/IMG_7956.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7973-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7973-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7973-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7973-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7973-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_7973-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7973-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_7973-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7973-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_7973-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7973-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_7973-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7973.jpg b/content/wp-content/uploads/2010/10/IMG_7973.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7973.jpg
rename to content/wp-content/uploads/2010/10/IMG_7973.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7982-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7982-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7982-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7982-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7982-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_7982-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7982-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_7982-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7982-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_7982-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7982-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_7982-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7982.jpg b/content/wp-content/uploads/2010/10/IMG_7982.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7982.jpg
rename to content/wp-content/uploads/2010/10/IMG_7982.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7984-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_7984-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7984-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_7984-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7984-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_7984-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7984-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_7984-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7984-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_7984-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7984-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_7984-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_7984.jpg b/content/wp-content/uploads/2010/10/IMG_7984.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_7984.jpg
rename to content/wp-content/uploads/2010/10/IMG_7984.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8179-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8179-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8179-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8179-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8179-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_8179-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8179-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_8179-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8179-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_8179-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8179-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_8179-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8179.jpg b/content/wp-content/uploads/2010/10/IMG_8179.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8179.jpg
rename to content/wp-content/uploads/2010/10/IMG_8179.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8189-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8189-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8189-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8189-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8189-200x300.jpg b/content/wp-content/uploads/2010/10/IMG_8189-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8189-200x300.jpg
rename to content/wp-content/uploads/2010/10/IMG_8189-200x300.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8189-400x600.jpg b/content/wp-content/uploads/2010/10/IMG_8189-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8189-400x600.jpg
rename to content/wp-content/uploads/2010/10/IMG_8189-400x600.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8189.jpg b/content/wp-content/uploads/2010/10/IMG_8189.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8189.jpg
rename to content/wp-content/uploads/2010/10/IMG_8189.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8192-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8192-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8192-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8192-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8192-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_8192-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8192-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_8192-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8192-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_8192-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8192-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_8192-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8192.jpg b/content/wp-content/uploads/2010/10/IMG_8192.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8192.jpg
rename to content/wp-content/uploads/2010/10/IMG_8192.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8201-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8201-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8201-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8201-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8201-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_8201-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8201-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_8201-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8201-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_8201-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8201-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_8201-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8201.jpg b/content/wp-content/uploads/2010/10/IMG_8201.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8201.jpg
rename to content/wp-content/uploads/2010/10/IMG_8201.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8205-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8205-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8205-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8205-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8205-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_8205-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8205-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_8205-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8205-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_8205-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8205-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_8205-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8205.jpg b/content/wp-content/uploads/2010/10/IMG_8205.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8205.jpg
rename to content/wp-content/uploads/2010/10/IMG_8205.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8206-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8206-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8206-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8206-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8206-300x200.jpg b/content/wp-content/uploads/2010/10/IMG_8206-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8206-300x200.jpg
rename to content/wp-content/uploads/2010/10/IMG_8206-300x200.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8206-800x533.jpg b/content/wp-content/uploads/2010/10/IMG_8206-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8206-800x533.jpg
rename to content/wp-content/uploads/2010/10/IMG_8206-800x533.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8206.jpg b/content/wp-content/uploads/2010/10/IMG_8206.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8206.jpg
rename to content/wp-content/uploads/2010/10/IMG_8206.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8209-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8209-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8209-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8209-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8209-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_8209-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8209-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_8209-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8209-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_8209-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8209-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_8209-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8209.jpg b/content/wp-content/uploads/2010/10/IMG_8209.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8209.jpg
rename to content/wp-content/uploads/2010/10/IMG_8209.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8225-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8225-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8225-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8225-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8225-300x200.jpg b/content/wp-content/uploads/2010/10/IMG_8225-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8225-300x200.jpg
rename to content/wp-content/uploads/2010/10/IMG_8225-300x200.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8225-800x533.jpg b/content/wp-content/uploads/2010/10/IMG_8225-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8225-800x533.jpg
rename to content/wp-content/uploads/2010/10/IMG_8225-800x533.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8225.jpg b/content/wp-content/uploads/2010/10/IMG_8225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8225.jpg
rename to content/wp-content/uploads/2010/10/IMG_8225.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8231-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8231-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8231-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8231-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8231-300x300.jpg b/content/wp-content/uploads/2010/10/IMG_8231-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8231-300x300.jpg
rename to content/wp-content/uploads/2010/10/IMG_8231-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8231-600x600.jpg b/content/wp-content/uploads/2010/10/IMG_8231-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8231-600x600.jpg
rename to content/wp-content/uploads/2010/10/IMG_8231-600x600.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8231.jpg b/content/wp-content/uploads/2010/10/IMG_8231.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8231.jpg
rename to content/wp-content/uploads/2010/10/IMG_8231.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8233-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8233-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8233-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8233-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8233-300x199.jpg b/content/wp-content/uploads/2010/10/IMG_8233-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8233-300x199.jpg
rename to content/wp-content/uploads/2010/10/IMG_8233-300x199.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8233-800x532.jpg b/content/wp-content/uploads/2010/10/IMG_8233-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8233-800x532.jpg
rename to content/wp-content/uploads/2010/10/IMG_8233-800x532.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8233.jpg b/content/wp-content/uploads/2010/10/IMG_8233.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8233.jpg
rename to content/wp-content/uploads/2010/10/IMG_8233.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8235-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8235-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8235-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8235-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8235-300x300.jpg b/content/wp-content/uploads/2010/10/IMG_8235-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8235-300x300.jpg
rename to content/wp-content/uploads/2010/10/IMG_8235-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8235-601x600.jpg b/content/wp-content/uploads/2010/10/IMG_8235-601x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8235-601x600.jpg
rename to content/wp-content/uploads/2010/10/IMG_8235-601x600.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8235.jpg b/content/wp-content/uploads/2010/10/IMG_8235.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8235.jpg
rename to content/wp-content/uploads/2010/10/IMG_8235.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8238-150x150.jpg b/content/wp-content/uploads/2010/10/IMG_8238-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8238-150x150.jpg
rename to content/wp-content/uploads/2010/10/IMG_8238-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8238-300x300.jpg b/content/wp-content/uploads/2010/10/IMG_8238-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8238-300x300.jpg
rename to content/wp-content/uploads/2010/10/IMG_8238-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8238-601x600.jpg b/content/wp-content/uploads/2010/10/IMG_8238-601x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8238-601x600.jpg
rename to content/wp-content/uploads/2010/10/IMG_8238-601x600.jpg
diff --git a/files/wp-content/uploads/2010/10/IMG_8238.jpg b/content/wp-content/uploads/2010/10/IMG_8238.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/IMG_8238.jpg
rename to content/wp-content/uploads/2010/10/IMG_8238.jpg
diff --git a/files/wp-content/uploads/2010/10/P1109034-150x150.jpg b/content/wp-content/uploads/2010/10/P1109034-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P1109034-150x150.jpg
rename to content/wp-content/uploads/2010/10/P1109034-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/P1109034-300x300.jpg b/content/wp-content/uploads/2010/10/P1109034-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P1109034-300x300.jpg
rename to content/wp-content/uploads/2010/10/P1109034-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/P1109034-598x600.jpg b/content/wp-content/uploads/2010/10/P1109034-598x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P1109034-598x600.jpg
rename to content/wp-content/uploads/2010/10/P1109034-598x600.jpg
diff --git a/files/wp-content/uploads/2010/10/P1109034.jpg b/content/wp-content/uploads/2010/10/P1109034.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P1109034.jpg
rename to content/wp-content/uploads/2010/10/P1109034.jpg
diff --git a/files/wp-content/uploads/2010/10/P1109064-150x150.jpg b/content/wp-content/uploads/2010/10/P1109064-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P1109064-150x150.jpg
rename to content/wp-content/uploads/2010/10/P1109064-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/P1109064-300x300.jpg b/content/wp-content/uploads/2010/10/P1109064-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P1109064-300x300.jpg
rename to content/wp-content/uploads/2010/10/P1109064-300x300.jpg
diff --git a/files/wp-content/uploads/2010/10/P1109064-598x600.jpg b/content/wp-content/uploads/2010/10/P1109064-598x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P1109064-598x600.jpg
rename to content/wp-content/uploads/2010/10/P1109064-598x600.jpg
diff --git a/files/wp-content/uploads/2010/10/P1109064.jpg b/content/wp-content/uploads/2010/10/P1109064.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P1109064.jpg
rename to content/wp-content/uploads/2010/10/P1109064.jpg
diff --git a/files/wp-content/uploads/2010/10/P2040287-150x150.jpg b/content/wp-content/uploads/2010/10/P2040287-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2040287-150x150.jpg
rename to content/wp-content/uploads/2010/10/P2040287-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/P2040287-300x225.jpg b/content/wp-content/uploads/2010/10/P2040287-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2040287-300x225.jpg
rename to content/wp-content/uploads/2010/10/P2040287-300x225.jpg
diff --git a/files/wp-content/uploads/2010/10/P2040287-796x600.jpg b/content/wp-content/uploads/2010/10/P2040287-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2040287-796x600.jpg
rename to content/wp-content/uploads/2010/10/P2040287-796x600.jpg
diff --git a/files/wp-content/uploads/2010/10/P2040287.jpg b/content/wp-content/uploads/2010/10/P2040287.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2040287.jpg
rename to content/wp-content/uploads/2010/10/P2040287.jpg
diff --git a/files/wp-content/uploads/2010/10/P2040300-150x150.jpg b/content/wp-content/uploads/2010/10/P2040300-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2040300-150x150.jpg
rename to content/wp-content/uploads/2010/10/P2040300-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/P2040300-300x225.jpg b/content/wp-content/uploads/2010/10/P2040300-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2040300-300x225.jpg
rename to content/wp-content/uploads/2010/10/P2040300-300x225.jpg
diff --git a/files/wp-content/uploads/2010/10/P2040300-796x600.jpg b/content/wp-content/uploads/2010/10/P2040300-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2040300-796x600.jpg
rename to content/wp-content/uploads/2010/10/P2040300-796x600.jpg
diff --git a/files/wp-content/uploads/2010/10/P2040300.jpg b/content/wp-content/uploads/2010/10/P2040300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2040300.jpg
rename to content/wp-content/uploads/2010/10/P2040300.jpg
diff --git a/files/wp-content/uploads/2010/10/P2070491-150x150.jpg b/content/wp-content/uploads/2010/10/P2070491-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2070491-150x150.jpg
rename to content/wp-content/uploads/2010/10/P2070491-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/P2070491-225x300.jpg b/content/wp-content/uploads/2010/10/P2070491-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2070491-225x300.jpg
rename to content/wp-content/uploads/2010/10/P2070491-225x300.jpg
diff --git a/files/wp-content/uploads/2010/10/P2070491-451x600.jpg b/content/wp-content/uploads/2010/10/P2070491-451x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2070491-451x600.jpg
rename to content/wp-content/uploads/2010/10/P2070491-451x600.jpg
diff --git a/files/wp-content/uploads/2010/10/P2070491.jpg b/content/wp-content/uploads/2010/10/P2070491.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/P2070491.jpg
rename to content/wp-content/uploads/2010/10/P2070491.jpg
diff --git a/files/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig-150x150.jpg b/content/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig-150x150.jpg
rename to content/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig-150x150.jpg
diff --git a/files/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig-300x224.jpg b/content/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig-300x224.jpg
rename to content/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig-300x224.jpg
diff --git a/files/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig.jpg b/content/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig.jpg
rename to content/wp-content/uploads/2010/10/wpid-2010-10-26-07-39-10-471-orig.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_7514-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_7514-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_7514-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_7514-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_7514-300x169.jpg b/content/wp-content/uploads/2010/11/IMG_7514-300x169.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_7514-300x169.jpg
rename to content/wp-content/uploads/2010/11/IMG_7514-300x169.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_7514-800x450.jpg b/content/wp-content/uploads/2010/11/IMG_7514-800x450.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_7514-800x450.jpg
rename to content/wp-content/uploads/2010/11/IMG_7514-800x450.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_7514.jpg b/content/wp-content/uploads/2010/11/IMG_7514.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_7514.jpg
rename to content/wp-content/uploads/2010/11/IMG_7514.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_7695-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_7695-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_7695-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_7695-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_7695-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_7695-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_7695-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_7695-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_7695-800x532.jpg b/content/wp-content/uploads/2010/11/IMG_7695-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_7695-800x532.jpg
rename to content/wp-content/uploads/2010/11/IMG_7695-800x532.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_7695.jpg b/content/wp-content/uploads/2010/11/IMG_7695.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_7695.jpg
rename to content/wp-content/uploads/2010/11/IMG_7695.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8261-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8261-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8261-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8261-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8261-300x300.jpg b/content/wp-content/uploads/2010/11/IMG_8261-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8261-300x300.jpg
rename to content/wp-content/uploads/2010/11/IMG_8261-300x300.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8261-599x600.jpg b/content/wp-content/uploads/2010/11/IMG_8261-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8261-599x600.jpg
rename to content/wp-content/uploads/2010/11/IMG_8261-599x600.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8261.jpg b/content/wp-content/uploads/2010/11/IMG_8261.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8261.jpg
rename to content/wp-content/uploads/2010/11/IMG_8261.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8289-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8289-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8289-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8289-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8289-300x179.jpg b/content/wp-content/uploads/2010/11/IMG_8289-300x179.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8289-300x179.jpg
rename to content/wp-content/uploads/2010/11/IMG_8289-300x179.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8289.jpg b/content/wp-content/uploads/2010/11/IMG_8289.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8289.jpg
rename to content/wp-content/uploads/2010/11/IMG_8289.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8358-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8358-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8358-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8358-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8358-300x200.jpg b/content/wp-content/uploads/2010/11/IMG_8358-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8358-300x200.jpg
rename to content/wp-content/uploads/2010/11/IMG_8358-300x200.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8358.jpg b/content/wp-content/uploads/2010/11/IMG_8358.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8358.jpg
rename to content/wp-content/uploads/2010/11/IMG_8358.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8455-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8455-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8455-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8455-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8455-300x200.jpg b/content/wp-content/uploads/2010/11/IMG_8455-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8455-300x200.jpg
rename to content/wp-content/uploads/2010/11/IMG_8455-300x200.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8455.jpg b/content/wp-content/uploads/2010/11/IMG_8455.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8455.jpg
rename to content/wp-content/uploads/2010/11/IMG_8455.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8465-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8465-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8465-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8465-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8465-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_8465-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8465-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_8465-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8465.jpg b/content/wp-content/uploads/2010/11/IMG_8465.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8465.jpg
rename to content/wp-content/uploads/2010/11/IMG_8465.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8466-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8466-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8466-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8466-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8466-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_8466-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8466-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_8466-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8466.jpg b/content/wp-content/uploads/2010/11/IMG_8466.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8466.jpg
rename to content/wp-content/uploads/2010/11/IMG_8466.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8692-1-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8692-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8692-1-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8692-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8692-1-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_8692-1-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8692-1-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_8692-1-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8692-1.jpg b/content/wp-content/uploads/2010/11/IMG_8692-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8692-1.jpg
rename to content/wp-content/uploads/2010/11/IMG_8692-1.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8692-11-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8692-11-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8692-11-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8692-11-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8692-11-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_8692-11-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8692-11-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_8692-11-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8692-11.jpg b/content/wp-content/uploads/2010/11/IMG_8692-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8692-11.jpg
rename to content/wp-content/uploads/2010/11/IMG_8692-11.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8692-12-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8692-12-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8692-12-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8692-12-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8692-12-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_8692-12-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8692-12-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_8692-12-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8692-12.jpg b/content/wp-content/uploads/2010/11/IMG_8692-12.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8692-12.jpg
rename to content/wp-content/uploads/2010/11/IMG_8692-12.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8693-1-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8693-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8693-1-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8693-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8693-1-226x300.jpg b/content/wp-content/uploads/2010/11/IMG_8693-1-226x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8693-1-226x300.jpg
rename to content/wp-content/uploads/2010/11/IMG_8693-1-226x300.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8693-1-453x600.jpg b/content/wp-content/uploads/2010/11/IMG_8693-1-453x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8693-1-453x600.jpg
rename to content/wp-content/uploads/2010/11/IMG_8693-1-453x600.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8693-1.jpg b/content/wp-content/uploads/2010/11/IMG_8693-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8693-1.jpg
rename to content/wp-content/uploads/2010/11/IMG_8693-1.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8694-1-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8694-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8694-1-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8694-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8694-1-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_8694-1-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8694-1-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_8694-1-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8694-1.jpg b/content/wp-content/uploads/2010/11/IMG_8694-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8694-1.jpg
rename to content/wp-content/uploads/2010/11/IMG_8694-1.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8713-1-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8713-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8713-1-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8713-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8713-1-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_8713-1-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8713-1-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_8713-1-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8713-1.jpg b/content/wp-content/uploads/2010/11/IMG_8713-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8713-1.jpg
rename to content/wp-content/uploads/2010/11/IMG_8713-1.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8721-1-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8721-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8721-1-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8721-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8721-1-199x300.jpg b/content/wp-content/uploads/2010/11/IMG_8721-1-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8721-1-199x300.jpg
rename to content/wp-content/uploads/2010/11/IMG_8721-1-199x300.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8721-1-399x600.jpg b/content/wp-content/uploads/2010/11/IMG_8721-1-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8721-1-399x600.jpg
rename to content/wp-content/uploads/2010/11/IMG_8721-1-399x600.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8721-1.jpg b/content/wp-content/uploads/2010/11/IMG_8721-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8721-1.jpg
rename to content/wp-content/uploads/2010/11/IMG_8721-1.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8723-1-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8723-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8723-1-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8723-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8723-1-199x300.jpg b/content/wp-content/uploads/2010/11/IMG_8723-1-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8723-1-199x300.jpg
rename to content/wp-content/uploads/2010/11/IMG_8723-1-199x300.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8723-1-399x600.jpg b/content/wp-content/uploads/2010/11/IMG_8723-1-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8723-1-399x600.jpg
rename to content/wp-content/uploads/2010/11/IMG_8723-1-399x600.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8723-1.jpg b/content/wp-content/uploads/2010/11/IMG_8723-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8723-1.jpg
rename to content/wp-content/uploads/2010/11/IMG_8723-1.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8724-1-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8724-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8724-1-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8724-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8724-1-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_8724-1-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8724-1-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_8724-1-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8724-1.jpg b/content/wp-content/uploads/2010/11/IMG_8724-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8724-1.jpg
rename to content/wp-content/uploads/2010/11/IMG_8724-1.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8726-1-150x150.jpg b/content/wp-content/uploads/2010/11/IMG_8726-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8726-1-150x150.jpg
rename to content/wp-content/uploads/2010/11/IMG_8726-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8726-1-300x199.jpg b/content/wp-content/uploads/2010/11/IMG_8726-1-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8726-1-300x199.jpg
rename to content/wp-content/uploads/2010/11/IMG_8726-1-300x199.jpg
diff --git a/files/wp-content/uploads/2010/11/IMG_8726-1.jpg b/content/wp-content/uploads/2010/11/IMG_8726-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/IMG_8726-1.jpg
rename to content/wp-content/uploads/2010/11/IMG_8726-1.jpg
diff --git a/files/wp-content/uploads/2010/11/P2190172-150x150.jpg b/content/wp-content/uploads/2010/11/P2190172-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P2190172-150x150.jpg
rename to content/wp-content/uploads/2010/11/P2190172-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P2190172-300x225.jpg b/content/wp-content/uploads/2010/11/P2190172-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P2190172-300x225.jpg
rename to content/wp-content/uploads/2010/11/P2190172-300x225.jpg
diff --git a/files/wp-content/uploads/2010/11/P2190172.jpg b/content/wp-content/uploads/2010/11/P2190172.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P2190172.jpg
rename to content/wp-content/uploads/2010/11/P2190172.jpg
diff --git a/files/wp-content/uploads/2010/11/P2220221-150x150.jpg b/content/wp-content/uploads/2010/11/P2220221-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P2220221-150x150.jpg
rename to content/wp-content/uploads/2010/11/P2220221-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P2220221-300x225.jpg b/content/wp-content/uploads/2010/11/P2220221-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P2220221-300x225.jpg
rename to content/wp-content/uploads/2010/11/P2220221-300x225.jpg
diff --git a/files/wp-content/uploads/2010/11/P2220221.jpg b/content/wp-content/uploads/2010/11/P2220221.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P2220221.jpg
rename to content/wp-content/uploads/2010/11/P2220221.jpg
diff --git a/files/wp-content/uploads/2010/11/P3147790-150x150.jpg b/content/wp-content/uploads/2010/11/P3147790-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3147790-150x150.jpg
rename to content/wp-content/uploads/2010/11/P3147790-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P3147790-300x232.jpg b/content/wp-content/uploads/2010/11/P3147790-300x232.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3147790-300x232.jpg
rename to content/wp-content/uploads/2010/11/P3147790-300x232.jpg
diff --git a/files/wp-content/uploads/2010/11/P3147790-775x600.jpg b/content/wp-content/uploads/2010/11/P3147790-775x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3147790-775x600.jpg
rename to content/wp-content/uploads/2010/11/P3147790-775x600.jpg
diff --git a/files/wp-content/uploads/2010/11/P3147790.jpg b/content/wp-content/uploads/2010/11/P3147790.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3147790.jpg
rename to content/wp-content/uploads/2010/11/P3147790.jpg
diff --git a/files/wp-content/uploads/2010/11/P3201240-150x150.jpg b/content/wp-content/uploads/2010/11/P3201240-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3201240-150x150.jpg
rename to content/wp-content/uploads/2010/11/P3201240-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P3201240-300x239.jpg b/content/wp-content/uploads/2010/11/P3201240-300x239.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3201240-300x239.jpg
rename to content/wp-content/uploads/2010/11/P3201240-300x239.jpg
diff --git a/files/wp-content/uploads/2010/11/P3201240-751x600.jpg b/content/wp-content/uploads/2010/11/P3201240-751x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3201240-751x600.jpg
rename to content/wp-content/uploads/2010/11/P3201240-751x600.jpg
diff --git a/files/wp-content/uploads/2010/11/P3201240.jpg b/content/wp-content/uploads/2010/11/P3201240.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3201240.jpg
rename to content/wp-content/uploads/2010/11/P3201240.jpg
diff --git a/files/wp-content/uploads/2010/11/P3210640-150x150.jpg b/content/wp-content/uploads/2010/11/P3210640-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3210640-150x150.jpg
rename to content/wp-content/uploads/2010/11/P3210640-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P3210640-225x300.jpg b/content/wp-content/uploads/2010/11/P3210640-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3210640-225x300.jpg
rename to content/wp-content/uploads/2010/11/P3210640-225x300.jpg
diff --git a/files/wp-content/uploads/2010/11/P3210640-450x600.jpg b/content/wp-content/uploads/2010/11/P3210640-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3210640-450x600.jpg
rename to content/wp-content/uploads/2010/11/P3210640-450x600.jpg
diff --git a/files/wp-content/uploads/2010/11/P3210640.jpg b/content/wp-content/uploads/2010/11/P3210640.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P3210640.jpg
rename to content/wp-content/uploads/2010/11/P3210640.jpg
diff --git a/files/wp-content/uploads/2010/11/P4038128-150x150.jpg b/content/wp-content/uploads/2010/11/P4038128-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4038128-150x150.jpg
rename to content/wp-content/uploads/2010/11/P4038128-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P4038128-300x232.jpg b/content/wp-content/uploads/2010/11/P4038128-300x232.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4038128-300x232.jpg
rename to content/wp-content/uploads/2010/11/P4038128-300x232.jpg
diff --git a/files/wp-content/uploads/2010/11/P4038128-775x600.jpg b/content/wp-content/uploads/2010/11/P4038128-775x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4038128-775x600.jpg
rename to content/wp-content/uploads/2010/11/P4038128-775x600.jpg
diff --git a/files/wp-content/uploads/2010/11/P4038128.jpg b/content/wp-content/uploads/2010/11/P4038128.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4038128.jpg
rename to content/wp-content/uploads/2010/11/P4038128.jpg
diff --git a/files/wp-content/uploads/2010/11/P4050986-150x150.jpg b/content/wp-content/uploads/2010/11/P4050986-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4050986-150x150.jpg
rename to content/wp-content/uploads/2010/11/P4050986-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P4050986-300x225.jpg b/content/wp-content/uploads/2010/11/P4050986-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4050986-300x225.jpg
rename to content/wp-content/uploads/2010/11/P4050986-300x225.jpg
diff --git a/files/wp-content/uploads/2010/11/P4050986.jpg b/content/wp-content/uploads/2010/11/P4050986.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4050986.jpg
rename to content/wp-content/uploads/2010/11/P4050986.jpg
diff --git a/files/wp-content/uploads/2010/11/P4051020-150x150.jpg b/content/wp-content/uploads/2010/11/P4051020-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4051020-150x150.jpg
rename to content/wp-content/uploads/2010/11/P4051020-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P4051020-300x225.jpg b/content/wp-content/uploads/2010/11/P4051020-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4051020-300x225.jpg
rename to content/wp-content/uploads/2010/11/P4051020-300x225.jpg
diff --git a/files/wp-content/uploads/2010/11/P4051020.jpg b/content/wp-content/uploads/2010/11/P4051020.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P4051020.jpg
rename to content/wp-content/uploads/2010/11/P4051020.jpg
diff --git a/files/wp-content/uploads/2010/11/P5142410-1-150x150.jpg b/content/wp-content/uploads/2010/11/P5142410-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P5142410-1-150x150.jpg
rename to content/wp-content/uploads/2010/11/P5142410-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P5142410-1-300x225.jpg b/content/wp-content/uploads/2010/11/P5142410-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P5142410-1-300x225.jpg
rename to content/wp-content/uploads/2010/11/P5142410-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/11/P5142410-1.jpg b/content/wp-content/uploads/2010/11/P5142410-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P5142410-1.jpg
rename to content/wp-content/uploads/2010/11/P5142410-1.jpg
diff --git a/files/wp-content/uploads/2010/11/P5192466-150x150.jpg b/content/wp-content/uploads/2010/11/P5192466-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P5192466-150x150.jpg
rename to content/wp-content/uploads/2010/11/P5192466-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P5192466-300x225.jpg b/content/wp-content/uploads/2010/11/P5192466-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P5192466-300x225.jpg
rename to content/wp-content/uploads/2010/11/P5192466-300x225.jpg
diff --git a/files/wp-content/uploads/2010/11/P5192466.jpg b/content/wp-content/uploads/2010/11/P5192466.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P5192466.jpg
rename to content/wp-content/uploads/2010/11/P5192466.jpg
diff --git a/files/wp-content/uploads/2010/11/P7030610-150x150.jpg b/content/wp-content/uploads/2010/11/P7030610-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7030610-150x150.jpg
rename to content/wp-content/uploads/2010/11/P7030610-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P7030610-225x300.jpg b/content/wp-content/uploads/2010/11/P7030610-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7030610-225x300.jpg
rename to content/wp-content/uploads/2010/11/P7030610-225x300.jpg
diff --git a/files/wp-content/uploads/2010/11/P7030610-450x600.jpg b/content/wp-content/uploads/2010/11/P7030610-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7030610-450x600.jpg
rename to content/wp-content/uploads/2010/11/P7030610-450x600.jpg
diff --git a/files/wp-content/uploads/2010/11/P7030610.jpg b/content/wp-content/uploads/2010/11/P7030610.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7030610.jpg
rename to content/wp-content/uploads/2010/11/P7030610.jpg
diff --git a/files/wp-content/uploads/2010/11/P7240814-150x150.jpg b/content/wp-content/uploads/2010/11/P7240814-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7240814-150x150.jpg
rename to content/wp-content/uploads/2010/11/P7240814-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P7240814-300x225.jpg b/content/wp-content/uploads/2010/11/P7240814-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7240814-300x225.jpg
rename to content/wp-content/uploads/2010/11/P7240814-300x225.jpg
diff --git a/files/wp-content/uploads/2010/11/P7240814-796x600.jpg b/content/wp-content/uploads/2010/11/P7240814-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7240814-796x600.jpg
rename to content/wp-content/uploads/2010/11/P7240814-796x600.jpg
diff --git a/files/wp-content/uploads/2010/11/P7240814.jpg b/content/wp-content/uploads/2010/11/P7240814.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7240814.jpg
rename to content/wp-content/uploads/2010/11/P7240814.jpg
diff --git a/files/wp-content/uploads/2010/11/P7240961-150x150.jpg b/content/wp-content/uploads/2010/11/P7240961-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7240961-150x150.jpg
rename to content/wp-content/uploads/2010/11/P7240961-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/P7240961-300x225.jpg b/content/wp-content/uploads/2010/11/P7240961-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7240961-300x225.jpg
rename to content/wp-content/uploads/2010/11/P7240961-300x225.jpg
diff --git a/files/wp-content/uploads/2010/11/P7240961-796x600.jpg b/content/wp-content/uploads/2010/11/P7240961-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7240961-796x600.jpg
rename to content/wp-content/uploads/2010/11/P7240961-796x600.jpg
diff --git a/files/wp-content/uploads/2010/11/P7240961.jpg b/content/wp-content/uploads/2010/11/P7240961.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/P7240961.jpg
rename to content/wp-content/uploads/2010/11/P7240961.jpg
diff --git a/files/wp-content/uploads/2010/11/PB036080-150x150.jpg b/content/wp-content/uploads/2010/11/PB036080-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/PB036080-150x150.jpg
rename to content/wp-content/uploads/2010/11/PB036080-150x150.jpg
diff --git a/files/wp-content/uploads/2010/11/PB036080-300x225.jpg b/content/wp-content/uploads/2010/11/PB036080-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/PB036080-300x225.jpg
rename to content/wp-content/uploads/2010/11/PB036080-300x225.jpg
diff --git a/files/wp-content/uploads/2010/11/PB036080.jpg b/content/wp-content/uploads/2010/11/PB036080.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/11/PB036080.jpg
rename to content/wp-content/uploads/2010/11/PB036080.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-07-17-06-46-740-150x150.jpg b/content/wp-content/uploads/2010/12/2010-11-07-17-06-46-740-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-07-17-06-46-740-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-11-07-17-06-46-740-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-07-17-06-46-740-300x214.jpg b/content/wp-content/uploads/2010/12/2010-11-07-17-06-46-740-300x214.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-07-17-06-46-740-300x214.jpg
rename to content/wp-content/uploads/2010/12/2010-11-07-17-06-46-740-300x214.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-07-17-06-46-740.jpg b/content/wp-content/uploads/2010/12/2010-11-07-17-06-46-740.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-07-17-06-46-740.jpg
rename to content/wp-content/uploads/2010/12/2010-11-07-17-06-46-740.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-150x150.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-199x300.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-399x600.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-092-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-092.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-092.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-092.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-092.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-150x150.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-199x300.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-399x600.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0921.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-150x150.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-199x300.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-399x600.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922.jpg b/content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922.jpg
rename to content/wp-content/uploads/2010/12/2010-11-30-11-27-46-0922.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-199x300.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-399x600.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-749-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-749.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-749.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-749.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-749.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-199x300.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-399x600.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7491.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-199x300.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-399x600.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492.jpg b/content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492.jpg
rename to content/wp-content/uploads/2010/12/2010-12-19-17-34-56-7492.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-199x300.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-399x600.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-292-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-292.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-292.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-292.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-292.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-199x300.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-399x600.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2921.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-199x300.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-399x600.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922.jpg b/content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922.jpg
rename to content/wp-content/uploads/2010/12/2010-12-21-17-20-49-2922.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig-300x224.jpg b/content/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig-300x224.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig-300x224.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig.jpg b/content/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-09-39-13-126-orig.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig-300x224.jpg b/content/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig-300x224.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig-300x224.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig.jpg b/content/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-16-47-25-361-orig.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-199x300.jpg b/content/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-399x600.jpg b/content/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-16-50-32-235-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-25-16-50-32-235.jpg b/content/wp-content/uploads/2010/12/2010-12-25-16-50-32-235.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-25-16-50-32-235.jpg
rename to content/wp-content/uploads/2010/12/2010-12-25-16-50-32-235.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-150x150.jpg b/content/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-150x150.jpg
rename to content/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-199x300.jpg b/content/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-199x300.jpg
rename to content/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-399x600.jpg b/content/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-399x600.jpg
rename to content/wp-content/uploads/2010/12/2010-12-26-16-00-25-326-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/2010-12-26-16-00-25-326.jpg b/content/wp-content/uploads/2010/12/2010-12-26-16-00-25-326.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/2010-12-26-16-00-25-326.jpg
rename to content/wp-content/uploads/2010/12/2010-12-26-16-00-25-326.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2684-1-150x150.jpg b/content/wp-content/uploads/2010/12/DSCN2684-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2684-1-150x150.jpg
rename to content/wp-content/uploads/2010/12/DSCN2684-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2684-1-300x225.jpg b/content/wp-content/uploads/2010/12/DSCN2684-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2684-1-300x225.jpg
rename to content/wp-content/uploads/2010/12/DSCN2684-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2684-1.jpg b/content/wp-content/uploads/2010/12/DSCN2684-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2684-1.jpg
rename to content/wp-content/uploads/2010/12/DSCN2684-1.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2684-2-150x150.jpg b/content/wp-content/uploads/2010/12/DSCN2684-2-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2684-2-150x150.jpg
rename to content/wp-content/uploads/2010/12/DSCN2684-2-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2684-2-300x225.jpg b/content/wp-content/uploads/2010/12/DSCN2684-2-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2684-2-300x225.jpg
rename to content/wp-content/uploads/2010/12/DSCN2684-2-300x225.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2684-2.jpg b/content/wp-content/uploads/2010/12/DSCN2684-2.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2684-2.jpg
rename to content/wp-content/uploads/2010/12/DSCN2684-2.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2781-150x150.jpg b/content/wp-content/uploads/2010/12/DSCN2781-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2781-150x150.jpg
rename to content/wp-content/uploads/2010/12/DSCN2781-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2781-300x225.jpg b/content/wp-content/uploads/2010/12/DSCN2781-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2781-300x225.jpg
rename to content/wp-content/uploads/2010/12/DSCN2781-300x225.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2781.jpg b/content/wp-content/uploads/2010/12/DSCN2781.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2781.jpg
rename to content/wp-content/uploads/2010/12/DSCN2781.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2785-1-150x150.jpg b/content/wp-content/uploads/2010/12/DSCN2785-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2785-1-150x150.jpg
rename to content/wp-content/uploads/2010/12/DSCN2785-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2785-1-300x225.jpg b/content/wp-content/uploads/2010/12/DSCN2785-1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2785-1-300x225.jpg
rename to content/wp-content/uploads/2010/12/DSCN2785-1-300x225.jpg
diff --git a/files/wp-content/uploads/2010/12/DSCN2785-1.jpg b/content/wp-content/uploads/2010/12/DSCN2785-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/DSCN2785-1.jpg
rename to content/wp-content/uploads/2010/12/DSCN2785-1.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_8727-1-150x150.jpg b/content/wp-content/uploads/2010/12/IMG_8727-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_8727-1-150x150.jpg
rename to content/wp-content/uploads/2010/12/IMG_8727-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_8727-1-199x300.jpg b/content/wp-content/uploads/2010/12/IMG_8727-1-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_8727-1-199x300.jpg
rename to content/wp-content/uploads/2010/12/IMG_8727-1-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_8727-1-399x600.jpg b/content/wp-content/uploads/2010/12/IMG_8727-1-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_8727-1-399x600.jpg
rename to content/wp-content/uploads/2010/12/IMG_8727-1-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_8727-1.jpg b/content/wp-content/uploads/2010/12/IMG_8727-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_8727-1.jpg
rename to content/wp-content/uploads/2010/12/IMG_8727-1.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_8729-1-150x150.jpg b/content/wp-content/uploads/2010/12/IMG_8729-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_8729-1-150x150.jpg
rename to content/wp-content/uploads/2010/12/IMG_8729-1-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_8729-1-199x300.jpg b/content/wp-content/uploads/2010/12/IMG_8729-1-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_8729-1-199x300.jpg
rename to content/wp-content/uploads/2010/12/IMG_8729-1-199x300.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_8729-1-399x600.jpg b/content/wp-content/uploads/2010/12/IMG_8729-1-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_8729-1-399x600.jpg
rename to content/wp-content/uploads/2010/12/IMG_8729-1-399x600.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_8729-1.jpg b/content/wp-content/uploads/2010/12/IMG_8729-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_8729-1.jpg
rename to content/wp-content/uploads/2010/12/IMG_8729-1.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9028-150x150.jpg b/content/wp-content/uploads/2010/12/IMG_9028-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9028-150x150.jpg
rename to content/wp-content/uploads/2010/12/IMG_9028-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9028-300x168.jpg b/content/wp-content/uploads/2010/12/IMG_9028-300x168.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9028-300x168.jpg
rename to content/wp-content/uploads/2010/12/IMG_9028-300x168.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9028.jpg b/content/wp-content/uploads/2010/12/IMG_9028.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9028.jpg
rename to content/wp-content/uploads/2010/12/IMG_9028.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9151-150x150.jpg b/content/wp-content/uploads/2010/12/IMG_9151-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9151-150x150.jpg
rename to content/wp-content/uploads/2010/12/IMG_9151-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9151-300x300.jpg b/content/wp-content/uploads/2010/12/IMG_9151-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9151-300x300.jpg
rename to content/wp-content/uploads/2010/12/IMG_9151-300x300.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9151-601x600.jpg b/content/wp-content/uploads/2010/12/IMG_9151-601x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9151-601x600.jpg
rename to content/wp-content/uploads/2010/12/IMG_9151-601x600.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9151.jpg b/content/wp-content/uploads/2010/12/IMG_9151.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9151.jpg
rename to content/wp-content/uploads/2010/12/IMG_9151.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9173-150x150.jpg b/content/wp-content/uploads/2010/12/IMG_9173-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9173-150x150.jpg
rename to content/wp-content/uploads/2010/12/IMG_9173-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9173-300x300.jpg b/content/wp-content/uploads/2010/12/IMG_9173-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9173-300x300.jpg
rename to content/wp-content/uploads/2010/12/IMG_9173-300x300.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9173-600x600.jpg b/content/wp-content/uploads/2010/12/IMG_9173-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9173-600x600.jpg
rename to content/wp-content/uploads/2010/12/IMG_9173-600x600.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9173.jpg b/content/wp-content/uploads/2010/12/IMG_9173.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9173.jpg
rename to content/wp-content/uploads/2010/12/IMG_9173.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9239-150x150.jpg b/content/wp-content/uploads/2010/12/IMG_9239-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9239-150x150.jpg
rename to content/wp-content/uploads/2010/12/IMG_9239-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9239-200x300.jpg b/content/wp-content/uploads/2010/12/IMG_9239-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9239-200x300.jpg
rename to content/wp-content/uploads/2010/12/IMG_9239-200x300.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9239-400x600.jpg b/content/wp-content/uploads/2010/12/IMG_9239-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9239-400x600.jpg
rename to content/wp-content/uploads/2010/12/IMG_9239-400x600.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9239.jpg b/content/wp-content/uploads/2010/12/IMG_9239.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9239.jpg
rename to content/wp-content/uploads/2010/12/IMG_9239.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9381-150x150.jpg b/content/wp-content/uploads/2010/12/IMG_9381-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9381-150x150.jpg
rename to content/wp-content/uploads/2010/12/IMG_9381-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9381-300x200.jpg b/content/wp-content/uploads/2010/12/IMG_9381-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9381-300x200.jpg
rename to content/wp-content/uploads/2010/12/IMG_9381-300x200.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9381.jpg b/content/wp-content/uploads/2010/12/IMG_9381.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9381.jpg
rename to content/wp-content/uploads/2010/12/IMG_9381.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9399-150x150.jpg b/content/wp-content/uploads/2010/12/IMG_9399-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9399-150x150.jpg
rename to content/wp-content/uploads/2010/12/IMG_9399-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9399-300x200.jpg b/content/wp-content/uploads/2010/12/IMG_9399-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9399-300x200.jpg
rename to content/wp-content/uploads/2010/12/IMG_9399-300x200.jpg
diff --git a/files/wp-content/uploads/2010/12/IMG_9399.jpg b/content/wp-content/uploads/2010/12/IMG_9399.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/IMG_9399.jpg
rename to content/wp-content/uploads/2010/12/IMG_9399.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290001-150x150.jpg b/content/wp-content/uploads/2010/12/P6290001-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290001-150x150.jpg
rename to content/wp-content/uploads/2010/12/P6290001-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290001-225x300.jpg b/content/wp-content/uploads/2010/12/P6290001-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290001-225x300.jpg
rename to content/wp-content/uploads/2010/12/P6290001-225x300.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290001-450x600.jpg b/content/wp-content/uploads/2010/12/P6290001-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290001-450x600.jpg
rename to content/wp-content/uploads/2010/12/P6290001-450x600.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290001.jpg b/content/wp-content/uploads/2010/12/P6290001.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290001.jpg
rename to content/wp-content/uploads/2010/12/P6290001.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290041-150x150.jpg b/content/wp-content/uploads/2010/12/P6290041-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290041-150x150.jpg
rename to content/wp-content/uploads/2010/12/P6290041-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290041-300x225.jpg b/content/wp-content/uploads/2010/12/P6290041-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290041-300x225.jpg
rename to content/wp-content/uploads/2010/12/P6290041-300x225.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290041.jpg b/content/wp-content/uploads/2010/12/P6290041.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290041.jpg
rename to content/wp-content/uploads/2010/12/P6290041.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290074-150x150.jpg b/content/wp-content/uploads/2010/12/P6290074-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290074-150x150.jpg
rename to content/wp-content/uploads/2010/12/P6290074-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290074-300x225.jpg b/content/wp-content/uploads/2010/12/P6290074-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290074-300x225.jpg
rename to content/wp-content/uploads/2010/12/P6290074-300x225.jpg
diff --git a/files/wp-content/uploads/2010/12/P6290074.jpg b/content/wp-content/uploads/2010/12/P6290074.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6290074.jpg
rename to content/wp-content/uploads/2010/12/P6290074.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299933-150x150.jpg b/content/wp-content/uploads/2010/12/P6299933-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299933-150x150.jpg
rename to content/wp-content/uploads/2010/12/P6299933-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299933-300x225.jpg b/content/wp-content/uploads/2010/12/P6299933-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299933-300x225.jpg
rename to content/wp-content/uploads/2010/12/P6299933-300x225.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299933.jpg b/content/wp-content/uploads/2010/12/P6299933.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299933.jpg
rename to content/wp-content/uploads/2010/12/P6299933.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299959-150x150.jpg b/content/wp-content/uploads/2010/12/P6299959-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299959-150x150.jpg
rename to content/wp-content/uploads/2010/12/P6299959-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299959-300x300.jpg b/content/wp-content/uploads/2010/12/P6299959-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299959-300x300.jpg
rename to content/wp-content/uploads/2010/12/P6299959-300x300.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299959-600x600.jpg b/content/wp-content/uploads/2010/12/P6299959-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299959-600x600.jpg
rename to content/wp-content/uploads/2010/12/P6299959-600x600.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299959.jpg b/content/wp-content/uploads/2010/12/P6299959.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299959.jpg
rename to content/wp-content/uploads/2010/12/P6299959.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299973-150x150.jpg b/content/wp-content/uploads/2010/12/P6299973-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299973-150x150.jpg
rename to content/wp-content/uploads/2010/12/P6299973-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299973-300x300.jpg b/content/wp-content/uploads/2010/12/P6299973-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299973-300x300.jpg
rename to content/wp-content/uploads/2010/12/P6299973-300x300.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299973-601x600.jpg b/content/wp-content/uploads/2010/12/P6299973-601x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299973-601x600.jpg
rename to content/wp-content/uploads/2010/12/P6299973-601x600.jpg
diff --git a/files/wp-content/uploads/2010/12/P6299973.jpg b/content/wp-content/uploads/2010/12/P6299973.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/P6299973.jpg
rename to content/wp-content/uploads/2010/12/P6299973.jpg
diff --git a/files/wp-content/uploads/2010/12/pic00009-150x150.jpg b/content/wp-content/uploads/2010/12/pic00009-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/pic00009-150x150.jpg
rename to content/wp-content/uploads/2010/12/pic00009-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/pic00009-300x225.jpg b/content/wp-content/uploads/2010/12/pic00009-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/pic00009-300x225.jpg
rename to content/wp-content/uploads/2010/12/pic00009-300x225.jpg
diff --git a/files/wp-content/uploads/2010/12/pic00009.jpg b/content/wp-content/uploads/2010/12/pic00009.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/pic00009.jpg
rename to content/wp-content/uploads/2010/12/pic00009.jpg
diff --git a/files/wp-content/uploads/2010/12/pic00093-150x150.jpg b/content/wp-content/uploads/2010/12/pic00093-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/pic00093-150x150.jpg
rename to content/wp-content/uploads/2010/12/pic00093-150x150.jpg
diff --git a/files/wp-content/uploads/2010/12/pic00093-300x225.jpg b/content/wp-content/uploads/2010/12/pic00093-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/pic00093-300x225.jpg
rename to content/wp-content/uploads/2010/12/pic00093-300x225.jpg
diff --git a/files/wp-content/uploads/2010/12/pic00093.jpg b/content/wp-content/uploads/2010/12/pic00093.jpg
similarity index 100%
rename from files/wp-content/uploads/2010/12/pic00093.jpg
rename to content/wp-content/uploads/2010/12/pic00093.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2801-150x150.jpg b/content/wp-content/uploads/2011/01/DSCN2801-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2801-150x150.jpg
rename to content/wp-content/uploads/2011/01/DSCN2801-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2801-225x300.jpg b/content/wp-content/uploads/2011/01/DSCN2801-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2801-225x300.jpg
rename to content/wp-content/uploads/2011/01/DSCN2801-225x300.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2801-450x600.jpg b/content/wp-content/uploads/2011/01/DSCN2801-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2801-450x600.jpg
rename to content/wp-content/uploads/2011/01/DSCN2801-450x600.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2801.jpg b/content/wp-content/uploads/2011/01/DSCN2801.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2801.jpg
rename to content/wp-content/uploads/2011/01/DSCN2801.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2811-150x150.jpg b/content/wp-content/uploads/2011/01/DSCN2811-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2811-150x150.jpg
rename to content/wp-content/uploads/2011/01/DSCN2811-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2811-225x300.jpg b/content/wp-content/uploads/2011/01/DSCN2811-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2811-225x300.jpg
rename to content/wp-content/uploads/2011/01/DSCN2811-225x300.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2811-450x600.jpg b/content/wp-content/uploads/2011/01/DSCN2811-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2811-450x600.jpg
rename to content/wp-content/uploads/2011/01/DSCN2811-450x600.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2811.jpg b/content/wp-content/uploads/2011/01/DSCN2811.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2811.jpg
rename to content/wp-content/uploads/2011/01/DSCN2811.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2813-150x150.jpg b/content/wp-content/uploads/2011/01/DSCN2813-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2813-150x150.jpg
rename to content/wp-content/uploads/2011/01/DSCN2813-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2813-300x225.jpg b/content/wp-content/uploads/2011/01/DSCN2813-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2813-300x225.jpg
rename to content/wp-content/uploads/2011/01/DSCN2813-300x225.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2813.jpg b/content/wp-content/uploads/2011/01/DSCN2813.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2813.jpg
rename to content/wp-content/uploads/2011/01/DSCN2813.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2815-150x150.jpg b/content/wp-content/uploads/2011/01/DSCN2815-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2815-150x150.jpg
rename to content/wp-content/uploads/2011/01/DSCN2815-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2815-225x300.jpg b/content/wp-content/uploads/2011/01/DSCN2815-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2815-225x300.jpg
rename to content/wp-content/uploads/2011/01/DSCN2815-225x300.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2815-450x600.jpg b/content/wp-content/uploads/2011/01/DSCN2815-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2815-450x600.jpg
rename to content/wp-content/uploads/2011/01/DSCN2815-450x600.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN2815.jpg b/content/wp-content/uploads/2011/01/DSCN2815.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN2815.jpg
rename to content/wp-content/uploads/2011/01/DSCN2815.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN28151-150x150.jpg b/content/wp-content/uploads/2011/01/DSCN28151-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN28151-150x150.jpg
rename to content/wp-content/uploads/2011/01/DSCN28151-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN28151-225x300.jpg b/content/wp-content/uploads/2011/01/DSCN28151-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN28151-225x300.jpg
rename to content/wp-content/uploads/2011/01/DSCN28151-225x300.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN28151-450x600.jpg b/content/wp-content/uploads/2011/01/DSCN28151-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN28151-450x600.jpg
rename to content/wp-content/uploads/2011/01/DSCN28151-450x600.jpg
diff --git a/files/wp-content/uploads/2011/01/DSCN28151.jpg b/content/wp-content/uploads/2011/01/DSCN28151.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/DSCN28151.jpg
rename to content/wp-content/uploads/2011/01/DSCN28151.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8467-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_8467-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8467-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_8467-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8467-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_8467-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8467-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_8467-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8467-600x600.jpg b/content/wp-content/uploads/2011/01/IMG_8467-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8467-600x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_8467-600x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8467.jpg b/content/wp-content/uploads/2011/01/IMG_8467.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8467.jpg
rename to content/wp-content/uploads/2011/01/IMG_8467.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_84671-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_84671-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_84671-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_84671-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_84671-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_84671-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_84671-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_84671-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_84671-600x600.jpg b/content/wp-content/uploads/2011/01/IMG_84671-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_84671-600x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_84671-600x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_84671.jpg b/content/wp-content/uploads/2011/01/IMG_84671.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_84671.jpg
rename to content/wp-content/uploads/2011/01/IMG_84671.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8519-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_8519-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8519-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_8519-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8519-300x200.jpg b/content/wp-content/uploads/2011/01/IMG_8519-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8519-300x200.jpg
rename to content/wp-content/uploads/2011/01/IMG_8519-300x200.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8519.jpg b/content/wp-content/uploads/2011/01/IMG_8519.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8519.jpg
rename to content/wp-content/uploads/2011/01/IMG_8519.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_85191-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_85191-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_85191-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_85191-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_85191-300x200.jpg b/content/wp-content/uploads/2011/01/IMG_85191-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_85191-300x200.jpg
rename to content/wp-content/uploads/2011/01/IMG_85191-300x200.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_85191.jpg b/content/wp-content/uploads/2011/01/IMG_85191.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_85191.jpg
rename to content/wp-content/uploads/2011/01/IMG_85191.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8690.jpg b/content/wp-content/uploads/2011/01/IMG_8690.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8690.jpg
rename to content/wp-content/uploads/2011/01/IMG_8690.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_86901-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_86901-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_86901-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_86901-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_86901-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_86901-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_86901-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_86901-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_86901-600x600.jpg b/content/wp-content/uploads/2011/01/IMG_86901-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_86901-600x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_86901-600x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_86901.jpg b/content/wp-content/uploads/2011/01/IMG_86901.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_86901.jpg
rename to content/wp-content/uploads/2011/01/IMG_86901.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8758-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_8758-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8758-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_8758-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8758-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_8758-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8758-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_8758-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8758-600x600.jpg b/content/wp-content/uploads/2011/01/IMG_8758-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8758-600x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_8758-600x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_8758.jpg b/content/wp-content/uploads/2011/01/IMG_8758.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_8758.jpg
rename to content/wp-content/uploads/2011/01/IMG_8758.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9426-1-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9426-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9426-1-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9426-1-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9426-1-300x200.jpg b/content/wp-content/uploads/2011/01/IMG_9426-1-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9426-1-300x200.jpg
rename to content/wp-content/uploads/2011/01/IMG_9426-1-300x200.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9426-1.jpg b/content/wp-content/uploads/2011/01/IMG_9426-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9426-1.jpg
rename to content/wp-content/uploads/2011/01/IMG_9426-1.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9430-1-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9430-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9430-1-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9430-1-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9430-1-300x200.jpg b/content/wp-content/uploads/2011/01/IMG_9430-1-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9430-1-300x200.jpg
rename to content/wp-content/uploads/2011/01/IMG_9430-1-300x200.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9430-1.jpg b/content/wp-content/uploads/2011/01/IMG_9430-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9430-1.jpg
rename to content/wp-content/uploads/2011/01/IMG_9430-1.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9462-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9462-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9462-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9462-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9462-200x300.jpg b/content/wp-content/uploads/2011/01/IMG_9462-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9462-200x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_9462-200x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9462-400x600.jpg b/content/wp-content/uploads/2011/01/IMG_9462-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9462-400x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_9462-400x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9462.jpg b/content/wp-content/uploads/2011/01/IMG_9462.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9462.jpg
rename to content/wp-content/uploads/2011/01/IMG_9462.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9483-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9483-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9483-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9483-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9483-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_9483-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9483-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_9483-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9483-599x600.jpg b/content/wp-content/uploads/2011/01/IMG_9483-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9483-599x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_9483-599x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9483.jpg b/content/wp-content/uploads/2011/01/IMG_9483.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9483.jpg
rename to content/wp-content/uploads/2011/01/IMG_9483.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9484-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9484-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9484-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9484-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9484-300x168.jpg b/content/wp-content/uploads/2011/01/IMG_9484-300x168.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9484-300x168.jpg
rename to content/wp-content/uploads/2011/01/IMG_9484-300x168.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9484.jpg b/content/wp-content/uploads/2011/01/IMG_9484.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9484.jpg
rename to content/wp-content/uploads/2011/01/IMG_9484.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9514-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9514-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9514-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9514-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9514-300x168.jpg b/content/wp-content/uploads/2011/01/IMG_9514-300x168.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9514-300x168.jpg
rename to content/wp-content/uploads/2011/01/IMG_9514-300x168.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9514.jpg b/content/wp-content/uploads/2011/01/IMG_9514.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9514.jpg
rename to content/wp-content/uploads/2011/01/IMG_9514.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9557-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9557-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9557-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9557-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9557-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_9557-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9557-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_9557-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9557-600x600.jpg b/content/wp-content/uploads/2011/01/IMG_9557-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9557-600x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_9557-600x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9557.jpg b/content/wp-content/uploads/2011/01/IMG_9557.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9557.jpg
rename to content/wp-content/uploads/2011/01/IMG_9557.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9558-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9558-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9558-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9558-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9558-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_9558-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9558-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_9558-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9558-600x600.jpg b/content/wp-content/uploads/2011/01/IMG_9558-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9558-600x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_9558-600x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9558.jpg b/content/wp-content/uploads/2011/01/IMG_9558.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9558.jpg
rename to content/wp-content/uploads/2011/01/IMG_9558.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9561-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9561-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9561-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9561-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9561-200x300.jpg b/content/wp-content/uploads/2011/01/IMG_9561-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9561-200x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_9561-200x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9561-400x600.jpg b/content/wp-content/uploads/2011/01/IMG_9561-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9561-400x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_9561-400x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9561.jpg b/content/wp-content/uploads/2011/01/IMG_9561.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9561.jpg
rename to content/wp-content/uploads/2011/01/IMG_9561.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9572-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9572-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9572-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9572-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9572-300x200.jpg b/content/wp-content/uploads/2011/01/IMG_9572-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9572-300x200.jpg
rename to content/wp-content/uploads/2011/01/IMG_9572-300x200.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9572.jpg b/content/wp-content/uploads/2011/01/IMG_9572.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9572.jpg
rename to content/wp-content/uploads/2011/01/IMG_9572.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9582-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9582-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9582-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9582-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9582-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_9582-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9582-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_9582-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9582-599x600.jpg b/content/wp-content/uploads/2011/01/IMG_9582-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9582-599x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_9582-599x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9582.jpg b/content/wp-content/uploads/2011/01/IMG_9582.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9582.jpg
rename to content/wp-content/uploads/2011/01/IMG_9582.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9583-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9583-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9583-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9583-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9583-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_9583-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9583-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_9583-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9583-600x600.jpg b/content/wp-content/uploads/2011/01/IMG_9583-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9583-600x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_9583-600x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9583.jpg b/content/wp-content/uploads/2011/01/IMG_9583.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9583.jpg
rename to content/wp-content/uploads/2011/01/IMG_9583.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9585-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9585-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9585-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9585-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9585-300x199.jpg b/content/wp-content/uploads/2011/01/IMG_9585-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9585-300x199.jpg
rename to content/wp-content/uploads/2011/01/IMG_9585-300x199.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9585.jpg b/content/wp-content/uploads/2011/01/IMG_9585.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9585.jpg
rename to content/wp-content/uploads/2011/01/IMG_9585.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9588-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9588-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9588-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9588-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9588-200x300.jpg b/content/wp-content/uploads/2011/01/IMG_9588-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9588-200x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_9588-200x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9588-400x600.jpg b/content/wp-content/uploads/2011/01/IMG_9588-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9588-400x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_9588-400x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9588.jpg b/content/wp-content/uploads/2011/01/IMG_9588.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9588.jpg
rename to content/wp-content/uploads/2011/01/IMG_9588.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9589-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9589-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9589-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9589-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9589-300x300.jpg b/content/wp-content/uploads/2011/01/IMG_9589-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9589-300x300.jpg
rename to content/wp-content/uploads/2011/01/IMG_9589-300x300.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9589-600x600.jpg b/content/wp-content/uploads/2011/01/IMG_9589-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9589-600x600.jpg
rename to content/wp-content/uploads/2011/01/IMG_9589-600x600.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9589.jpg b/content/wp-content/uploads/2011/01/IMG_9589.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9589.jpg
rename to content/wp-content/uploads/2011/01/IMG_9589.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9591-150x150.jpg b/content/wp-content/uploads/2011/01/IMG_9591-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9591-150x150.jpg
rename to content/wp-content/uploads/2011/01/IMG_9591-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9591-300x199.jpg b/content/wp-content/uploads/2011/01/IMG_9591-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9591-300x199.jpg
rename to content/wp-content/uploads/2011/01/IMG_9591-300x199.jpg
diff --git a/files/wp-content/uploads/2011/01/IMG_9591.jpg b/content/wp-content/uploads/2011/01/IMG_9591.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/IMG_9591.jpg
rename to content/wp-content/uploads/2011/01/IMG_9591.jpg
diff --git a/files/wp-content/uploads/2011/01/P1078983-150x150.jpg b/content/wp-content/uploads/2011/01/P1078983-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/P1078983-150x150.jpg
rename to content/wp-content/uploads/2011/01/P1078983-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/P1078983-300x187.jpg b/content/wp-content/uploads/2011/01/P1078983-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/P1078983-300x187.jpg
rename to content/wp-content/uploads/2011/01/P1078983-300x187.jpg
diff --git a/files/wp-content/uploads/2011/01/P1078983.jpg b/content/wp-content/uploads/2011/01/P1078983.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/P1078983.jpg
rename to content/wp-content/uploads/2011/01/P1078983.jpg
diff --git a/files/wp-content/uploads/2011/01/p3031254-150x150.jpg b/content/wp-content/uploads/2011/01/p3031254-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/p3031254-150x150.jpg
rename to content/wp-content/uploads/2011/01/p3031254-150x150.jpg
diff --git a/files/wp-content/uploads/2011/01/p3031254-300x226.jpg b/content/wp-content/uploads/2011/01/p3031254-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/p3031254-300x226.jpg
rename to content/wp-content/uploads/2011/01/p3031254-300x226.jpg
diff --git a/files/wp-content/uploads/2011/01/p3031254-796x600.jpg b/content/wp-content/uploads/2011/01/p3031254-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/p3031254-796x600.jpg
rename to content/wp-content/uploads/2011/01/p3031254-796x600.jpg
diff --git a/files/wp-content/uploads/2011/01/p3031254.jpg b/content/wp-content/uploads/2011/01/p3031254.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/01/p3031254.jpg
rename to content/wp-content/uploads/2011/01/p3031254.jpg
diff --git a/files/wp-content/uploads/2011/02/2011-02-18-150x150.jpg b/content/wp-content/uploads/2011/02/2011-02-18-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/2011-02-18-150x150.jpg
rename to content/wp-content/uploads/2011/02/2011-02-18-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/2011-02-18-300x200.jpg b/content/wp-content/uploads/2011/02/2011-02-18-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/2011-02-18-300x200.jpg
rename to content/wp-content/uploads/2011/02/2011-02-18-300x200.jpg
diff --git a/files/wp-content/uploads/2011/02/2011-02-18-800x533.jpg b/content/wp-content/uploads/2011/02/2011-02-18-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/2011-02-18-800x533.jpg
rename to content/wp-content/uploads/2011/02/2011-02-18-800x533.jpg
diff --git a/files/wp-content/uploads/2011/02/2011-02-18.jpg b/content/wp-content/uploads/2011/02/2011-02-18.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/2011-02-18.jpg
rename to content/wp-content/uploads/2011/02/2011-02-18.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2878-150x150.jpg b/content/wp-content/uploads/2011/02/DSCN2878-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2878-150x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2878-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2878-300x300.jpg b/content/wp-content/uploads/2011/02/DSCN2878-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2878-300x300.jpg
rename to content/wp-content/uploads/2011/02/DSCN2878-300x300.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2878-600x600.jpg b/content/wp-content/uploads/2011/02/DSCN2878-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2878-600x600.jpg
rename to content/wp-content/uploads/2011/02/DSCN2878-600x600.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2878.jpg b/content/wp-content/uploads/2011/02/DSCN2878.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2878.jpg
rename to content/wp-content/uploads/2011/02/DSCN2878.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2881-150x150.jpg b/content/wp-content/uploads/2011/02/DSCN2881-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2881-150x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2881-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2881-300x225.jpg b/content/wp-content/uploads/2011/02/DSCN2881-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2881-300x225.jpg
rename to content/wp-content/uploads/2011/02/DSCN2881-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2881-800x600.jpg b/content/wp-content/uploads/2011/02/DSCN2881-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2881-800x600.jpg
rename to content/wp-content/uploads/2011/02/DSCN2881-800x600.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2881.jpg b/content/wp-content/uploads/2011/02/DSCN2881.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2881.jpg
rename to content/wp-content/uploads/2011/02/DSCN2881.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2882-150x150.jpg b/content/wp-content/uploads/2011/02/DSCN2882-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2882-150x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2882-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2882-300x225.jpg b/content/wp-content/uploads/2011/02/DSCN2882-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2882-300x225.jpg
rename to content/wp-content/uploads/2011/02/DSCN2882-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2882-800x600.jpg b/content/wp-content/uploads/2011/02/DSCN2882-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2882-800x600.jpg
rename to content/wp-content/uploads/2011/02/DSCN2882-800x600.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2882.jpg b/content/wp-content/uploads/2011/02/DSCN2882.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2882.jpg
rename to content/wp-content/uploads/2011/02/DSCN2882.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2887-150x150.jpg b/content/wp-content/uploads/2011/02/DSCN2887-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2887-150x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2887-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2887-300x225.jpg b/content/wp-content/uploads/2011/02/DSCN2887-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2887-300x225.jpg
rename to content/wp-content/uploads/2011/02/DSCN2887-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2887-800x600.jpg b/content/wp-content/uploads/2011/02/DSCN2887-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2887-800x600.jpg
rename to content/wp-content/uploads/2011/02/DSCN2887-800x600.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2887.jpg b/content/wp-content/uploads/2011/02/DSCN2887.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2887.jpg
rename to content/wp-content/uploads/2011/02/DSCN2887.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2899-150x150.jpg b/content/wp-content/uploads/2011/02/DSCN2899-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2899-150x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2899-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2899-300x200.jpg b/content/wp-content/uploads/2011/02/DSCN2899-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2899-300x200.jpg
rename to content/wp-content/uploads/2011/02/DSCN2899-300x200.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2899-800x534.jpg b/content/wp-content/uploads/2011/02/DSCN2899-800x534.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2899-800x534.jpg
rename to content/wp-content/uploads/2011/02/DSCN2899-800x534.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2899.jpg b/content/wp-content/uploads/2011/02/DSCN2899.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2899.jpg
rename to content/wp-content/uploads/2011/02/DSCN2899.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2901-150x150.jpg b/content/wp-content/uploads/2011/02/DSCN2901-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2901-150x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2901-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2901-300x225.jpg b/content/wp-content/uploads/2011/02/DSCN2901-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2901-300x225.jpg
rename to content/wp-content/uploads/2011/02/DSCN2901-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2901-800x600.jpg b/content/wp-content/uploads/2011/02/DSCN2901-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2901-800x600.jpg
rename to content/wp-content/uploads/2011/02/DSCN2901-800x600.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2901.jpg b/content/wp-content/uploads/2011/02/DSCN2901.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2901.jpg
rename to content/wp-content/uploads/2011/02/DSCN2901.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2902-150x150.jpg b/content/wp-content/uploads/2011/02/DSCN2902-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2902-150x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2902-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2902-300x150.jpg b/content/wp-content/uploads/2011/02/DSCN2902-300x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2902-300x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2902-300x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2902-800x400.jpg b/content/wp-content/uploads/2011/02/DSCN2902-800x400.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2902-800x400.jpg
rename to content/wp-content/uploads/2011/02/DSCN2902-800x400.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2902.jpg b/content/wp-content/uploads/2011/02/DSCN2902.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2902.jpg
rename to content/wp-content/uploads/2011/02/DSCN2902.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2903-150x150.jpg b/content/wp-content/uploads/2011/02/DSCN2903-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2903-150x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2903-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2903-300x300.jpg b/content/wp-content/uploads/2011/02/DSCN2903-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2903-300x300.jpg
rename to content/wp-content/uploads/2011/02/DSCN2903-300x300.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2903-600x600.jpg b/content/wp-content/uploads/2011/02/DSCN2903-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2903-600x600.jpg
rename to content/wp-content/uploads/2011/02/DSCN2903-600x600.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2903.jpg b/content/wp-content/uploads/2011/02/DSCN2903.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2903.jpg
rename to content/wp-content/uploads/2011/02/DSCN2903.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2907-150x150.jpg b/content/wp-content/uploads/2011/02/DSCN2907-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2907-150x150.jpg
rename to content/wp-content/uploads/2011/02/DSCN2907-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2907-300x225.jpg b/content/wp-content/uploads/2011/02/DSCN2907-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2907-300x225.jpg
rename to content/wp-content/uploads/2011/02/DSCN2907-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2907-800x600.jpg b/content/wp-content/uploads/2011/02/DSCN2907-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2907-800x600.jpg
rename to content/wp-content/uploads/2011/02/DSCN2907-800x600.jpg
diff --git a/files/wp-content/uploads/2011/02/DSCN2907.jpg b/content/wp-content/uploads/2011/02/DSCN2907.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/DSCN2907.jpg
rename to content/wp-content/uploads/2011/02/DSCN2907.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9602-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9602-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9602-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9602-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9602-300x300.jpg b/content/wp-content/uploads/2011/02/IMG_9602-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9602-300x300.jpg
rename to content/wp-content/uploads/2011/02/IMG_9602-300x300.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9602-598x600.jpg b/content/wp-content/uploads/2011/02/IMG_9602-598x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9602-598x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9602-598x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9602.jpg b/content/wp-content/uploads/2011/02/IMG_9602.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9602.jpg
rename to content/wp-content/uploads/2011/02/IMG_9602.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9607-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9607-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9607-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9607-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9607-300x168.jpg b/content/wp-content/uploads/2011/02/IMG_9607-300x168.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9607-300x168.jpg
rename to content/wp-content/uploads/2011/02/IMG_9607-300x168.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9607.jpg b/content/wp-content/uploads/2011/02/IMG_9607.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9607.jpg
rename to content/wp-content/uploads/2011/02/IMG_9607.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9616-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9616-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9616-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9616-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9616-199x300.jpg b/content/wp-content/uploads/2011/02/IMG_9616-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9616-199x300.jpg
rename to content/wp-content/uploads/2011/02/IMG_9616-199x300.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9616-399x600.jpg b/content/wp-content/uploads/2011/02/IMG_9616-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9616-399x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9616-399x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9616.jpg b/content/wp-content/uploads/2011/02/IMG_9616.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9616.jpg
rename to content/wp-content/uploads/2011/02/IMG_9616.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9707-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9707-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9707-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9707-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9707-300x239.jpg b/content/wp-content/uploads/2011/02/IMG_9707-300x239.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9707-300x239.jpg
rename to content/wp-content/uploads/2011/02/IMG_9707-300x239.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9707-751x600.jpg b/content/wp-content/uploads/2011/02/IMG_9707-751x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9707-751x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9707-751x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9707.jpg b/content/wp-content/uploads/2011/02/IMG_9707.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9707.jpg
rename to content/wp-content/uploads/2011/02/IMG_9707.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9713-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9713-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9713-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9713-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9713-300x187.jpg b/content/wp-content/uploads/2011/02/IMG_9713-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9713-300x187.jpg
rename to content/wp-content/uploads/2011/02/IMG_9713-300x187.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9713.jpg b/content/wp-content/uploads/2011/02/IMG_9713.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9713.jpg
rename to content/wp-content/uploads/2011/02/IMG_9713.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9728-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9728-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9728-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9728-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9728-300x238.jpg b/content/wp-content/uploads/2011/02/IMG_9728-300x238.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9728-300x238.jpg
rename to content/wp-content/uploads/2011/02/IMG_9728-300x238.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9728-753x600.jpg b/content/wp-content/uploads/2011/02/IMG_9728-753x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9728-753x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9728-753x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9728.jpg b/content/wp-content/uploads/2011/02/IMG_9728.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9728.jpg
rename to content/wp-content/uploads/2011/02/IMG_9728.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9819-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9819-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9819-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9819-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9819-300x300.jpg b/content/wp-content/uploads/2011/02/IMG_9819-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9819-300x300.jpg
rename to content/wp-content/uploads/2011/02/IMG_9819-300x300.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9819-600x600.jpg b/content/wp-content/uploads/2011/02/IMG_9819-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9819-600x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9819-600x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9819.jpg b/content/wp-content/uploads/2011/02/IMG_9819.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9819.jpg
rename to content/wp-content/uploads/2011/02/IMG_9819.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9820-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9820-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9820-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9820-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9820-300x300.jpg b/content/wp-content/uploads/2011/02/IMG_9820-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9820-300x300.jpg
rename to content/wp-content/uploads/2011/02/IMG_9820-300x300.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9820-600x600.jpg b/content/wp-content/uploads/2011/02/IMG_9820-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9820-600x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9820-600x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9820.jpg b/content/wp-content/uploads/2011/02/IMG_9820.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9820.jpg
rename to content/wp-content/uploads/2011/02/IMG_9820.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9821-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9821-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9821-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9821-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9821-300x300.jpg b/content/wp-content/uploads/2011/02/IMG_9821-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9821-300x300.jpg
rename to content/wp-content/uploads/2011/02/IMG_9821-300x300.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9821-600x600.jpg b/content/wp-content/uploads/2011/02/IMG_9821-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9821-600x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9821-600x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9821.jpg b/content/wp-content/uploads/2011/02/IMG_9821.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9821.jpg
rename to content/wp-content/uploads/2011/02/IMG_9821.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9829-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9829-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9829-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9829-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9829-300x300.jpg b/content/wp-content/uploads/2011/02/IMG_9829-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9829-300x300.jpg
rename to content/wp-content/uploads/2011/02/IMG_9829-300x300.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9829-600x600.jpg b/content/wp-content/uploads/2011/02/IMG_9829-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9829-600x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9829-600x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9829.jpg b/content/wp-content/uploads/2011/02/IMG_9829.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9829.jpg
rename to content/wp-content/uploads/2011/02/IMG_9829.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9834-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9834-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9834-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9834-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9834-300x200.jpg b/content/wp-content/uploads/2011/02/IMG_9834-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9834-300x200.jpg
rename to content/wp-content/uploads/2011/02/IMG_9834-300x200.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9834-800x533.jpg b/content/wp-content/uploads/2011/02/IMG_9834-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9834-800x533.jpg
rename to content/wp-content/uploads/2011/02/IMG_9834-800x533.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9834.jpg b/content/wp-content/uploads/2011/02/IMG_9834.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9834.jpg
rename to content/wp-content/uploads/2011/02/IMG_9834.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9951-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9951-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9951-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9951-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9951-300x200.jpg b/content/wp-content/uploads/2011/02/IMG_9951-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9951-300x200.jpg
rename to content/wp-content/uploads/2011/02/IMG_9951-300x200.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9951-800x533.jpg b/content/wp-content/uploads/2011/02/IMG_9951-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9951-800x533.jpg
rename to content/wp-content/uploads/2011/02/IMG_9951-800x533.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9951.jpg b/content/wp-content/uploads/2011/02/IMG_9951.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9951.jpg
rename to content/wp-content/uploads/2011/02/IMG_9951.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9959-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9959-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9959-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9959-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9959-200x300.jpg b/content/wp-content/uploads/2011/02/IMG_9959-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9959-200x300.jpg
rename to content/wp-content/uploads/2011/02/IMG_9959-200x300.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9959-400x600.jpg b/content/wp-content/uploads/2011/02/IMG_9959-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9959-400x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9959-400x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9959.jpg b/content/wp-content/uploads/2011/02/IMG_9959.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9959.jpg
rename to content/wp-content/uploads/2011/02/IMG_9959.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9967-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9967-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9967-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9967-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9967-200x300.jpg b/content/wp-content/uploads/2011/02/IMG_9967-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9967-200x300.jpg
rename to content/wp-content/uploads/2011/02/IMG_9967-200x300.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9967-400x600.jpg b/content/wp-content/uploads/2011/02/IMG_9967-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9967-400x600.jpg
rename to content/wp-content/uploads/2011/02/IMG_9967-400x600.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9967.jpg b/content/wp-content/uploads/2011/02/IMG_9967.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9967.jpg
rename to content/wp-content/uploads/2011/02/IMG_9967.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9968-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9968-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9968-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9968-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9968-300x200.jpg b/content/wp-content/uploads/2011/02/IMG_9968-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9968-300x200.jpg
rename to content/wp-content/uploads/2011/02/IMG_9968-300x200.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9968-800x533.jpg b/content/wp-content/uploads/2011/02/IMG_9968-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9968-800x533.jpg
rename to content/wp-content/uploads/2011/02/IMG_9968-800x533.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9968.jpg b/content/wp-content/uploads/2011/02/IMG_9968.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9968.jpg
rename to content/wp-content/uploads/2011/02/IMG_9968.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9984-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9984-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9984-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9984-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9984-300x200.jpg b/content/wp-content/uploads/2011/02/IMG_9984-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9984-300x200.jpg
rename to content/wp-content/uploads/2011/02/IMG_9984-300x200.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9984-800x533.jpg b/content/wp-content/uploads/2011/02/IMG_9984-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9984-800x533.jpg
rename to content/wp-content/uploads/2011/02/IMG_9984-800x533.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9984.jpg b/content/wp-content/uploads/2011/02/IMG_9984.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9984.jpg
rename to content/wp-content/uploads/2011/02/IMG_9984.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9988-150x150.jpg b/content/wp-content/uploads/2011/02/IMG_9988-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9988-150x150.jpg
rename to content/wp-content/uploads/2011/02/IMG_9988-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9988-300x200.jpg b/content/wp-content/uploads/2011/02/IMG_9988-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9988-300x200.jpg
rename to content/wp-content/uploads/2011/02/IMG_9988-300x200.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9988-800x533.jpg b/content/wp-content/uploads/2011/02/IMG_9988-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9988-800x533.jpg
rename to content/wp-content/uploads/2011/02/IMG_9988-800x533.jpg
diff --git a/files/wp-content/uploads/2011/02/IMG_9988.jpg b/content/wp-content/uploads/2011/02/IMG_9988.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/IMG_9988.jpg
rename to content/wp-content/uploads/2011/02/IMG_9988.jpg
diff --git a/files/wp-content/uploads/2011/02/P1299660-150x150.jpg b/content/wp-content/uploads/2011/02/P1299660-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P1299660-150x150.jpg
rename to content/wp-content/uploads/2011/02/P1299660-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/P1299660-300x225.jpg b/content/wp-content/uploads/2011/02/P1299660-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P1299660-300x225.jpg
rename to content/wp-content/uploads/2011/02/P1299660-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/P1299660.jpg b/content/wp-content/uploads/2011/02/P1299660.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P1299660.jpg
rename to content/wp-content/uploads/2011/02/P1299660.jpg
diff --git a/files/wp-content/uploads/2011/02/P2069906-150x150.jpg b/content/wp-content/uploads/2011/02/P2069906-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P2069906-150x150.jpg
rename to content/wp-content/uploads/2011/02/P2069906-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/P2069906-300x225.jpg b/content/wp-content/uploads/2011/02/P2069906-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P2069906-300x225.jpg
rename to content/wp-content/uploads/2011/02/P2069906-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/P2069906.jpg b/content/wp-content/uploads/2011/02/P2069906.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P2069906.jpg
rename to content/wp-content/uploads/2011/02/P2069906.jpg
diff --git a/files/wp-content/uploads/2011/02/P4050987-150x150.jpg b/content/wp-content/uploads/2011/02/P4050987-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P4050987-150x150.jpg
rename to content/wp-content/uploads/2011/02/P4050987-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/P4050987-300x225.jpg b/content/wp-content/uploads/2011/02/P4050987-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P4050987-300x225.jpg
rename to content/wp-content/uploads/2011/02/P4050987-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/P4050987.jpg b/content/wp-content/uploads/2011/02/P4050987.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P4050987.jpg
rename to content/wp-content/uploads/2011/02/P4050987.jpg
diff --git a/files/wp-content/uploads/2011/02/P6299972-150x150.jpg b/content/wp-content/uploads/2011/02/P6299972-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P6299972-150x150.jpg
rename to content/wp-content/uploads/2011/02/P6299972-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/P6299972-300x225.jpg b/content/wp-content/uploads/2011/02/P6299972-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P6299972-300x225.jpg
rename to content/wp-content/uploads/2011/02/P6299972-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/P6299972.jpg b/content/wp-content/uploads/2011/02/P6299972.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P6299972.jpg
rename to content/wp-content/uploads/2011/02/P6299972.jpg
diff --git a/files/wp-content/uploads/2011/02/P9115715-150x150.jpg b/content/wp-content/uploads/2011/02/P9115715-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P9115715-150x150.jpg
rename to content/wp-content/uploads/2011/02/P9115715-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/P9115715-300x225.jpg b/content/wp-content/uploads/2011/02/P9115715-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P9115715-300x225.jpg
rename to content/wp-content/uploads/2011/02/P9115715-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/P9115715.jpg b/content/wp-content/uploads/2011/02/P9115715.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/P9115715.jpg
rename to content/wp-content/uploads/2011/02/P9115715.jpg
diff --git a/files/wp-content/uploads/2011/02/p6073284-150x150.jpg b/content/wp-content/uploads/2011/02/p6073284-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/p6073284-150x150.jpg
rename to content/wp-content/uploads/2011/02/p6073284-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/p6073284-300x225.jpg b/content/wp-content/uploads/2011/02/p6073284-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/p6073284-300x225.jpg
rename to content/wp-content/uploads/2011/02/p6073284-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/p6073284.jpg b/content/wp-content/uploads/2011/02/p6073284.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/p6073284.jpg
rename to content/wp-content/uploads/2011/02/p6073284.jpg
diff --git a/files/wp-content/uploads/2011/02/p6083596-150x150.jpg b/content/wp-content/uploads/2011/02/p6083596-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/p6083596-150x150.jpg
rename to content/wp-content/uploads/2011/02/p6083596-150x150.jpg
diff --git a/files/wp-content/uploads/2011/02/p6083596-300x225.jpg b/content/wp-content/uploads/2011/02/p6083596-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/p6083596-300x225.jpg
rename to content/wp-content/uploads/2011/02/p6083596-300x225.jpg
diff --git a/files/wp-content/uploads/2011/02/p6083596.jpg b/content/wp-content/uploads/2011/02/p6083596.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/02/p6083596.jpg
rename to content/wp-content/uploads/2011/02/p6083596.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2815-150x150.jpg b/content/wp-content/uploads/2011/03/DSCN2815-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2815-150x150.jpg
rename to content/wp-content/uploads/2011/03/DSCN2815-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2815-225x300.jpg b/content/wp-content/uploads/2011/03/DSCN2815-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2815-225x300.jpg
rename to content/wp-content/uploads/2011/03/DSCN2815-225x300.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2815-450x600.jpg b/content/wp-content/uploads/2011/03/DSCN2815-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2815-450x600.jpg
rename to content/wp-content/uploads/2011/03/DSCN2815-450x600.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2815.jpg b/content/wp-content/uploads/2011/03/DSCN2815.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2815.jpg
rename to content/wp-content/uploads/2011/03/DSCN2815.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2872-150x150.jpg b/content/wp-content/uploads/2011/03/DSCN2872-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2872-150x150.jpg
rename to content/wp-content/uploads/2011/03/DSCN2872-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2872-300x300.jpg b/content/wp-content/uploads/2011/03/DSCN2872-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2872-300x300.jpg
rename to content/wp-content/uploads/2011/03/DSCN2872-300x300.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2872-600x600.jpg b/content/wp-content/uploads/2011/03/DSCN2872-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2872-600x600.jpg
rename to content/wp-content/uploads/2011/03/DSCN2872-600x600.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2872.jpg b/content/wp-content/uploads/2011/03/DSCN2872.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2872.jpg
rename to content/wp-content/uploads/2011/03/DSCN2872.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2885-150x150.jpg b/content/wp-content/uploads/2011/03/DSCN2885-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2885-150x150.jpg
rename to content/wp-content/uploads/2011/03/DSCN2885-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2885-300x225.jpg b/content/wp-content/uploads/2011/03/DSCN2885-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2885-300x225.jpg
rename to content/wp-content/uploads/2011/03/DSCN2885-300x225.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2885.jpg b/content/wp-content/uploads/2011/03/DSCN2885.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2885.jpg
rename to content/wp-content/uploads/2011/03/DSCN2885.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2904-150x150.jpg b/content/wp-content/uploads/2011/03/DSCN2904-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2904-150x150.jpg
rename to content/wp-content/uploads/2011/03/DSCN2904-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2904-300x225.jpg b/content/wp-content/uploads/2011/03/DSCN2904-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2904-300x225.jpg
rename to content/wp-content/uploads/2011/03/DSCN2904-300x225.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2904.jpg b/content/wp-content/uploads/2011/03/DSCN2904.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2904.jpg
rename to content/wp-content/uploads/2011/03/DSCN2904.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2915-150x150.jpg b/content/wp-content/uploads/2011/03/DSCN2915-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2915-150x150.jpg
rename to content/wp-content/uploads/2011/03/DSCN2915-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2915-300x300.jpg b/content/wp-content/uploads/2011/03/DSCN2915-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2915-300x300.jpg
rename to content/wp-content/uploads/2011/03/DSCN2915-300x300.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2915-600x600.jpg b/content/wp-content/uploads/2011/03/DSCN2915-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2915-600x600.jpg
rename to content/wp-content/uploads/2011/03/DSCN2915-600x600.jpg
diff --git a/files/wp-content/uploads/2011/03/DSCN2915.jpg b/content/wp-content/uploads/2011/03/DSCN2915.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/DSCN2915.jpg
rename to content/wp-content/uploads/2011/03/DSCN2915.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0032-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0032-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0032-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0032-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0032-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0032-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0032-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0032-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0032.jpg b/content/wp-content/uploads/2011/03/IMG_0032.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0032.jpg
rename to content/wp-content/uploads/2011/03/IMG_0032.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0037-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0037-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0037-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0037-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0037-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0037-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0037-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0037-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0037.jpg b/content/wp-content/uploads/2011/03/IMG_0037.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0037.jpg
rename to content/wp-content/uploads/2011/03/IMG_0037.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0044-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0044-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0044-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0044-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0044-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0044-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0044-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0044-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0044.jpg b/content/wp-content/uploads/2011/03/IMG_0044.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0044.jpg
rename to content/wp-content/uploads/2011/03/IMG_0044.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0062-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0062-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0062-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0062-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0062-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0062-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0062-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0062-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0062.jpg b/content/wp-content/uploads/2011/03/IMG_0062.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0062.jpg
rename to content/wp-content/uploads/2011/03/IMG_0062.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0112-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0112-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0112-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0112-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0112-200x300.jpg b/content/wp-content/uploads/2011/03/IMG_0112-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0112-200x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_0112-200x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0112-400x600.jpg b/content/wp-content/uploads/2011/03/IMG_0112-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0112-400x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_0112-400x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0112.jpg b/content/wp-content/uploads/2011/03/IMG_0112.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0112.jpg
rename to content/wp-content/uploads/2011/03/IMG_0112.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0113-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0113-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0113-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0113-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0113-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0113-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0113-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0113-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0113.jpg b/content/wp-content/uploads/2011/03/IMG_0113.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0113.jpg
rename to content/wp-content/uploads/2011/03/IMG_0113.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0116-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0116-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0116-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0116-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0116-200x300.jpg b/content/wp-content/uploads/2011/03/IMG_0116-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0116-200x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_0116-200x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0116-400x600.jpg b/content/wp-content/uploads/2011/03/IMG_0116-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0116-400x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_0116-400x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0116.jpg b/content/wp-content/uploads/2011/03/IMG_0116.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0116.jpg
rename to content/wp-content/uploads/2011/03/IMG_0116.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0118-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0118-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0118-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0118-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0118-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0118-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0118-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0118-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0118.jpg b/content/wp-content/uploads/2011/03/IMG_0118.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0118.jpg
rename to content/wp-content/uploads/2011/03/IMG_0118.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0120-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0120-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0120-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0120-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0120-300x300.jpg b/content/wp-content/uploads/2011/03/IMG_0120-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0120-300x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_0120-300x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0120-600x600.jpg b/content/wp-content/uploads/2011/03/IMG_0120-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0120-600x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_0120-600x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0120.jpg b/content/wp-content/uploads/2011/03/IMG_0120.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0120.jpg
rename to content/wp-content/uploads/2011/03/IMG_0120.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0158-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0158-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0158-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0158-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0158-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0158-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0158-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0158-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0158.jpg b/content/wp-content/uploads/2011/03/IMG_0158.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0158.jpg
rename to content/wp-content/uploads/2011/03/IMG_0158.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0184-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0184-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0184-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0184-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0184-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0184-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0184-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0184-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0184.jpg b/content/wp-content/uploads/2011/03/IMG_0184.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0184.jpg
rename to content/wp-content/uploads/2011/03/IMG_0184.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0226-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0226-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0226-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0226-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0226-200x300.jpg b/content/wp-content/uploads/2011/03/IMG_0226-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0226-200x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_0226-200x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0226-400x600.jpg b/content/wp-content/uploads/2011/03/IMG_0226-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0226-400x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_0226-400x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0226.jpg b/content/wp-content/uploads/2011/03/IMG_0226.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0226.jpg
rename to content/wp-content/uploads/2011/03/IMG_0226.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0270-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0270-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0270-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0270-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0270-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0270-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0270-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0270-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0270.jpg b/content/wp-content/uploads/2011/03/IMG_0270.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0270.jpg
rename to content/wp-content/uploads/2011/03/IMG_0270.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0357-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_0357-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0357-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_0357-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0357-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_0357-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0357-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_0357-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_0357.jpg b/content/wp-content/uploads/2011/03/IMG_0357.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_0357.jpg
rename to content/wp-content/uploads/2011/03/IMG_0357.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9444-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9444-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9444-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9444-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9444-300x199.jpg b/content/wp-content/uploads/2011/03/IMG_9444-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9444-300x199.jpg
rename to content/wp-content/uploads/2011/03/IMG_9444-300x199.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9444.jpg b/content/wp-content/uploads/2011/03/IMG_9444.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9444.jpg
rename to content/wp-content/uploads/2011/03/IMG_9444.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9459-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9459-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9459-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9459-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9459-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_9459-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9459-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_9459-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9459.jpg b/content/wp-content/uploads/2011/03/IMG_9459.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9459.jpg
rename to content/wp-content/uploads/2011/03/IMG_9459.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9462-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9462-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9462-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9462-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9462-200x300.jpg b/content/wp-content/uploads/2011/03/IMG_9462-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9462-200x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_9462-200x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9462-400x600.jpg b/content/wp-content/uploads/2011/03/IMG_9462-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9462-400x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_9462-400x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9462.jpg b/content/wp-content/uploads/2011/03/IMG_9462.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9462.jpg
rename to content/wp-content/uploads/2011/03/IMG_9462.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9578-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9578-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9578-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9578-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9578-200x300.jpg b/content/wp-content/uploads/2011/03/IMG_9578-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9578-200x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_9578-200x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9578-400x600.jpg b/content/wp-content/uploads/2011/03/IMG_9578-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9578-400x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_9578-400x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9578.jpg b/content/wp-content/uploads/2011/03/IMG_9578.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9578.jpg
rename to content/wp-content/uploads/2011/03/IMG_9578.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9608-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9608-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9608-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9608-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9608-300x298.jpg b/content/wp-content/uploads/2011/03/IMG_9608-300x298.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9608-300x298.jpg
rename to content/wp-content/uploads/2011/03/IMG_9608-300x298.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9608-602x600.jpg b/content/wp-content/uploads/2011/03/IMG_9608-602x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9608-602x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_9608-602x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9608.jpg b/content/wp-content/uploads/2011/03/IMG_9608.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9608.jpg
rename to content/wp-content/uploads/2011/03/IMG_9608.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9722-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9722-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9722-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9722-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9722-300x300.jpg b/content/wp-content/uploads/2011/03/IMG_9722-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9722-300x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_9722-300x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9722-600x600.jpg b/content/wp-content/uploads/2011/03/IMG_9722-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9722-600x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_9722-600x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9722.jpg b/content/wp-content/uploads/2011/03/IMG_9722.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9722.jpg
rename to content/wp-content/uploads/2011/03/IMG_9722.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9758-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9758-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9758-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9758-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9758-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_9758-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9758-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_9758-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9758.jpg b/content/wp-content/uploads/2011/03/IMG_9758.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9758.jpg
rename to content/wp-content/uploads/2011/03/IMG_9758.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9815-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9815-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9815-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9815-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9815-300x300.jpg b/content/wp-content/uploads/2011/03/IMG_9815-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9815-300x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_9815-300x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9815-598x600.jpg b/content/wp-content/uploads/2011/03/IMG_9815-598x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9815-598x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_9815-598x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9815.jpg b/content/wp-content/uploads/2011/03/IMG_9815.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9815.jpg
rename to content/wp-content/uploads/2011/03/IMG_9815.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9874-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9874-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9874-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9874-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9874-300x200.jpg b/content/wp-content/uploads/2011/03/IMG_9874-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9874-300x200.jpg
rename to content/wp-content/uploads/2011/03/IMG_9874-300x200.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9874.jpg b/content/wp-content/uploads/2011/03/IMG_9874.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9874.jpg
rename to content/wp-content/uploads/2011/03/IMG_9874.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9911-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9911-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9911-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9911-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9911-300x300.jpg b/content/wp-content/uploads/2011/03/IMG_9911-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9911-300x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_9911-300x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9911-600x600.jpg b/content/wp-content/uploads/2011/03/IMG_9911-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9911-600x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_9911-600x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9911.jpg b/content/wp-content/uploads/2011/03/IMG_9911.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9911.jpg
rename to content/wp-content/uploads/2011/03/IMG_9911.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9948-150x150.jpg b/content/wp-content/uploads/2011/03/IMG_9948-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9948-150x150.jpg
rename to content/wp-content/uploads/2011/03/IMG_9948-150x150.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9948-300x300.jpg b/content/wp-content/uploads/2011/03/IMG_9948-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9948-300x300.jpg
rename to content/wp-content/uploads/2011/03/IMG_9948-300x300.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9948-600x600.jpg b/content/wp-content/uploads/2011/03/IMG_9948-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9948-600x600.jpg
rename to content/wp-content/uploads/2011/03/IMG_9948-600x600.jpg
diff --git a/files/wp-content/uploads/2011/03/IMG_9948.jpg b/content/wp-content/uploads/2011/03/IMG_9948.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/03/IMG_9948.jpg
rename to content/wp-content/uploads/2011/03/IMG_9948.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0031-150x150.jpg b/content/wp-content/uploads/2011/04/IMG_0031-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0031-150x150.jpg
rename to content/wp-content/uploads/2011/04/IMG_0031-150x150.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0031-300x200.jpg b/content/wp-content/uploads/2011/04/IMG_0031-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0031-300x200.jpg
rename to content/wp-content/uploads/2011/04/IMG_0031-300x200.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0031.jpg b/content/wp-content/uploads/2011/04/IMG_0031.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0031.jpg
rename to content/wp-content/uploads/2011/04/IMG_0031.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0054-150x150.jpg b/content/wp-content/uploads/2011/04/IMG_0054-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0054-150x150.jpg
rename to content/wp-content/uploads/2011/04/IMG_0054-150x150.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0054-300x200.jpg b/content/wp-content/uploads/2011/04/IMG_0054-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0054-300x200.jpg
rename to content/wp-content/uploads/2011/04/IMG_0054-300x200.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0054.jpg b/content/wp-content/uploads/2011/04/IMG_0054.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0054.jpg
rename to content/wp-content/uploads/2011/04/IMG_0054.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0146-150x150.jpg b/content/wp-content/uploads/2011/04/IMG_0146-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0146-150x150.jpg
rename to content/wp-content/uploads/2011/04/IMG_0146-150x150.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0146-300x200.jpg b/content/wp-content/uploads/2011/04/IMG_0146-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0146-300x200.jpg
rename to content/wp-content/uploads/2011/04/IMG_0146-300x200.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0146.jpg b/content/wp-content/uploads/2011/04/IMG_0146.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0146.jpg
rename to content/wp-content/uploads/2011/04/IMG_0146.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0149-150x150.jpg b/content/wp-content/uploads/2011/04/IMG_0149-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0149-150x150.jpg
rename to content/wp-content/uploads/2011/04/IMG_0149-150x150.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0149-300x200.jpg b/content/wp-content/uploads/2011/04/IMG_0149-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0149-300x200.jpg
rename to content/wp-content/uploads/2011/04/IMG_0149-300x200.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0149.jpg b/content/wp-content/uploads/2011/04/IMG_0149.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0149.jpg
rename to content/wp-content/uploads/2011/04/IMG_0149.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0229-150x150.jpg b/content/wp-content/uploads/2011/04/IMG_0229-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0229-150x150.jpg
rename to content/wp-content/uploads/2011/04/IMG_0229-150x150.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0229-300x300.jpg b/content/wp-content/uploads/2011/04/IMG_0229-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0229-300x300.jpg
rename to content/wp-content/uploads/2011/04/IMG_0229-300x300.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0229-598x600.jpg b/content/wp-content/uploads/2011/04/IMG_0229-598x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0229-598x600.jpg
rename to content/wp-content/uploads/2011/04/IMG_0229-598x600.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0229.jpg b/content/wp-content/uploads/2011/04/IMG_0229.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0229.jpg
rename to content/wp-content/uploads/2011/04/IMG_0229.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0235-150x150.jpg b/content/wp-content/uploads/2011/04/IMG_0235-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0235-150x150.jpg
rename to content/wp-content/uploads/2011/04/IMG_0235-150x150.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0235-300x300.jpg b/content/wp-content/uploads/2011/04/IMG_0235-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0235-300x300.jpg
rename to content/wp-content/uploads/2011/04/IMG_0235-300x300.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0235-600x600.jpg b/content/wp-content/uploads/2011/04/IMG_0235-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0235-600x600.jpg
rename to content/wp-content/uploads/2011/04/IMG_0235-600x600.jpg
diff --git a/files/wp-content/uploads/2011/04/IMG_0235.jpg b/content/wp-content/uploads/2011/04/IMG_0235.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/04/IMG_0235.jpg
rename to content/wp-content/uploads/2011/04/IMG_0235.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-05-25-18.03.27-150x150.jpg b/content/wp-content/uploads/2011/07/2011-05-25-18.03.27-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-05-25-18.03.27-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011-05-25-18.03.27-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-05-25-18.03.27-300x219.jpg b/content/wp-content/uploads/2011/07/2011-05-25-18.03.27-300x219.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-05-25-18.03.27-300x219.jpg
rename to content/wp-content/uploads/2011/07/2011-05-25-18.03.27-300x219.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-05-25-18.03.27-800x585.jpg b/content/wp-content/uploads/2011/07/2011-05-25-18.03.27-800x585.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-05-25-18.03.27-800x585.jpg
rename to content/wp-content/uploads/2011/07/2011-05-25-18.03.27-800x585.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-05-25-18.03.27.jpg b/content/wp-content/uploads/2011/07/2011-05-25-18.03.27.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-05-25-18.03.27.jpg
rename to content/wp-content/uploads/2011/07/2011-05-25-18.03.27.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-05-25-18.03.271-150x150.jpg b/content/wp-content/uploads/2011/07/2011-05-25-18.03.271-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-05-25-18.03.271-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011-05-25-18.03.271-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-05-25-18.03.271-300x219.jpg b/content/wp-content/uploads/2011/07/2011-05-25-18.03.271-300x219.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-05-25-18.03.271-300x219.jpg
rename to content/wp-content/uploads/2011/07/2011-05-25-18.03.271-300x219.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-05-25-18.03.271-800x585.jpg b/content/wp-content/uploads/2011/07/2011-05-25-18.03.271-800x585.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-05-25-18.03.271-800x585.jpg
rename to content/wp-content/uploads/2011/07/2011-05-25-18.03.271-800x585.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-05-25-18.03.271.jpg b/content/wp-content/uploads/2011/07/2011-05-25-18.03.271.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-05-25-18.03.271.jpg
rename to content/wp-content/uploads/2011/07/2011-05-25-18.03.271.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-10-15.53.21-150x150.jpg b/content/wp-content/uploads/2011/07/2011-06-10-15.53.21-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-10-15.53.21-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011-06-10-15.53.21-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-10-15.53.21-223x300.jpg b/content/wp-content/uploads/2011/07/2011-06-10-15.53.21-223x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-10-15.53.21-223x300.jpg
rename to content/wp-content/uploads/2011/07/2011-06-10-15.53.21-223x300.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-10-15.53.21-447x600.jpg b/content/wp-content/uploads/2011/07/2011-06-10-15.53.21-447x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-10-15.53.21-447x600.jpg
rename to content/wp-content/uploads/2011/07/2011-06-10-15.53.21-447x600.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-10-15.53.21.jpg b/content/wp-content/uploads/2011/07/2011-06-10-15.53.21.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-10-15.53.21.jpg
rename to content/wp-content/uploads/2011/07/2011-06-10-15.53.21.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-10-15.53.211-150x150.jpg b/content/wp-content/uploads/2011/07/2011-06-10-15.53.211-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-10-15.53.211-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011-06-10-15.53.211-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-10-15.53.211-223x300.jpg b/content/wp-content/uploads/2011/07/2011-06-10-15.53.211-223x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-10-15.53.211-223x300.jpg
rename to content/wp-content/uploads/2011/07/2011-06-10-15.53.211-223x300.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-10-15.53.211-447x600.jpg b/content/wp-content/uploads/2011/07/2011-06-10-15.53.211-447x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-10-15.53.211-447x600.jpg
rename to content/wp-content/uploads/2011/07/2011-06-10-15.53.211-447x600.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-10-15.53.211.jpg b/content/wp-content/uploads/2011/07/2011-06-10-15.53.211.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-10-15.53.211.jpg
rename to content/wp-content/uploads/2011/07/2011-06-10-15.53.211.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-150x150.jpg b/content/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-300x225.jpg b/content/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-300x225.jpg
rename to content/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-300x225.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-800x600.jpg b/content/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-800x600.jpg
rename to content/wp-content/uploads/2011/07/2011-06-23-18-26-38-040-800x600.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-06-23-18-26-38-040.jpg b/content/wp-content/uploads/2011/07/2011-06-23-18-26-38-040.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-06-23-18-26-38-040.jpg
rename to content/wp-content/uploads/2011/07/2011-06-23-18-26-38-040.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-07-15-19.14.40-150x150.jpg b/content/wp-content/uploads/2011/07/2011-07-15-19.14.40-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-07-15-19.14.40-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011-07-15-19.14.40-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-07-15-19.14.40-223x300.jpg b/content/wp-content/uploads/2011/07/2011-07-15-19.14.40-223x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-07-15-19.14.40-223x300.jpg
rename to content/wp-content/uploads/2011/07/2011-07-15-19.14.40-223x300.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-07-15-19.14.40-446x600.jpg b/content/wp-content/uploads/2011/07/2011-07-15-19.14.40-446x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-07-15-19.14.40-446x600.jpg
rename to content/wp-content/uploads/2011/07/2011-07-15-19.14.40-446x600.jpg
diff --git a/files/wp-content/uploads/2011/07/2011-07-15-19.14.40.jpg b/content/wp-content/uploads/2011/07/2011-07-15-19.14.40.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011-07-15-19.14.40.jpg
rename to content/wp-content/uploads/2011/07/2011-07-15-19.14.40.jpg
diff --git a/files/wp-content/uploads/2011/07/2011070421354780-150x150.jpg b/content/wp-content/uploads/2011/07/2011070421354780-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011070421354780-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011070421354780-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011070421354780-300x300.jpg b/content/wp-content/uploads/2011/07/2011070421354780-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011070421354780-300x300.jpg
rename to content/wp-content/uploads/2011/07/2011070421354780-300x300.jpg
diff --git a/files/wp-content/uploads/2011/07/2011070421354780-599x600.jpg b/content/wp-content/uploads/2011/07/2011070421354780-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011070421354780-599x600.jpg
rename to content/wp-content/uploads/2011/07/2011070421354780-599x600.jpg
diff --git a/files/wp-content/uploads/2011/07/2011070421354780.jpg b/content/wp-content/uploads/2011/07/2011070421354780.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011070421354780.jpg
rename to content/wp-content/uploads/2011/07/2011070421354780.jpg
diff --git a/files/wp-content/uploads/2011/07/2011070421405715-150x150.jpg b/content/wp-content/uploads/2011/07/2011070421405715-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011070421405715-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011070421405715-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011070421405715-300x199.jpg b/content/wp-content/uploads/2011/07/2011070421405715-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011070421405715-300x199.jpg
rename to content/wp-content/uploads/2011/07/2011070421405715-300x199.jpg
diff --git a/files/wp-content/uploads/2011/07/2011070421405715-800x532.jpg b/content/wp-content/uploads/2011/07/2011070421405715-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011070421405715-800x532.jpg
rename to content/wp-content/uploads/2011/07/2011070421405715-800x532.jpg
diff --git a/files/wp-content/uploads/2011/07/2011070421405715.jpg b/content/wp-content/uploads/2011/07/2011070421405715.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011070421405715.jpg
rename to content/wp-content/uploads/2011/07/2011070421405715.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071017020229-150x150.jpg b/content/wp-content/uploads/2011/07/2011071017020229-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071017020229-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071017020229-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071017020229-300x300.jpg b/content/wp-content/uploads/2011/07/2011071017020229-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071017020229-300x300.jpg
rename to content/wp-content/uploads/2011/07/2011071017020229-300x300.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071017020229-601x600.jpg b/content/wp-content/uploads/2011/07/2011071017020229-601x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071017020229-601x600.jpg
rename to content/wp-content/uploads/2011/07/2011071017020229-601x600.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071017020229.jpg b/content/wp-content/uploads/2011/07/2011071017020229.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071017020229.jpg
rename to content/wp-content/uploads/2011/07/2011071017020229.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071407072816-150x150.jpg b/content/wp-content/uploads/2011/07/2011071407072816-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071407072816-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071407072816-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071407072816-300x199.jpg b/content/wp-content/uploads/2011/07/2011071407072816-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071407072816-300x199.jpg
rename to content/wp-content/uploads/2011/07/2011071407072816-300x199.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071407072816-800x532.jpg b/content/wp-content/uploads/2011/07/2011071407072816-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071407072816-800x532.jpg
rename to content/wp-content/uploads/2011/07/2011071407072816-800x532.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071407072816.jpg b/content/wp-content/uploads/2011/07/2011071407072816.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071407072816.jpg
rename to content/wp-content/uploads/2011/07/2011071407072816.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071608121334-150x150.jpg b/content/wp-content/uploads/2011/07/2011071608121334-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071608121334-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071608121334-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071608121334-300x199.jpg b/content/wp-content/uploads/2011/07/2011071608121334-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071608121334-300x199.jpg
rename to content/wp-content/uploads/2011/07/2011071608121334-300x199.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071608121334-800x532.jpg b/content/wp-content/uploads/2011/07/2011071608121334-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071608121334-800x532.jpg
rename to content/wp-content/uploads/2011/07/2011071608121334-800x532.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071608121334.jpg b/content/wp-content/uploads/2011/07/2011071608121334.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071608121334.jpg
rename to content/wp-content/uploads/2011/07/2011071608121334.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615333946-150x150.jpg b/content/wp-content/uploads/2011/07/2011071615333946-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615333946-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071615333946-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615333946-300x200.jpg b/content/wp-content/uploads/2011/07/2011071615333946-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615333946-300x200.jpg
rename to content/wp-content/uploads/2011/07/2011071615333946-300x200.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615333946-800x533.jpg b/content/wp-content/uploads/2011/07/2011071615333946-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615333946-800x533.jpg
rename to content/wp-content/uploads/2011/07/2011071615333946-800x533.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615333946.jpg b/content/wp-content/uploads/2011/07/2011071615333946.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615333946.jpg
rename to content/wp-content/uploads/2011/07/2011071615333946.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615345379-150x150.jpg b/content/wp-content/uploads/2011/07/2011071615345379-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615345379-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071615345379-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615345379-300x199.jpg b/content/wp-content/uploads/2011/07/2011071615345379-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615345379-300x199.jpg
rename to content/wp-content/uploads/2011/07/2011071615345379-300x199.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615345379-800x532.jpg b/content/wp-content/uploads/2011/07/2011071615345379-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615345379-800x532.jpg
rename to content/wp-content/uploads/2011/07/2011071615345379-800x532.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615345379.jpg b/content/wp-content/uploads/2011/07/2011071615345379.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615345379.jpg
rename to content/wp-content/uploads/2011/07/2011071615345379.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615352690-150x150.jpg b/content/wp-content/uploads/2011/07/2011071615352690-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615352690-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071615352690-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615352690-300x300.jpg b/content/wp-content/uploads/2011/07/2011071615352690-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615352690-300x300.jpg
rename to content/wp-content/uploads/2011/07/2011071615352690-300x300.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615352690-598x600.jpg b/content/wp-content/uploads/2011/07/2011071615352690-598x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615352690-598x600.jpg
rename to content/wp-content/uploads/2011/07/2011071615352690-598x600.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615352690.jpg b/content/wp-content/uploads/2011/07/2011071615352690.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615352690.jpg
rename to content/wp-content/uploads/2011/07/2011071615352690.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615401182-150x150.jpg b/content/wp-content/uploads/2011/07/2011071615401182-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615401182-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071615401182-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615401182-300x199.jpg b/content/wp-content/uploads/2011/07/2011071615401182-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615401182-300x199.jpg
rename to content/wp-content/uploads/2011/07/2011071615401182-300x199.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615401182-800x532.jpg b/content/wp-content/uploads/2011/07/2011071615401182-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615401182-800x532.jpg
rename to content/wp-content/uploads/2011/07/2011071615401182-800x532.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615401182.jpg b/content/wp-content/uploads/2011/07/2011071615401182.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615401182.jpg
rename to content/wp-content/uploads/2011/07/2011071615401182.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615410776-150x150.jpg b/content/wp-content/uploads/2011/07/2011071615410776-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615410776-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071615410776-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615410776-300x199.jpg b/content/wp-content/uploads/2011/07/2011071615410776-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615410776-300x199.jpg
rename to content/wp-content/uploads/2011/07/2011071615410776-300x199.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615410776-800x532.jpg b/content/wp-content/uploads/2011/07/2011071615410776-800x532.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615410776-800x532.jpg
rename to content/wp-content/uploads/2011/07/2011071615410776-800x532.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615410776.jpg b/content/wp-content/uploads/2011/07/2011071615410776.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615410776.jpg
rename to content/wp-content/uploads/2011/07/2011071615410776.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615464809-150x150.jpg b/content/wp-content/uploads/2011/07/2011071615464809-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615464809-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071615464809-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615464809-200x300.jpg b/content/wp-content/uploads/2011/07/2011071615464809-200x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615464809-200x300.jpg
rename to content/wp-content/uploads/2011/07/2011071615464809-200x300.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615464809-400x600.jpg b/content/wp-content/uploads/2011/07/2011071615464809-400x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615464809-400x600.jpg
rename to content/wp-content/uploads/2011/07/2011071615464809-400x600.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615464809.jpg b/content/wp-content/uploads/2011/07/2011071615464809.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615464809.jpg
rename to content/wp-content/uploads/2011/07/2011071615464809.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615484603-150x150.jpg b/content/wp-content/uploads/2011/07/2011071615484603-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615484603-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071615484603-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615484603-300x200.jpg b/content/wp-content/uploads/2011/07/2011071615484603-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615484603-300x200.jpg
rename to content/wp-content/uploads/2011/07/2011071615484603-300x200.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615484603-800x533.jpg b/content/wp-content/uploads/2011/07/2011071615484603-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615484603-800x533.jpg
rename to content/wp-content/uploads/2011/07/2011071615484603-800x533.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071615484603.jpg b/content/wp-content/uploads/2011/07/2011071615484603.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071615484603.jpg
rename to content/wp-content/uploads/2011/07/2011071615484603.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071616002332-150x150.jpg b/content/wp-content/uploads/2011/07/2011071616002332-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071616002332-150x150.jpg
rename to content/wp-content/uploads/2011/07/2011071616002332-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071616002332-300x200.jpg b/content/wp-content/uploads/2011/07/2011071616002332-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071616002332-300x200.jpg
rename to content/wp-content/uploads/2011/07/2011071616002332-300x200.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071616002332-800x533.jpg b/content/wp-content/uploads/2011/07/2011071616002332-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071616002332-800x533.jpg
rename to content/wp-content/uploads/2011/07/2011071616002332-800x533.jpg
diff --git a/files/wp-content/uploads/2011/07/2011071616002332.jpg b/content/wp-content/uploads/2011/07/2011071616002332.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/2011071616002332.jpg
rename to content/wp-content/uploads/2011/07/2011071616002332.jpg
diff --git a/files/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-150x150.jpg b/content/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-150x150.jpg
rename to content/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-150x150.jpg
diff --git a/files/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-223x300.jpg b/content/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-223x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-223x300.jpg
rename to content/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-223x300.jpg
diff --git a/files/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-447x600.jpg b/content/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-447x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-447x600.jpg
rename to content/wp-content/uploads/2011/07/IMG_20110607_093202_edit0-447x600.jpg
diff --git a/files/wp-content/uploads/2011/07/IMG_20110607_093202_edit0.jpg b/content/wp-content/uploads/2011/07/IMG_20110607_093202_edit0.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/07/IMG_20110607_093202_edit0.jpg
rename to content/wp-content/uploads/2011/07/IMG_20110607_093202_edit0.jpg
diff --git a/files/wp-content/uploads/2011/08/20110309025-150x150.jpg b/content/wp-content/uploads/2011/08/20110309025-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110309025-150x150.jpg
rename to content/wp-content/uploads/2011/08/20110309025-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/20110309025-300x225.jpg b/content/wp-content/uploads/2011/08/20110309025-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110309025-300x225.jpg
rename to content/wp-content/uploads/2011/08/20110309025-300x225.jpg
diff --git a/files/wp-content/uploads/2011/08/20110309025-800x600.jpg b/content/wp-content/uploads/2011/08/20110309025-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110309025-800x600.jpg
rename to content/wp-content/uploads/2011/08/20110309025-800x600.jpg
diff --git a/files/wp-content/uploads/2011/08/20110309025.jpg b/content/wp-content/uploads/2011/08/20110309025.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110309025.jpg
rename to content/wp-content/uploads/2011/08/20110309025.jpg
diff --git a/files/wp-content/uploads/2011/08/2011071720183303-150x150.jpg b/content/wp-content/uploads/2011/08/2011071720183303-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/2011071720183303-150x150.jpg
rename to content/wp-content/uploads/2011/08/2011071720183303-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/2011071720183303-300x200.jpg b/content/wp-content/uploads/2011/08/2011071720183303-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/2011071720183303-300x200.jpg
rename to content/wp-content/uploads/2011/08/2011071720183303-300x200.jpg
diff --git a/files/wp-content/uploads/2011/08/2011071720183303-800x533.jpg b/content/wp-content/uploads/2011/08/2011071720183303-800x533.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/2011071720183303-800x533.jpg
rename to content/wp-content/uploads/2011/08/2011071720183303-800x533.jpg
diff --git a/files/wp-content/uploads/2011/08/2011071720183303.jpg b/content/wp-content/uploads/2011/08/2011071720183303.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/2011071720183303.jpg
rename to content/wp-content/uploads/2011/08/2011071720183303.jpg
diff --git a/files/wp-content/uploads/2011/08/20110730075227-150x150.jpg b/content/wp-content/uploads/2011/08/20110730075227-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110730075227-150x150.jpg
rename to content/wp-content/uploads/2011/08/20110730075227-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/20110730075227-300x225.jpg b/content/wp-content/uploads/2011/08/20110730075227-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110730075227-300x225.jpg
rename to content/wp-content/uploads/2011/08/20110730075227-300x225.jpg
diff --git a/files/wp-content/uploads/2011/08/20110730075227-800x600.jpg b/content/wp-content/uploads/2011/08/20110730075227-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110730075227-800x600.jpg
rename to content/wp-content/uploads/2011/08/20110730075227-800x600.jpg
diff --git a/files/wp-content/uploads/2011/08/20110730075227.jpg b/content/wp-content/uploads/2011/08/20110730075227.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110730075227.jpg
rename to content/wp-content/uploads/2011/08/20110730075227.jpg
diff --git a/files/wp-content/uploads/2011/08/20110730075428-150x150.jpg b/content/wp-content/uploads/2011/08/20110730075428-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110730075428-150x150.jpg
rename to content/wp-content/uploads/2011/08/20110730075428-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/20110730075428-300x225.jpg b/content/wp-content/uploads/2011/08/20110730075428-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110730075428-300x225.jpg
rename to content/wp-content/uploads/2011/08/20110730075428-300x225.jpg
diff --git a/files/wp-content/uploads/2011/08/20110730075428-800x600.jpg b/content/wp-content/uploads/2011/08/20110730075428-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110730075428-800x600.jpg
rename to content/wp-content/uploads/2011/08/20110730075428-800x600.jpg
diff --git a/files/wp-content/uploads/2011/08/20110730075428.jpg b/content/wp-content/uploads/2011/08/20110730075428.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110730075428.jpg
rename to content/wp-content/uploads/2011/08/20110730075428.jpg
diff --git a/files/wp-content/uploads/2011/08/20110801072413-150x150.jpg b/content/wp-content/uploads/2011/08/20110801072413-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110801072413-150x150.jpg
rename to content/wp-content/uploads/2011/08/20110801072413-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/20110801072413-300x225.jpg b/content/wp-content/uploads/2011/08/20110801072413-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110801072413-300x225.jpg
rename to content/wp-content/uploads/2011/08/20110801072413-300x225.jpg
diff --git a/files/wp-content/uploads/2011/08/20110801072413-800x600.jpg b/content/wp-content/uploads/2011/08/20110801072413-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110801072413-800x600.jpg
rename to content/wp-content/uploads/2011/08/20110801072413-800x600.jpg
diff --git a/files/wp-content/uploads/2011/08/20110801072413.jpg b/content/wp-content/uploads/2011/08/20110801072413.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110801072413.jpg
rename to content/wp-content/uploads/2011/08/20110801072413.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805090203-150x150.jpg b/content/wp-content/uploads/2011/08/20110805090203-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805090203-150x150.jpg
rename to content/wp-content/uploads/2011/08/20110805090203-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805090203-300x225.jpg b/content/wp-content/uploads/2011/08/20110805090203-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805090203-300x225.jpg
rename to content/wp-content/uploads/2011/08/20110805090203-300x225.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805090203-800x600.jpg b/content/wp-content/uploads/2011/08/20110805090203-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805090203-800x600.jpg
rename to content/wp-content/uploads/2011/08/20110805090203-800x600.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805090203.jpg b/content/wp-content/uploads/2011/08/20110805090203.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805090203.jpg
rename to content/wp-content/uploads/2011/08/20110805090203.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805120933-150x150.jpg b/content/wp-content/uploads/2011/08/20110805120933-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805120933-150x150.jpg
rename to content/wp-content/uploads/2011/08/20110805120933-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805120933-300x225.jpg b/content/wp-content/uploads/2011/08/20110805120933-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805120933-300x225.jpg
rename to content/wp-content/uploads/2011/08/20110805120933-300x225.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805120933-800x600.jpg b/content/wp-content/uploads/2011/08/20110805120933-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805120933-800x600.jpg
rename to content/wp-content/uploads/2011/08/20110805120933-800x600.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805120933.jpg b/content/wp-content/uploads/2011/08/20110805120933.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805120933.jpg
rename to content/wp-content/uploads/2011/08/20110805120933.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805121317-150x150.jpg b/content/wp-content/uploads/2011/08/20110805121317-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805121317-150x150.jpg
rename to content/wp-content/uploads/2011/08/20110805121317-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805121317-300x225.jpg b/content/wp-content/uploads/2011/08/20110805121317-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805121317-300x225.jpg
rename to content/wp-content/uploads/2011/08/20110805121317-300x225.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805121317-800x600.jpg b/content/wp-content/uploads/2011/08/20110805121317-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805121317-800x600.jpg
rename to content/wp-content/uploads/2011/08/20110805121317-800x600.jpg
diff --git a/files/wp-content/uploads/2011/08/20110805121317.jpg b/content/wp-content/uploads/2011/08/20110805121317.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110805121317.jpg
rename to content/wp-content/uploads/2011/08/20110805121317.jpg
diff --git a/files/wp-content/uploads/2011/08/20110810074115-1-150x150.jpg b/content/wp-content/uploads/2011/08/20110810074115-1-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110810074115-1-150x150.jpg
rename to content/wp-content/uploads/2011/08/20110810074115-1-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/20110810074115-1-300x119.jpg b/content/wp-content/uploads/2011/08/20110810074115-1-300x119.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110810074115-1-300x119.jpg
rename to content/wp-content/uploads/2011/08/20110810074115-1-300x119.jpg
diff --git a/files/wp-content/uploads/2011/08/20110810074115-1-800x318.jpg b/content/wp-content/uploads/2011/08/20110810074115-1-800x318.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110810074115-1-800x318.jpg
rename to content/wp-content/uploads/2011/08/20110810074115-1-800x318.jpg
diff --git a/files/wp-content/uploads/2011/08/20110810074115-1.jpg b/content/wp-content/uploads/2011/08/20110810074115-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/20110810074115-1.jpg
rename to content/wp-content/uploads/2011/08/20110810074115-1.jpg
diff --git a/files/wp-content/uploads/2011/08/IMG_20110601_064031-150x150.jpg b/content/wp-content/uploads/2011/08/IMG_20110601_064031-150x150.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/IMG_20110601_064031-150x150.jpg
rename to content/wp-content/uploads/2011/08/IMG_20110601_064031-150x150.jpg
diff --git a/files/wp-content/uploads/2011/08/IMG_20110601_064031-224x300.jpg b/content/wp-content/uploads/2011/08/IMG_20110601_064031-224x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/IMG_20110601_064031-224x300.jpg
rename to content/wp-content/uploads/2011/08/IMG_20110601_064031-224x300.jpg
diff --git a/files/wp-content/uploads/2011/08/IMG_20110601_064031-448x600.jpg b/content/wp-content/uploads/2011/08/IMG_20110601_064031-448x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/IMG_20110601_064031-448x600.jpg
rename to content/wp-content/uploads/2011/08/IMG_20110601_064031-448x600.jpg
diff --git a/files/wp-content/uploads/2011/08/IMG_20110601_064031.jpg b/content/wp-content/uploads/2011/08/IMG_20110601_064031.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/08/IMG_20110601_064031.jpg
rename to content/wp-content/uploads/2011/08/IMG_20110601_064031.jpg
diff --git a/files/wp-content/uploads/2011/12/20110309025-300x205.jpg b/content/wp-content/uploads/2011/12/20110309025-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110309025-300x205.jpg
rename to content/wp-content/uploads/2011/12/20110309025-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20110309025-300x225.jpg b/content/wp-content/uploads/2011/12/20110309025-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110309025-300x225.jpg
rename to content/wp-content/uploads/2011/12/20110309025-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/20110309025-800x600.jpg b/content/wp-content/uploads/2011/12/20110309025-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110309025-800x600.jpg
rename to content/wp-content/uploads/2011/12/20110309025-800x600.jpg
diff --git a/files/wp-content/uploads/2011/12/20110309025.jpg b/content/wp-content/uploads/2011/12/20110309025.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110309025.jpg
rename to content/wp-content/uploads/2011/12/20110309025.jpg
diff --git a/files/wp-content/uploads/2011/12/201103090251-300x205.jpg b/content/wp-content/uploads/2011/12/201103090251-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/201103090251-300x205.jpg
rename to content/wp-content/uploads/2011/12/201103090251-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/201103090251-300x225.jpg b/content/wp-content/uploads/2011/12/201103090251-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/201103090251-300x225.jpg
rename to content/wp-content/uploads/2011/12/201103090251-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/201103090251-800x600.jpg b/content/wp-content/uploads/2011/12/201103090251-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/201103090251-800x600.jpg
rename to content/wp-content/uploads/2011/12/201103090251-800x600.jpg
diff --git a/files/wp-content/uploads/2011/12/201103090251.jpg b/content/wp-content/uploads/2011/12/201103090251.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/201103090251.jpg
rename to content/wp-content/uploads/2011/12/201103090251.jpg
diff --git a/files/wp-content/uploads/2011/12/2011071720183303-300x200.jpg b/content/wp-content/uploads/2011/12/2011071720183303-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/2011071720183303-300x200.jpg
rename to content/wp-content/uploads/2011/12/2011071720183303-300x200.jpg
diff --git a/files/wp-content/uploads/2011/12/2011071720183303-300x205.jpg b/content/wp-content/uploads/2011/12/2011071720183303-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/2011071720183303-300x205.jpg
rename to content/wp-content/uploads/2011/12/2011071720183303-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/2011071720183303-900x600.jpg b/content/wp-content/uploads/2011/12/2011071720183303-900x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/2011071720183303-900x600.jpg
rename to content/wp-content/uploads/2011/12/2011071720183303-900x600.jpg
diff --git a/files/wp-content/uploads/2011/12/2011071720183303.jpg b/content/wp-content/uploads/2011/12/2011071720183303.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/2011071720183303.jpg
rename to content/wp-content/uploads/2011/12/2011071720183303.jpg
diff --git a/files/wp-content/uploads/2011/12/20110717201833031-300x200.jpg b/content/wp-content/uploads/2011/12/20110717201833031-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110717201833031-300x200.jpg
rename to content/wp-content/uploads/2011/12/20110717201833031-300x200.jpg
diff --git a/files/wp-content/uploads/2011/12/20110717201833031-300x205.jpg b/content/wp-content/uploads/2011/12/20110717201833031-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110717201833031-300x205.jpg
rename to content/wp-content/uploads/2011/12/20110717201833031-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20110717201833031-900x600.jpg b/content/wp-content/uploads/2011/12/20110717201833031-900x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110717201833031-900x600.jpg
rename to content/wp-content/uploads/2011/12/20110717201833031-900x600.jpg
diff --git a/files/wp-content/uploads/2011/12/20110717201833031.jpg b/content/wp-content/uploads/2011/12/20110717201833031.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110717201833031.jpg
rename to content/wp-content/uploads/2011/12/20110717201833031.jpg
diff --git a/files/wp-content/uploads/2011/12/20110801072413-300x205.jpg b/content/wp-content/uploads/2011/12/20110801072413-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110801072413-300x205.jpg
rename to content/wp-content/uploads/2011/12/20110801072413-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20110801072413-300x225.jpg b/content/wp-content/uploads/2011/12/20110801072413-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110801072413-300x225.jpg
rename to content/wp-content/uploads/2011/12/20110801072413-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/20110801072413-800x600.jpg b/content/wp-content/uploads/2011/12/20110801072413-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110801072413-800x600.jpg
rename to content/wp-content/uploads/2011/12/20110801072413-800x600.jpg
diff --git a/files/wp-content/uploads/2011/12/20110801072413.jpg b/content/wp-content/uploads/2011/12/20110801072413.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110801072413.jpg
rename to content/wp-content/uploads/2011/12/20110801072413.jpg
diff --git a/files/wp-content/uploads/2011/12/201108010724131-300x205.jpg b/content/wp-content/uploads/2011/12/201108010724131-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/201108010724131-300x205.jpg
rename to content/wp-content/uploads/2011/12/201108010724131-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/201108010724131-300x225.jpg b/content/wp-content/uploads/2011/12/201108010724131-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/201108010724131-300x225.jpg
rename to content/wp-content/uploads/2011/12/201108010724131-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/201108010724131-800x600.jpg b/content/wp-content/uploads/2011/12/201108010724131-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/201108010724131-800x600.jpg
rename to content/wp-content/uploads/2011/12/201108010724131-800x600.jpg
diff --git a/files/wp-content/uploads/2011/12/201108010724131.jpg b/content/wp-content/uploads/2011/12/201108010724131.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/201108010724131.jpg
rename to content/wp-content/uploads/2011/12/201108010724131.jpg
diff --git a/files/wp-content/uploads/2011/12/20110810074115-1-300x119.jpg b/content/wp-content/uploads/2011/12/20110810074115-1-300x119.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110810074115-1-300x119.jpg
rename to content/wp-content/uploads/2011/12/20110810074115-1-300x119.jpg
diff --git a/files/wp-content/uploads/2011/12/20110810074115-1-300x205.jpg b/content/wp-content/uploads/2011/12/20110810074115-1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110810074115-1-300x205.jpg
rename to content/wp-content/uploads/2011/12/20110810074115-1-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20110810074115-1-980x389.jpg b/content/wp-content/uploads/2011/12/20110810074115-1-980x389.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110810074115-1-980x389.jpg
rename to content/wp-content/uploads/2011/12/20110810074115-1-980x389.jpg
diff --git a/files/wp-content/uploads/2011/12/20110810074115-1.jpg b/content/wp-content/uploads/2011/12/20110810074115-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110810074115-1.jpg
rename to content/wp-content/uploads/2011/12/20110810074115-1.jpg
diff --git a/files/wp-content/uploads/2011/12/20110810074115-11-300x119.jpg b/content/wp-content/uploads/2011/12/20110810074115-11-300x119.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110810074115-11-300x119.jpg
rename to content/wp-content/uploads/2011/12/20110810074115-11-300x119.jpg
diff --git a/files/wp-content/uploads/2011/12/20110810074115-11-300x205.jpg b/content/wp-content/uploads/2011/12/20110810074115-11-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110810074115-11-300x205.jpg
rename to content/wp-content/uploads/2011/12/20110810074115-11-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20110810074115-11-980x389.jpg b/content/wp-content/uploads/2011/12/20110810074115-11-980x389.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110810074115-11-980x389.jpg
rename to content/wp-content/uploads/2011/12/20110810074115-11-980x389.jpg
diff --git a/files/wp-content/uploads/2011/12/20110810074115-11.jpg b/content/wp-content/uploads/2011/12/20110810074115-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20110810074115-11.jpg
rename to content/wp-content/uploads/2011/12/20110810074115-11.jpg
diff --git a/files/wp-content/uploads/2011/12/20111206082816-300x187.jpg b/content/wp-content/uploads/2011/12/20111206082816-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111206082816-300x187.jpg
rename to content/wp-content/uploads/2011/12/20111206082816-300x187.jpg
diff --git a/files/wp-content/uploads/2011/12/20111206082816-300x205.jpg b/content/wp-content/uploads/2011/12/20111206082816-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111206082816-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111206082816-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111206082816.jpg b/content/wp-content/uploads/2011/12/20111206082816.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111206082816.jpg
rename to content/wp-content/uploads/2011/12/20111206082816.jpg
diff --git a/files/wp-content/uploads/2011/12/20111206175543-300x205.jpg b/content/wp-content/uploads/2011/12/20111206175543-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111206175543-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111206175543-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111206175543-300x225.jpg b/content/wp-content/uploads/2011/12/20111206175543-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111206175543-300x225.jpg
rename to content/wp-content/uploads/2011/12/20111206175543-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/20111206175543.jpg b/content/wp-content/uploads/2011/12/20111206175543.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111206175543.jpg
rename to content/wp-content/uploads/2011/12/20111206175543.jpg
diff --git a/files/wp-content/uploads/2011/12/20111207090205-300x205.jpg b/content/wp-content/uploads/2011/12/20111207090205-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111207090205-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111207090205-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111207090205-300x225.jpg b/content/wp-content/uploads/2011/12/20111207090205-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111207090205-300x225.jpg
rename to content/wp-content/uploads/2011/12/20111207090205-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/20111207090205.jpg b/content/wp-content/uploads/2011/12/20111207090205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111207090205.jpg
rename to content/wp-content/uploads/2011/12/20111207090205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111208181919-300x187.jpg b/content/wp-content/uploads/2011/12/20111208181919-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111208181919-300x187.jpg
rename to content/wp-content/uploads/2011/12/20111208181919-300x187.jpg
diff --git a/files/wp-content/uploads/2011/12/20111208181919-300x205.jpg b/content/wp-content/uploads/2011/12/20111208181919-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111208181919-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111208181919-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111208181919.jpg b/content/wp-content/uploads/2011/12/20111208181919.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111208181919.jpg
rename to content/wp-content/uploads/2011/12/20111208181919.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218164704-300x205.jpg b/content/wp-content/uploads/2011/12/20111218164704-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218164704-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111218164704-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218164704-300x225.jpg b/content/wp-content/uploads/2011/12/20111218164704-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218164704-300x225.jpg
rename to content/wp-content/uploads/2011/12/20111218164704-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218164704.jpg b/content/wp-content/uploads/2011/12/20111218164704.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218164704.jpg
rename to content/wp-content/uploads/2011/12/20111218164704.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218165712-225x300.jpg b/content/wp-content/uploads/2011/12/20111218165712-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218165712-225x300.jpg
rename to content/wp-content/uploads/2011/12/20111218165712-225x300.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218165712-300x205.jpg b/content/wp-content/uploads/2011/12/20111218165712-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218165712-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111218165712-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218165712-450x600.jpg b/content/wp-content/uploads/2011/12/20111218165712-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218165712-450x600.jpg
rename to content/wp-content/uploads/2011/12/20111218165712-450x600.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218165712.jpg b/content/wp-content/uploads/2011/12/20111218165712.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218165712.jpg
rename to content/wp-content/uploads/2011/12/20111218165712.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218165840-edit-300x205.jpg b/content/wp-content/uploads/2011/12/20111218165840-edit-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218165840-edit-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111218165840-edit-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218165840-edit-300x284.jpg b/content/wp-content/uploads/2011/12/20111218165840-edit-300x284.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218165840-edit-300x284.jpg
rename to content/wp-content/uploads/2011/12/20111218165840-edit-300x284.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218165840-edit-633x600.jpg b/content/wp-content/uploads/2011/12/20111218165840-edit-633x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218165840-edit-633x600.jpg
rename to content/wp-content/uploads/2011/12/20111218165840-edit-633x600.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218165840-edit.jpg b/content/wp-content/uploads/2011/12/20111218165840-edit.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218165840-edit.jpg
rename to content/wp-content/uploads/2011/12/20111218165840-edit.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218170951-300x205.jpg b/content/wp-content/uploads/2011/12/20111218170951-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218170951-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111218170951-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218170951-300x225.jpg b/content/wp-content/uploads/2011/12/20111218170951-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218170951-300x225.jpg
rename to content/wp-content/uploads/2011/12/20111218170951-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218170951.jpg b/content/wp-content/uploads/2011/12/20111218170951.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218170951.jpg
rename to content/wp-content/uploads/2011/12/20111218170951.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218172832-300x205.jpg b/content/wp-content/uploads/2011/12/20111218172832-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218172832-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111218172832-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218172832-300x225.jpg b/content/wp-content/uploads/2011/12/20111218172832-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218172832-300x225.jpg
rename to content/wp-content/uploads/2011/12/20111218172832-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218172832.jpg b/content/wp-content/uploads/2011/12/20111218172832.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218172832.jpg
rename to content/wp-content/uploads/2011/12/20111218172832.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218172850-225x300.jpg b/content/wp-content/uploads/2011/12/20111218172850-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218172850-225x300.jpg
rename to content/wp-content/uploads/2011/12/20111218172850-225x300.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218172850-300x205.jpg b/content/wp-content/uploads/2011/12/20111218172850-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218172850-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111218172850-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218172850-450x600.jpg b/content/wp-content/uploads/2011/12/20111218172850-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218172850-450x600.jpg
rename to content/wp-content/uploads/2011/12/20111218172850-450x600.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218172850.jpg b/content/wp-content/uploads/2011/12/20111218172850.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218172850.jpg
rename to content/wp-content/uploads/2011/12/20111218172850.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218174333-300x205.jpg b/content/wp-content/uploads/2011/12/20111218174333-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218174333-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111218174333-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218174333-300x225.jpg b/content/wp-content/uploads/2011/12/20111218174333-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218174333-300x225.jpg
rename to content/wp-content/uploads/2011/12/20111218174333-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218174333.jpg b/content/wp-content/uploads/2011/12/20111218174333.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218174333.jpg
rename to content/wp-content/uploads/2011/12/20111218174333.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218175211-300x205.jpg b/content/wp-content/uploads/2011/12/20111218175211-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218175211-300x205.jpg
rename to content/wp-content/uploads/2011/12/20111218175211-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218175211-300x225.jpg b/content/wp-content/uploads/2011/12/20111218175211-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218175211-300x225.jpg
rename to content/wp-content/uploads/2011/12/20111218175211-300x225.jpg
diff --git a/files/wp-content/uploads/2011/12/20111218175211.jpg b/content/wp-content/uploads/2011/12/20111218175211.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/20111218175211.jpg
rename to content/wp-content/uploads/2011/12/20111218175211.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_064031-224x300.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_064031-224x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_064031-224x300.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_064031-224x300.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_064031-300x205.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_064031-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_064031-300x205.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_064031-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_064031-448x600.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_064031-448x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_064031-448x600.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_064031-448x600.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_064031.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_064031.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_064031.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_064031.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_0640311-224x300.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_0640311-224x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_0640311-224x300.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_0640311-224x300.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_0640311-300x205.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_0640311-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_0640311-300x205.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_0640311-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_0640311-448x600.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_0640311-448x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_0640311-448x600.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_0640311-448x600.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_0640311.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_0640311.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_0640311.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_0640311.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_0640312-224x300.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_0640312-224x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_0640312-224x300.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_0640312-224x300.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_0640312-300x205.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_0640312-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_0640312-300x205.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_0640312-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_0640312-448x600.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_0640312-448x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_0640312-448x600.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_0640312-448x600.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20110601_0640312.jpg b/content/wp-content/uploads/2011/12/IMG_20110601_0640312.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20110601_0640312.jpg
rename to content/wp-content/uploads/2011/12/IMG_20110601_0640312.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-300x205.jpg b/content/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-300x205.jpg
rename to content/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-300x205.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-300x223.jpg b/content/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-300x223.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-300x223.jpg
rename to content/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-300x223.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-804x600.jpg b/content/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-804x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-804x600.jpg
rename to content/wp-content/uploads/2011/12/IMG_20111027_071019_edit0-804x600.jpg
diff --git a/files/wp-content/uploads/2011/12/IMG_20111027_071019_edit0.jpg b/content/wp-content/uploads/2011/12/IMG_20111027_071019_edit0.jpg
similarity index 100%
rename from files/wp-content/uploads/2011/12/IMG_20111027_071019_edit0.jpg
rename to content/wp-content/uploads/2011/12/IMG_20111027_071019_edit0.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227113333-300x169.jpg b/content/wp-content/uploads/2012/01/20111227113333-300x169.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227113333-300x169.jpg
rename to content/wp-content/uploads/2012/01/20111227113333-300x169.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227113333-300x205.jpg b/content/wp-content/uploads/2012/01/20111227113333-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227113333-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227113333-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227113333-980x552.jpg b/content/wp-content/uploads/2012/01/20111227113333-980x552.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227113333-980x552.jpg
rename to content/wp-content/uploads/2012/01/20111227113333-980x552.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227113333.jpg b/content/wp-content/uploads/2012/01/20111227113333.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227113333.jpg
rename to content/wp-content/uploads/2012/01/20111227113333.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227120921-300x200.jpg b/content/wp-content/uploads/2012/01/20111227120921-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227120921-300x200.jpg
rename to content/wp-content/uploads/2012/01/20111227120921-300x200.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227120921-300x205.jpg b/content/wp-content/uploads/2012/01/20111227120921-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227120921-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227120921-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227120921-898x600.jpg b/content/wp-content/uploads/2012/01/20111227120921-898x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227120921-898x600.jpg
rename to content/wp-content/uploads/2012/01/20111227120921-898x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227120921.jpg b/content/wp-content/uploads/2012/01/20111227120921.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227120921.jpg
rename to content/wp-content/uploads/2012/01/20111227120921.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227121753-300x200.jpg b/content/wp-content/uploads/2012/01/20111227121753-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227121753-300x200.jpg
rename to content/wp-content/uploads/2012/01/20111227121753-300x200.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227121753-300x205.jpg b/content/wp-content/uploads/2012/01/20111227121753-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227121753-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227121753-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227121753-898x600.jpg b/content/wp-content/uploads/2012/01/20111227121753-898x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227121753-898x600.jpg
rename to content/wp-content/uploads/2012/01/20111227121753-898x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227121753.jpg b/content/wp-content/uploads/2012/01/20111227121753.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227121753.jpg
rename to content/wp-content/uploads/2012/01/20111227121753.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227122608-300x205.jpg b/content/wp-content/uploads/2012/01/20111227122608-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227122608-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227122608-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227122608-300x225.jpg b/content/wp-content/uploads/2012/01/20111227122608-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227122608-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227122608-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227122608-798x600.jpg b/content/wp-content/uploads/2012/01/20111227122608-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227122608-798x600.jpg
rename to content/wp-content/uploads/2012/01/20111227122608-798x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227122608.jpg b/content/wp-content/uploads/2012/01/20111227122608.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227122608.jpg
rename to content/wp-content/uploads/2012/01/20111227122608.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227124352-300x205.jpg b/content/wp-content/uploads/2012/01/20111227124352-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227124352-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227124352-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227124352-300x225.jpg b/content/wp-content/uploads/2012/01/20111227124352-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227124352-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227124352-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227124352-800x600.jpg b/content/wp-content/uploads/2012/01/20111227124352-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227124352-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227124352-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227124352.jpg b/content/wp-content/uploads/2012/01/20111227124352.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227124352.jpg
rename to content/wp-content/uploads/2012/01/20111227124352.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227141455-225x300.jpg b/content/wp-content/uploads/2012/01/20111227141455-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227141455-225x300.jpg
rename to content/wp-content/uploads/2012/01/20111227141455-225x300.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227141455-300x205.jpg b/content/wp-content/uploads/2012/01/20111227141455-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227141455-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227141455-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227141455-451x600.jpg b/content/wp-content/uploads/2012/01/20111227141455-451x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227141455-451x600.jpg
rename to content/wp-content/uploads/2012/01/20111227141455-451x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227141455.jpg b/content/wp-content/uploads/2012/01/20111227141455.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227141455.jpg
rename to content/wp-content/uploads/2012/01/20111227141455.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227155817-300x205.jpg b/content/wp-content/uploads/2012/01/20111227155817-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227155817-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227155817-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227155817-300x225.jpg b/content/wp-content/uploads/2012/01/20111227155817-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227155817-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227155817-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227155817-800x600.jpg b/content/wp-content/uploads/2012/01/20111227155817-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227155817-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227155817-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227155817.jpg b/content/wp-content/uploads/2012/01/20111227155817.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227155817.jpg
rename to content/wp-content/uploads/2012/01/20111227155817.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227160631-300x205.jpg b/content/wp-content/uploads/2012/01/20111227160631-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227160631-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227160631-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227160631-300x225.jpg b/content/wp-content/uploads/2012/01/20111227160631-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227160631-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227160631-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227160631-800x600.jpg b/content/wp-content/uploads/2012/01/20111227160631-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227160631-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227160631-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227160631.jpg b/content/wp-content/uploads/2012/01/20111227160631.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227160631.jpg
rename to content/wp-content/uploads/2012/01/20111227160631.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161312-300x205.jpg b/content/wp-content/uploads/2012/01/20111227161312-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161312-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227161312-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161312-300x225.jpg b/content/wp-content/uploads/2012/01/20111227161312-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161312-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227161312-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161312-800x600.jpg b/content/wp-content/uploads/2012/01/20111227161312-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161312-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227161312-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161312.jpg b/content/wp-content/uploads/2012/01/20111227161312.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161312.jpg
rename to content/wp-content/uploads/2012/01/20111227161312.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161318-300x205.jpg b/content/wp-content/uploads/2012/01/20111227161318-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161318-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227161318-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161318-300x225.jpg b/content/wp-content/uploads/2012/01/20111227161318-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161318-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227161318-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161318-800x600.jpg b/content/wp-content/uploads/2012/01/20111227161318-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161318-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227161318-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161318.jpg b/content/wp-content/uploads/2012/01/20111227161318.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161318.jpg
rename to content/wp-content/uploads/2012/01/20111227161318.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161343-225x300.jpg b/content/wp-content/uploads/2012/01/20111227161343-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161343-225x300.jpg
rename to content/wp-content/uploads/2012/01/20111227161343-225x300.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161343-300x205.jpg b/content/wp-content/uploads/2012/01/20111227161343-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161343-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227161343-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161343-450x600.jpg b/content/wp-content/uploads/2012/01/20111227161343-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161343-450x600.jpg
rename to content/wp-content/uploads/2012/01/20111227161343-450x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227161343.jpg b/content/wp-content/uploads/2012/01/20111227161343.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227161343.jpg
rename to content/wp-content/uploads/2012/01/20111227161343.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162208-300x205.jpg b/content/wp-content/uploads/2012/01/20111227162208-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162208-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227162208-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162208-300x225.jpg b/content/wp-content/uploads/2012/01/20111227162208-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162208-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227162208-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162208-800x600.jpg b/content/wp-content/uploads/2012/01/20111227162208-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162208-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227162208-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162208.jpg b/content/wp-content/uploads/2012/01/20111227162208.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162208.jpg
rename to content/wp-content/uploads/2012/01/20111227162208.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162445-300x205.jpg b/content/wp-content/uploads/2012/01/20111227162445-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162445-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227162445-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162445-300x225.jpg b/content/wp-content/uploads/2012/01/20111227162445-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162445-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227162445-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162445-800x600.jpg b/content/wp-content/uploads/2012/01/20111227162445-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162445-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227162445-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162445.jpg b/content/wp-content/uploads/2012/01/20111227162445.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162445.jpg
rename to content/wp-content/uploads/2012/01/20111227162445.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162601-300x205.jpg b/content/wp-content/uploads/2012/01/20111227162601-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162601-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227162601-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162601-300x225.jpg b/content/wp-content/uploads/2012/01/20111227162601-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162601-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227162601-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162601-800x600.jpg b/content/wp-content/uploads/2012/01/20111227162601-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162601-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227162601-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227162601.jpg b/content/wp-content/uploads/2012/01/20111227162601.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227162601.jpg
rename to content/wp-content/uploads/2012/01/20111227162601.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227180900-300x205.jpg b/content/wp-content/uploads/2012/01/20111227180900-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227180900-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227180900-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227180900-300x225.jpg b/content/wp-content/uploads/2012/01/20111227180900-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227180900-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227180900-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227180900-800x600.jpg b/content/wp-content/uploads/2012/01/20111227180900-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227180900-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227180900-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227180900.jpg b/content/wp-content/uploads/2012/01/20111227180900.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227180900.jpg
rename to content/wp-content/uploads/2012/01/20111227180900.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227181844-300x205.jpg b/content/wp-content/uploads/2012/01/20111227181844-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227181844-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227181844-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227181844-300x225.jpg b/content/wp-content/uploads/2012/01/20111227181844-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227181844-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227181844-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227181844-800x600.jpg b/content/wp-content/uploads/2012/01/20111227181844-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227181844-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227181844-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227181844.jpg b/content/wp-content/uploads/2012/01/20111227181844.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227181844.jpg
rename to content/wp-content/uploads/2012/01/20111227181844.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227182608-300x205.jpg b/content/wp-content/uploads/2012/01/20111227182608-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227182608-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227182608-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227182608-300x225.jpg b/content/wp-content/uploads/2012/01/20111227182608-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227182608-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227182608-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227182608-800x600.jpg b/content/wp-content/uploads/2012/01/20111227182608-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227182608-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227182608-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227182608.jpg b/content/wp-content/uploads/2012/01/20111227182608.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227182608.jpg
rename to content/wp-content/uploads/2012/01/20111227182608.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227184028-225x300.jpg b/content/wp-content/uploads/2012/01/20111227184028-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227184028-225x300.jpg
rename to content/wp-content/uploads/2012/01/20111227184028-225x300.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227184028-300x205.jpg b/content/wp-content/uploads/2012/01/20111227184028-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227184028-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227184028-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227184028-450x600.jpg b/content/wp-content/uploads/2012/01/20111227184028-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227184028-450x600.jpg
rename to content/wp-content/uploads/2012/01/20111227184028-450x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227184028.jpg b/content/wp-content/uploads/2012/01/20111227184028.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227184028.jpg
rename to content/wp-content/uploads/2012/01/20111227184028.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227184914-300x205.jpg b/content/wp-content/uploads/2012/01/20111227184914-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227184914-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227184914-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227184914-300x225.jpg b/content/wp-content/uploads/2012/01/20111227184914-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227184914-300x225.jpg
rename to content/wp-content/uploads/2012/01/20111227184914-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227184914-800x600.jpg b/content/wp-content/uploads/2012/01/20111227184914-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227184914-800x600.jpg
rename to content/wp-content/uploads/2012/01/20111227184914-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227184914.jpg b/content/wp-content/uploads/2012/01/20111227184914.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227184914.jpg
rename to content/wp-content/uploads/2012/01/20111227184914.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227185027-225x300.jpg b/content/wp-content/uploads/2012/01/20111227185027-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227185027-225x300.jpg
rename to content/wp-content/uploads/2012/01/20111227185027-225x300.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227185027-300x205.jpg b/content/wp-content/uploads/2012/01/20111227185027-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227185027-300x205.jpg
rename to content/wp-content/uploads/2012/01/20111227185027-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227185027-450x600.jpg b/content/wp-content/uploads/2012/01/20111227185027-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227185027-450x600.jpg
rename to content/wp-content/uploads/2012/01/20111227185027-450x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20111227185027.jpg b/content/wp-content/uploads/2012/01/20111227185027.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20111227185027.jpg
rename to content/wp-content/uploads/2012/01/20111227185027.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116131152-300x205.jpg b/content/wp-content/uploads/2012/01/20120116131152-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116131152-300x205.jpg
rename to content/wp-content/uploads/2012/01/20120116131152-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116131152-300x225.jpg b/content/wp-content/uploads/2012/01/20120116131152-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116131152-300x225.jpg
rename to content/wp-content/uploads/2012/01/20120116131152-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116131152-800x600.jpg b/content/wp-content/uploads/2012/01/20120116131152-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116131152-800x600.jpg
rename to content/wp-content/uploads/2012/01/20120116131152-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116131152.jpg b/content/wp-content/uploads/2012/01/20120116131152.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116131152.jpg
rename to content/wp-content/uploads/2012/01/20120116131152.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133224-300x205.jpg b/content/wp-content/uploads/2012/01/20120116133224-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133224-300x205.jpg
rename to content/wp-content/uploads/2012/01/20120116133224-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133224-300x225.jpg b/content/wp-content/uploads/2012/01/20120116133224-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133224-300x225.jpg
rename to content/wp-content/uploads/2012/01/20120116133224-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133224-800x600.jpg b/content/wp-content/uploads/2012/01/20120116133224-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133224-800x600.jpg
rename to content/wp-content/uploads/2012/01/20120116133224-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133224.jpg b/content/wp-content/uploads/2012/01/20120116133224.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133224.jpg
rename to content/wp-content/uploads/2012/01/20120116133224.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133700-300x205.jpg b/content/wp-content/uploads/2012/01/20120116133700-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133700-300x205.jpg
rename to content/wp-content/uploads/2012/01/20120116133700-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133700-300x225.jpg b/content/wp-content/uploads/2012/01/20120116133700-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133700-300x225.jpg
rename to content/wp-content/uploads/2012/01/20120116133700-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133700-800x600.jpg b/content/wp-content/uploads/2012/01/20120116133700-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133700-800x600.jpg
rename to content/wp-content/uploads/2012/01/20120116133700-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133700.jpg b/content/wp-content/uploads/2012/01/20120116133700.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133700.jpg
rename to content/wp-content/uploads/2012/01/20120116133700.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133857-225x300.jpg b/content/wp-content/uploads/2012/01/20120116133857-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133857-225x300.jpg
rename to content/wp-content/uploads/2012/01/20120116133857-225x300.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133857-300x205.jpg b/content/wp-content/uploads/2012/01/20120116133857-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133857-300x205.jpg
rename to content/wp-content/uploads/2012/01/20120116133857-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133857-450x600.jpg b/content/wp-content/uploads/2012/01/20120116133857-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133857-450x600.jpg
rename to content/wp-content/uploads/2012/01/20120116133857-450x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20120116133857.jpg b/content/wp-content/uploads/2012/01/20120116133857.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120116133857.jpg
rename to content/wp-content/uploads/2012/01/20120116133857.jpg
diff --git a/files/wp-content/uploads/2012/01/20120117071130-300x188.jpg b/content/wp-content/uploads/2012/01/20120117071130-300x188.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120117071130-300x188.jpg
rename to content/wp-content/uploads/2012/01/20120117071130-300x188.jpg
diff --git a/files/wp-content/uploads/2012/01/20120117071130-300x205.jpg b/content/wp-content/uploads/2012/01/20120117071130-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120117071130-300x205.jpg
rename to content/wp-content/uploads/2012/01/20120117071130-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20120117071130-957x600.jpg b/content/wp-content/uploads/2012/01/20120117071130-957x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120117071130-957x600.jpg
rename to content/wp-content/uploads/2012/01/20120117071130-957x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20120117071130.jpg b/content/wp-content/uploads/2012/01/20120117071130.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120117071130.jpg
rename to content/wp-content/uploads/2012/01/20120117071130.jpg
diff --git a/files/wp-content/uploads/2012/01/20120118080619-300x205.jpg b/content/wp-content/uploads/2012/01/20120118080619-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120118080619-300x205.jpg
rename to content/wp-content/uploads/2012/01/20120118080619-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20120118080619-300x225.jpg b/content/wp-content/uploads/2012/01/20120118080619-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120118080619-300x225.jpg
rename to content/wp-content/uploads/2012/01/20120118080619-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20120118080619-800x600.jpg b/content/wp-content/uploads/2012/01/20120118080619-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120118080619-800x600.jpg
rename to content/wp-content/uploads/2012/01/20120118080619-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20120118080619.jpg b/content/wp-content/uploads/2012/01/20120118080619.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120118080619.jpg
rename to content/wp-content/uploads/2012/01/20120118080619.jpg
diff --git a/files/wp-content/uploads/2012/01/2012012209014205-300x200.jpg b/content/wp-content/uploads/2012/01/2012012209014205-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/2012012209014205-300x200.jpg
rename to content/wp-content/uploads/2012/01/2012012209014205-300x200.jpg
diff --git a/files/wp-content/uploads/2012/01/2012012209014205-300x205.jpg b/content/wp-content/uploads/2012/01/2012012209014205-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/2012012209014205-300x205.jpg
rename to content/wp-content/uploads/2012/01/2012012209014205-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/2012012209014205-899x600.jpg b/content/wp-content/uploads/2012/01/2012012209014205-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/2012012209014205-899x600.jpg
rename to content/wp-content/uploads/2012/01/2012012209014205-899x600.jpg
diff --git a/files/wp-content/uploads/2012/01/2012012209014205.jpg b/content/wp-content/uploads/2012/01/2012012209014205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/2012012209014205.jpg
rename to content/wp-content/uploads/2012/01/2012012209014205.jpg
diff --git a/files/wp-content/uploads/2012/01/20120124164655-300x205.jpg b/content/wp-content/uploads/2012/01/20120124164655-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120124164655-300x205.jpg
rename to content/wp-content/uploads/2012/01/20120124164655-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/20120124164655-300x225.jpg b/content/wp-content/uploads/2012/01/20120124164655-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120124164655-300x225.jpg
rename to content/wp-content/uploads/2012/01/20120124164655-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/20120124164655-800x600.jpg b/content/wp-content/uploads/2012/01/20120124164655-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120124164655-800x600.jpg
rename to content/wp-content/uploads/2012/01/20120124164655-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/20120124164655.jpg b/content/wp-content/uploads/2012/01/20120124164655.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/20120124164655.jpg
rename to content/wp-content/uploads/2012/01/20120124164655.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0008-300x205.jpg b/content/wp-content/uploads/2012/01/IMG_0008-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0008-300x205.jpg
rename to content/wp-content/uploads/2012/01/IMG_0008-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0008-300x300.jpg b/content/wp-content/uploads/2012/01/IMG_0008-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0008-300x300.jpg
rename to content/wp-content/uploads/2012/01/IMG_0008-300x300.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0008-600x600.jpg b/content/wp-content/uploads/2012/01/IMG_0008-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0008-600x600.jpg
rename to content/wp-content/uploads/2012/01/IMG_0008-600x600.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0008.jpg b/content/wp-content/uploads/2012/01/IMG_0008.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0008.jpg
rename to content/wp-content/uploads/2012/01/IMG_0008.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0018-300x205.jpg b/content/wp-content/uploads/2012/01/IMG_0018-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0018-300x205.jpg
rename to content/wp-content/uploads/2012/01/IMG_0018-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0018-300x300.jpg b/content/wp-content/uploads/2012/01/IMG_0018-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0018-300x300.jpg
rename to content/wp-content/uploads/2012/01/IMG_0018-300x300.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0018-600x600.jpg b/content/wp-content/uploads/2012/01/IMG_0018-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0018-600x600.jpg
rename to content/wp-content/uploads/2012/01/IMG_0018-600x600.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0018.jpg b/content/wp-content/uploads/2012/01/IMG_0018.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0018.jpg
rename to content/wp-content/uploads/2012/01/IMG_0018.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0027-300x205.jpg b/content/wp-content/uploads/2012/01/IMG_0027-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0027-300x205.jpg
rename to content/wp-content/uploads/2012/01/IMG_0027-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0027-300x300.jpg b/content/wp-content/uploads/2012/01/IMG_0027-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0027-300x300.jpg
rename to content/wp-content/uploads/2012/01/IMG_0027-300x300.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0027-600x600.jpg b/content/wp-content/uploads/2012/01/IMG_0027-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0027-600x600.jpg
rename to content/wp-content/uploads/2012/01/IMG_0027-600x600.jpg
diff --git a/files/wp-content/uploads/2012/01/IMG_0027.jpg b/content/wp-content/uploads/2012/01/IMG_0027.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/IMG_0027.jpg
rename to content/wp-content/uploads/2012/01/IMG_0027.jpg
diff --git a/files/wp-content/uploads/2012/01/ORIG0017-300x205.jpg b/content/wp-content/uploads/2012/01/ORIG0017-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/ORIG0017-300x205.jpg
rename to content/wp-content/uploads/2012/01/ORIG0017-300x205.jpg
diff --git a/files/wp-content/uploads/2012/01/ORIG0017-300x225.jpg b/content/wp-content/uploads/2012/01/ORIG0017-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/ORIG0017-300x225.jpg
rename to content/wp-content/uploads/2012/01/ORIG0017-300x225.jpg
diff --git a/files/wp-content/uploads/2012/01/ORIG0017-800x600.jpg b/content/wp-content/uploads/2012/01/ORIG0017-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/ORIG0017-800x600.jpg
rename to content/wp-content/uploads/2012/01/ORIG0017-800x600.jpg
diff --git a/files/wp-content/uploads/2012/01/ORIG0017.jpg b/content/wp-content/uploads/2012/01/ORIG0017.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/01/ORIG0017.jpg
rename to content/wp-content/uploads/2012/01/ORIG0017.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012508465478-300x205.jpg b/content/wp-content/uploads/2012/02/2012012508465478-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012508465478-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012508465478-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012508465478-300x300.jpg b/content/wp-content/uploads/2012/02/2012012508465478-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012508465478-300x300.jpg
rename to content/wp-content/uploads/2012/02/2012012508465478-300x300.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012508465478-599x600.jpg b/content/wp-content/uploads/2012/02/2012012508465478-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012508465478-599x600.jpg
rename to content/wp-content/uploads/2012/02/2012012508465478-599x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012508465478.jpg b/content/wp-content/uploads/2012/02/2012012508465478.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012508465478.jpg
rename to content/wp-content/uploads/2012/02/2012012508465478.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012508565003-300x205.jpg b/content/wp-content/uploads/2012/02/2012012508565003-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012508565003-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012508565003-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012508565003-300x300.jpg b/content/wp-content/uploads/2012/02/2012012508565003-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012508565003-300x300.jpg
rename to content/wp-content/uploads/2012/02/2012012508565003-300x300.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012508565003-599x600.jpg b/content/wp-content/uploads/2012/02/2012012508565003-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012508565003-599x600.jpg
rename to content/wp-content/uploads/2012/02/2012012508565003-599x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012508565003.jpg b/content/wp-content/uploads/2012/02/2012012508565003.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012508565003.jpg
rename to content/wp-content/uploads/2012/02/2012012508565003.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012814433603-300x200.jpg b/content/wp-content/uploads/2012/02/2012012814433603-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012814433603-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012012814433603-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012814433603-300x205.jpg b/content/wp-content/uploads/2012/02/2012012814433603-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012814433603-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012814433603-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012814433603-899x600.jpg b/content/wp-content/uploads/2012/02/2012012814433603-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012814433603-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012012814433603-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012814433603.jpg b/content/wp-content/uploads/2012/02/2012012814433603.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012814433603.jpg
rename to content/wp-content/uploads/2012/02/2012012814433603.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012815092803-300x200.jpg b/content/wp-content/uploads/2012/02/2012012815092803-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012815092803-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012012815092803-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012815092803-300x205.jpg b/content/wp-content/uploads/2012/02/2012012815092803-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012815092803-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012815092803-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012815092803-899x600.jpg b/content/wp-content/uploads/2012/02/2012012815092803-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012815092803-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012012815092803-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012815092803.jpg b/content/wp-content/uploads/2012/02/2012012815092803.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012815092803.jpg
rename to content/wp-content/uploads/2012/02/2012012815092803.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818213103-300x200.jpg b/content/wp-content/uploads/2012/02/2012012818213103-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818213103-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012012818213103-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818213103-300x205.jpg b/content/wp-content/uploads/2012/02/2012012818213103-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818213103-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012818213103-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818213103-899x600.jpg b/content/wp-content/uploads/2012/02/2012012818213103-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818213103-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012012818213103-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818213103.jpg b/content/wp-content/uploads/2012/02/2012012818213103.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818213103.jpg
rename to content/wp-content/uploads/2012/02/2012012818213103.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818342203-199x300.jpg b/content/wp-content/uploads/2012/02/2012012818342203-199x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818342203-199x300.jpg
rename to content/wp-content/uploads/2012/02/2012012818342203-199x300.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818342203-300x205.jpg b/content/wp-content/uploads/2012/02/2012012818342203-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818342203-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012818342203-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818342203-399x600.jpg b/content/wp-content/uploads/2012/02/2012012818342203-399x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818342203-399x600.jpg
rename to content/wp-content/uploads/2012/02/2012012818342203-399x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818342203.jpg b/content/wp-content/uploads/2012/02/2012012818342203.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818342203.jpg
rename to content/wp-content/uploads/2012/02/2012012818342203.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818353103-300x200.jpg b/content/wp-content/uploads/2012/02/2012012818353103-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818353103-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012012818353103-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818353103-300x205.jpg b/content/wp-content/uploads/2012/02/2012012818353103-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818353103-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012818353103-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818353103-899x600.jpg b/content/wp-content/uploads/2012/02/2012012818353103-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818353103-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012012818353103-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012818353103.jpg b/content/wp-content/uploads/2012/02/2012012818353103.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012818353103.jpg
rename to content/wp-content/uploads/2012/02/2012012818353103.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012819313636-300x200.jpg b/content/wp-content/uploads/2012/02/2012012819313636-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012819313636-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012012819313636-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012819313636-300x205.jpg b/content/wp-content/uploads/2012/02/2012012819313636-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012819313636-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012819313636-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012819313636-899x600.jpg b/content/wp-content/uploads/2012/02/2012012819313636-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012819313636-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012012819313636-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012819313636.jpg b/content/wp-content/uploads/2012/02/2012012819313636.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012819313636.jpg
rename to content/wp-content/uploads/2012/02/2012012819313636.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012819462005-300x200.jpg b/content/wp-content/uploads/2012/02/2012012819462005-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012819462005-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012012819462005-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012819462005-300x205.jpg b/content/wp-content/uploads/2012/02/2012012819462005-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012819462005-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012819462005-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012819462005-899x600.jpg b/content/wp-content/uploads/2012/02/2012012819462005-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012819462005-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012012819462005-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012819462005.jpg b/content/wp-content/uploads/2012/02/2012012819462005.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012819462005.jpg
rename to content/wp-content/uploads/2012/02/2012012819462005.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012820164404-300x200.jpg b/content/wp-content/uploads/2012/02/2012012820164404-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012820164404-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012012820164404-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012820164404-300x205.jpg b/content/wp-content/uploads/2012/02/2012012820164404-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012820164404-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012012820164404-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012820164404-899x600.jpg b/content/wp-content/uploads/2012/02/2012012820164404-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012820164404-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012012820164404-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012012820164404.jpg b/content/wp-content/uploads/2012/02/2012012820164404.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012012820164404.jpg
rename to content/wp-content/uploads/2012/02/2012012820164404.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020718491120-300x200.jpg b/content/wp-content/uploads/2012/02/2012020718491120-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020718491120-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012020718491120-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020718491120-300x205.jpg b/content/wp-content/uploads/2012/02/2012020718491120-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020718491120-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012020718491120-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020718491120-899x600.jpg b/content/wp-content/uploads/2012/02/2012020718491120-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020718491120-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012020718491120-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020718491120.jpg b/content/wp-content/uploads/2012/02/2012020718491120.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020718491120.jpg
rename to content/wp-content/uploads/2012/02/2012020718491120.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020819051116-300x200.jpg b/content/wp-content/uploads/2012/02/2012020819051116-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020819051116-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012020819051116-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020819051116-300x205.jpg b/content/wp-content/uploads/2012/02/2012020819051116-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020819051116-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012020819051116-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020819051116-899x600.jpg b/content/wp-content/uploads/2012/02/2012020819051116-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020819051116-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012020819051116-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020819051116.jpg b/content/wp-content/uploads/2012/02/2012020819051116.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020819051116.jpg
rename to content/wp-content/uploads/2012/02/2012020819051116.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020819053403-300x200.jpg b/content/wp-content/uploads/2012/02/2012020819053403-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020819053403-300x200.jpg
rename to content/wp-content/uploads/2012/02/2012020819053403-300x200.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020819053403-300x205.jpg b/content/wp-content/uploads/2012/02/2012020819053403-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020819053403-300x205.jpg
rename to content/wp-content/uploads/2012/02/2012020819053403-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020819053403-899x600.jpg b/content/wp-content/uploads/2012/02/2012020819053403-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020819053403-899x600.jpg
rename to content/wp-content/uploads/2012/02/2012020819053403-899x600.jpg
diff --git a/files/wp-content/uploads/2012/02/2012020819053403.jpg b/content/wp-content/uploads/2012/02/2012020819053403.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/2012020819053403.jpg
rename to content/wp-content/uploads/2012/02/2012020819053403.jpg
diff --git a/files/wp-content/uploads/2012/02/20120217141033-300x205.jpg b/content/wp-content/uploads/2012/02/20120217141033-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120217141033-300x205.jpg
rename to content/wp-content/uploads/2012/02/20120217141033-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/20120217141033-300x225.jpg b/content/wp-content/uploads/2012/02/20120217141033-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120217141033-300x225.jpg
rename to content/wp-content/uploads/2012/02/20120217141033-300x225.jpg
diff --git a/files/wp-content/uploads/2012/02/20120217141033-800x600.jpg b/content/wp-content/uploads/2012/02/20120217141033-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120217141033-800x600.jpg
rename to content/wp-content/uploads/2012/02/20120217141033-800x600.jpg
diff --git a/files/wp-content/uploads/2012/02/20120217141033.jpg b/content/wp-content/uploads/2012/02/20120217141033.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120217141033.jpg
rename to content/wp-content/uploads/2012/02/20120217141033.jpg
diff --git a/files/wp-content/uploads/2012/02/20120218162147-300x205.jpg b/content/wp-content/uploads/2012/02/20120218162147-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120218162147-300x205.jpg
rename to content/wp-content/uploads/2012/02/20120218162147-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/20120218162147-300x225.jpg b/content/wp-content/uploads/2012/02/20120218162147-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120218162147-300x225.jpg
rename to content/wp-content/uploads/2012/02/20120218162147-300x225.jpg
diff --git a/files/wp-content/uploads/2012/02/20120218162147-800x600.jpg b/content/wp-content/uploads/2012/02/20120218162147-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120218162147-800x600.jpg
rename to content/wp-content/uploads/2012/02/20120218162147-800x600.jpg
diff --git a/files/wp-content/uploads/2012/02/20120218162147.jpg b/content/wp-content/uploads/2012/02/20120218162147.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120218162147.jpg
rename to content/wp-content/uploads/2012/02/20120218162147.jpg
diff --git a/files/wp-content/uploads/2012/02/20120218185930-300x205.jpg b/content/wp-content/uploads/2012/02/20120218185930-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120218185930-300x205.jpg
rename to content/wp-content/uploads/2012/02/20120218185930-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/20120218185930-300x225.jpg b/content/wp-content/uploads/2012/02/20120218185930-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120218185930-300x225.jpg
rename to content/wp-content/uploads/2012/02/20120218185930-300x225.jpg
diff --git a/files/wp-content/uploads/2012/02/20120218185930-800x600.jpg b/content/wp-content/uploads/2012/02/20120218185930-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120218185930-800x600.jpg
rename to content/wp-content/uploads/2012/02/20120218185930-800x600.jpg
diff --git a/files/wp-content/uploads/2012/02/20120218185930.jpg b/content/wp-content/uploads/2012/02/20120218185930.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120218185930.jpg
rename to content/wp-content/uploads/2012/02/20120218185930.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225102859-300x205.jpg b/content/wp-content/uploads/2012/02/20120225102859-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225102859-300x205.jpg
rename to content/wp-content/uploads/2012/02/20120225102859-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225102859-300x225.jpg b/content/wp-content/uploads/2012/02/20120225102859-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225102859-300x225.jpg
rename to content/wp-content/uploads/2012/02/20120225102859-300x225.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225102859-800x600.jpg b/content/wp-content/uploads/2012/02/20120225102859-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225102859-800x600.jpg
rename to content/wp-content/uploads/2012/02/20120225102859-800x600.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225102859.jpg b/content/wp-content/uploads/2012/02/20120225102859.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225102859.jpg
rename to content/wp-content/uploads/2012/02/20120225102859.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103042-300x205.jpg b/content/wp-content/uploads/2012/02/20120225103042-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103042-300x205.jpg
rename to content/wp-content/uploads/2012/02/20120225103042-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103042-300x225.jpg b/content/wp-content/uploads/2012/02/20120225103042-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103042-300x225.jpg
rename to content/wp-content/uploads/2012/02/20120225103042-300x225.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103042-800x600.jpg b/content/wp-content/uploads/2012/02/20120225103042-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103042-800x600.jpg
rename to content/wp-content/uploads/2012/02/20120225103042-800x600.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103042.jpg b/content/wp-content/uploads/2012/02/20120225103042.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103042.jpg
rename to content/wp-content/uploads/2012/02/20120225103042.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103121-300x205.jpg b/content/wp-content/uploads/2012/02/20120225103121-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103121-300x205.jpg
rename to content/wp-content/uploads/2012/02/20120225103121-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103121-300x225.jpg b/content/wp-content/uploads/2012/02/20120225103121-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103121-300x225.jpg
rename to content/wp-content/uploads/2012/02/20120225103121-300x225.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103121-800x600.jpg b/content/wp-content/uploads/2012/02/20120225103121-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103121-800x600.jpg
rename to content/wp-content/uploads/2012/02/20120225103121-800x600.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103121.jpg b/content/wp-content/uploads/2012/02/20120225103121.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103121.jpg
rename to content/wp-content/uploads/2012/02/20120225103121.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103154-300x205.jpg b/content/wp-content/uploads/2012/02/20120225103154-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103154-300x205.jpg
rename to content/wp-content/uploads/2012/02/20120225103154-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103154-300x225.jpg b/content/wp-content/uploads/2012/02/20120225103154-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103154-300x225.jpg
rename to content/wp-content/uploads/2012/02/20120225103154-300x225.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103154-800x600.jpg b/content/wp-content/uploads/2012/02/20120225103154-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103154-800x600.jpg
rename to content/wp-content/uploads/2012/02/20120225103154-800x600.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103154.jpg b/content/wp-content/uploads/2012/02/20120225103154.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103154.jpg
rename to content/wp-content/uploads/2012/02/20120225103154.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103204-300x205.jpg b/content/wp-content/uploads/2012/02/20120225103204-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103204-300x205.jpg
rename to content/wp-content/uploads/2012/02/20120225103204-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103204-300x225.jpg b/content/wp-content/uploads/2012/02/20120225103204-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103204-300x225.jpg
rename to content/wp-content/uploads/2012/02/20120225103204-300x225.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103204-800x600.jpg b/content/wp-content/uploads/2012/02/20120225103204-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103204-800x600.jpg
rename to content/wp-content/uploads/2012/02/20120225103204-800x600.jpg
diff --git a/files/wp-content/uploads/2012/02/20120225103204.jpg b/content/wp-content/uploads/2012/02/20120225103204.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/20120225103204.jpg
rename to content/wp-content/uploads/2012/02/20120225103204.jpg
diff --git a/files/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-300x193.jpg b/content/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-300x193.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-300x193.jpg
rename to content/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-300x193.jpg
diff --git a/files/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-300x205.jpg b/content/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-300x205.jpg
rename to content/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-300x205.jpg
diff --git a/files/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-928x600.jpg b/content/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-928x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-928x600.jpg
rename to content/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych-928x600.jpg
diff --git a/files/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych.jpg b/content/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych.jpg
rename to content/wp-content/uploads/2012/02/Monster-Truck-Jump-Triptych.jpg
diff --git a/files/wp-content/uploads/2012/02/corpus-harbor-bridge-hdr.jpg b/content/wp-content/uploads/2012/02/corpus-harbor-bridge-hdr.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/02/corpus-harbor-bridge-hdr.jpg
rename to content/wp-content/uploads/2012/02/corpus-harbor-bridge-hdr.jpg
diff --git a/files/wp-content/uploads/2012/03/20120301070456-1-300x205.jpg b/content/wp-content/uploads/2012/03/20120301070456-1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120301070456-1-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120301070456-1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120301070456-1-300x300.jpg b/content/wp-content/uploads/2012/03/20120301070456-1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120301070456-1-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120301070456-1-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120301070456-1-600x600.jpg b/content/wp-content/uploads/2012/03/20120301070456-1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120301070456-1-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120301070456-1-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120301070456-1.jpg b/content/wp-content/uploads/2012/03/20120301070456-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120301070456-1.jpg
rename to content/wp-content/uploads/2012/03/20120301070456-1.jpg
diff --git a/files/wp-content/uploads/2012/03/20120301070456-300x205.jpg b/content/wp-content/uploads/2012/03/20120301070456-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120301070456-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120301070456-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120301070456-300x300.jpg b/content/wp-content/uploads/2012/03/20120301070456-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120301070456-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120301070456-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120301070456-599x600.jpg b/content/wp-content/uploads/2012/03/20120301070456-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120301070456-599x600.jpg
rename to content/wp-content/uploads/2012/03/20120301070456-599x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120301070456.jpg b/content/wp-content/uploads/2012/03/20120301070456.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120301070456.jpg
rename to content/wp-content/uploads/2012/03/20120301070456.jpg
diff --git a/files/wp-content/uploads/2012/03/201203010704561-300x205.jpg b/content/wp-content/uploads/2012/03/201203010704561-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203010704561-300x205.jpg
rename to content/wp-content/uploads/2012/03/201203010704561-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/201203010704561-300x300.jpg b/content/wp-content/uploads/2012/03/201203010704561-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203010704561-300x300.jpg
rename to content/wp-content/uploads/2012/03/201203010704561-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/201203010704561-600x600.jpg b/content/wp-content/uploads/2012/03/201203010704561-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203010704561-600x600.jpg
rename to content/wp-content/uploads/2012/03/201203010704561-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/201203010704561.jpg b/content/wp-content/uploads/2012/03/201203010704561.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203010704561.jpg
rename to content/wp-content/uploads/2012/03/201203010704561.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115148-1-300x205.jpg b/content/wp-content/uploads/2012/03/20120302115148-1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115148-1-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120302115148-1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115148-1-300x300.jpg b/content/wp-content/uploads/2012/03/20120302115148-1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115148-1-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120302115148-1-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115148-1-600x600.jpg b/content/wp-content/uploads/2012/03/20120302115148-1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115148-1-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120302115148-1-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115148-1.jpg b/content/wp-content/uploads/2012/03/20120302115148-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115148-1.jpg
rename to content/wp-content/uploads/2012/03/20120302115148-1.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115148-300x205.jpg b/content/wp-content/uploads/2012/03/20120302115148-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115148-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120302115148-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115148-300x300.jpg b/content/wp-content/uploads/2012/03/20120302115148-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115148-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120302115148-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115148-600x600.jpg b/content/wp-content/uploads/2012/03/20120302115148-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115148-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120302115148-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115148.jpg b/content/wp-content/uploads/2012/03/20120302115148.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115148.jpg
rename to content/wp-content/uploads/2012/03/20120302115148.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021151481-300x205.jpg b/content/wp-content/uploads/2012/03/201203021151481-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021151481-300x205.jpg
rename to content/wp-content/uploads/2012/03/201203021151481-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021151481-300x300.jpg b/content/wp-content/uploads/2012/03/201203021151481-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021151481-300x300.jpg
rename to content/wp-content/uploads/2012/03/201203021151481-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021151481-600x600.jpg b/content/wp-content/uploads/2012/03/201203021151481-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021151481-600x600.jpg
rename to content/wp-content/uploads/2012/03/201203021151481-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021151481.jpg b/content/wp-content/uploads/2012/03/201203021151481.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021151481.jpg
rename to content/wp-content/uploads/2012/03/201203021151481.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115301-1-300x205.jpg b/content/wp-content/uploads/2012/03/20120302115301-1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115301-1-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120302115301-1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115301-1-300x300.jpg b/content/wp-content/uploads/2012/03/20120302115301-1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115301-1-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120302115301-1-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115301-1-600x600.jpg b/content/wp-content/uploads/2012/03/20120302115301-1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115301-1-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120302115301-1-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115301-1.jpg b/content/wp-content/uploads/2012/03/20120302115301-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115301-1.jpg
rename to content/wp-content/uploads/2012/03/20120302115301-1.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115301-300x205.jpg b/content/wp-content/uploads/2012/03/20120302115301-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115301-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120302115301-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115301-300x300.jpg b/content/wp-content/uploads/2012/03/20120302115301-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115301-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120302115301-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115301-600x600.jpg b/content/wp-content/uploads/2012/03/20120302115301-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115301-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120302115301-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115301.jpg b/content/wp-content/uploads/2012/03/20120302115301.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115301.jpg
rename to content/wp-content/uploads/2012/03/20120302115301.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153011-300x205.jpg b/content/wp-content/uploads/2012/03/201203021153011-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153011-300x205.jpg
rename to content/wp-content/uploads/2012/03/201203021153011-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153011-300x300.jpg b/content/wp-content/uploads/2012/03/201203021153011-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153011-300x300.jpg
rename to content/wp-content/uploads/2012/03/201203021153011-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153011-600x600.jpg b/content/wp-content/uploads/2012/03/201203021153011-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153011-600x600.jpg
rename to content/wp-content/uploads/2012/03/201203021153011-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153011.jpg b/content/wp-content/uploads/2012/03/201203021153011.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153011.jpg
rename to content/wp-content/uploads/2012/03/201203021153011.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115323-1-300x205.jpg b/content/wp-content/uploads/2012/03/20120302115323-1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115323-1-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120302115323-1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115323-1-300x300.jpg b/content/wp-content/uploads/2012/03/20120302115323-1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115323-1-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120302115323-1-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115323-1-600x600.jpg b/content/wp-content/uploads/2012/03/20120302115323-1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115323-1-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120302115323-1-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115323-1.jpg b/content/wp-content/uploads/2012/03/20120302115323-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115323-1.jpg
rename to content/wp-content/uploads/2012/03/20120302115323-1.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115323-300x205.jpg b/content/wp-content/uploads/2012/03/20120302115323-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115323-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120302115323-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115323-300x300.jpg b/content/wp-content/uploads/2012/03/20120302115323-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115323-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120302115323-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115323-600x600.jpg b/content/wp-content/uploads/2012/03/20120302115323-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115323-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120302115323-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115323.jpg b/content/wp-content/uploads/2012/03/20120302115323.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115323.jpg
rename to content/wp-content/uploads/2012/03/20120302115323.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153231-300x205.jpg b/content/wp-content/uploads/2012/03/201203021153231-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153231-300x205.jpg
rename to content/wp-content/uploads/2012/03/201203021153231-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153231-300x300.jpg b/content/wp-content/uploads/2012/03/201203021153231-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153231-300x300.jpg
rename to content/wp-content/uploads/2012/03/201203021153231-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153231-600x600.jpg b/content/wp-content/uploads/2012/03/201203021153231-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153231-600x600.jpg
rename to content/wp-content/uploads/2012/03/201203021153231-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153231.jpg b/content/wp-content/uploads/2012/03/201203021153231.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153231.jpg
rename to content/wp-content/uploads/2012/03/201203021153231.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115335-1-300x205.jpg b/content/wp-content/uploads/2012/03/20120302115335-1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115335-1-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120302115335-1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115335-1-300x300.jpg b/content/wp-content/uploads/2012/03/20120302115335-1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115335-1-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120302115335-1-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115335-1-600x600.jpg b/content/wp-content/uploads/2012/03/20120302115335-1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115335-1-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120302115335-1-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115335-1.jpg b/content/wp-content/uploads/2012/03/20120302115335-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115335-1.jpg
rename to content/wp-content/uploads/2012/03/20120302115335-1.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115335-300x205.jpg b/content/wp-content/uploads/2012/03/20120302115335-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115335-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120302115335-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115335-300x300.jpg b/content/wp-content/uploads/2012/03/20120302115335-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115335-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120302115335-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115335-600x600.jpg b/content/wp-content/uploads/2012/03/20120302115335-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115335-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120302115335-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120302115335.jpg b/content/wp-content/uploads/2012/03/20120302115335.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120302115335.jpg
rename to content/wp-content/uploads/2012/03/20120302115335.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153351-300x205.jpg b/content/wp-content/uploads/2012/03/201203021153351-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153351-300x205.jpg
rename to content/wp-content/uploads/2012/03/201203021153351-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153351-300x300.jpg b/content/wp-content/uploads/2012/03/201203021153351-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153351-300x300.jpg
rename to content/wp-content/uploads/2012/03/201203021153351-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153351-600x600.jpg b/content/wp-content/uploads/2012/03/201203021153351-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153351-600x600.jpg
rename to content/wp-content/uploads/2012/03/201203021153351-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/201203021153351.jpg b/content/wp-content/uploads/2012/03/201203021153351.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203021153351.jpg
rename to content/wp-content/uploads/2012/03/201203021153351.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303083039-1-300x205.jpg b/content/wp-content/uploads/2012/03/20120303083039-1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303083039-1-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120303083039-1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303083039-1-300x300.jpg b/content/wp-content/uploads/2012/03/20120303083039-1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303083039-1-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120303083039-1-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303083039-1-600x600.jpg b/content/wp-content/uploads/2012/03/20120303083039-1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303083039-1-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120303083039-1-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303083039-1.jpg b/content/wp-content/uploads/2012/03/20120303083039-1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303083039-1.jpg
rename to content/wp-content/uploads/2012/03/20120303083039-1.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303083039-225x300.jpg b/content/wp-content/uploads/2012/03/20120303083039-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303083039-225x300.jpg
rename to content/wp-content/uploads/2012/03/20120303083039-225x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303083039-300x205.jpg b/content/wp-content/uploads/2012/03/20120303083039-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303083039-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120303083039-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303083039-450x600.jpg b/content/wp-content/uploads/2012/03/20120303083039-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303083039-450x600.jpg
rename to content/wp-content/uploads/2012/03/20120303083039-450x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303083039.jpg b/content/wp-content/uploads/2012/03/20120303083039.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303083039.jpg
rename to content/wp-content/uploads/2012/03/20120303083039.jpg
diff --git a/files/wp-content/uploads/2012/03/201203030830391-300x205.jpg b/content/wp-content/uploads/2012/03/201203030830391-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203030830391-300x205.jpg
rename to content/wp-content/uploads/2012/03/201203030830391-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/201203030830391-300x300.jpg b/content/wp-content/uploads/2012/03/201203030830391-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203030830391-300x300.jpg
rename to content/wp-content/uploads/2012/03/201203030830391-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/201203030830391-600x600.jpg b/content/wp-content/uploads/2012/03/201203030830391-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203030830391-600x600.jpg
rename to content/wp-content/uploads/2012/03/201203030830391-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/201203030830391.jpg b/content/wp-content/uploads/2012/03/201203030830391.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/201203030830391.jpg
rename to content/wp-content/uploads/2012/03/201203030830391.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303153740-300x205.jpg b/content/wp-content/uploads/2012/03/20120303153740-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303153740-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120303153740-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303153740-300x300.jpg b/content/wp-content/uploads/2012/03/20120303153740-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303153740-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120303153740-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303153740-600x600.jpg b/content/wp-content/uploads/2012/03/20120303153740-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303153740-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120303153740-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303153740.jpg b/content/wp-content/uploads/2012/03/20120303153740.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303153740.jpg
rename to content/wp-content/uploads/2012/03/20120303153740.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303154103-300x205.jpg b/content/wp-content/uploads/2012/03/20120303154103-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303154103-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120303154103-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303154103-300x300.jpg b/content/wp-content/uploads/2012/03/20120303154103-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303154103-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120303154103-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303154103-600x600.jpg b/content/wp-content/uploads/2012/03/20120303154103-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303154103-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120303154103-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303154103.jpg b/content/wp-content/uploads/2012/03/20120303154103.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303154103.jpg
rename to content/wp-content/uploads/2012/03/20120303154103.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303174146-300x205.jpg b/content/wp-content/uploads/2012/03/20120303174146-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303174146-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120303174146-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303174146-300x300.jpg b/content/wp-content/uploads/2012/03/20120303174146-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303174146-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120303174146-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303174146-600x600.jpg b/content/wp-content/uploads/2012/03/20120303174146-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303174146-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120303174146-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120303174146.jpg b/content/wp-content/uploads/2012/03/20120303174146.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120303174146.jpg
rename to content/wp-content/uploads/2012/03/20120303174146.jpg
diff --git a/files/wp-content/uploads/2012/03/20120305124407-300x205.jpg b/content/wp-content/uploads/2012/03/20120305124407-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120305124407-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120305124407-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120305124407-300x300.jpg b/content/wp-content/uploads/2012/03/20120305124407-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120305124407-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120305124407-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120305124407-600x600.jpg b/content/wp-content/uploads/2012/03/20120305124407-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120305124407-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120305124407-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120305124407.jpg b/content/wp-content/uploads/2012/03/20120305124407.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120305124407.jpg
rename to content/wp-content/uploads/2012/03/20120305124407.jpg
diff --git a/files/wp-content/uploads/2012/03/20120305184835-300x205.jpg b/content/wp-content/uploads/2012/03/20120305184835-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120305184835-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120305184835-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120305184835-300x300.jpg b/content/wp-content/uploads/2012/03/20120305184835-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120305184835-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120305184835-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120305184835-600x600.jpg b/content/wp-content/uploads/2012/03/20120305184835-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120305184835-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120305184835-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120305184835.jpg b/content/wp-content/uploads/2012/03/20120305184835.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120305184835.jpg
rename to content/wp-content/uploads/2012/03/20120305184835.jpg
diff --git a/files/wp-content/uploads/2012/03/20120314163823-300x205.jpg b/content/wp-content/uploads/2012/03/20120314163823-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120314163823-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120314163823-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120314163823-300x300.jpg b/content/wp-content/uploads/2012/03/20120314163823-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120314163823-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120314163823-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120314163823-600x600.jpg b/content/wp-content/uploads/2012/03/20120314163823-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120314163823-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120314163823-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120314163823.jpg b/content/wp-content/uploads/2012/03/20120314163823.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120314163823.jpg
rename to content/wp-content/uploads/2012/03/20120314163823.jpg
diff --git a/files/wp-content/uploads/2012/03/20120315163709-300x205.jpg b/content/wp-content/uploads/2012/03/20120315163709-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120315163709-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120315163709-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120315163709-300x300.jpg b/content/wp-content/uploads/2012/03/20120315163709-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120315163709-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120315163709-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120315163709-600x600.jpg b/content/wp-content/uploads/2012/03/20120315163709-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120315163709-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120315163709-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120315163709.jpg b/content/wp-content/uploads/2012/03/20120315163709.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120315163709.jpg
rename to content/wp-content/uploads/2012/03/20120315163709.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317141057-300x205.jpg b/content/wp-content/uploads/2012/03/20120317141057-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317141057-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120317141057-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317141057-300x300.jpg b/content/wp-content/uploads/2012/03/20120317141057-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317141057-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120317141057-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317141057-600x600.jpg b/content/wp-content/uploads/2012/03/20120317141057-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317141057-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120317141057-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317141057.jpg b/content/wp-content/uploads/2012/03/20120317141057.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317141057.jpg
rename to content/wp-content/uploads/2012/03/20120317141057.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317143236-300x205.jpg b/content/wp-content/uploads/2012/03/20120317143236-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317143236-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120317143236-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317143236-300x300.jpg b/content/wp-content/uploads/2012/03/20120317143236-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317143236-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120317143236-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317143236-600x600.jpg b/content/wp-content/uploads/2012/03/20120317143236-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317143236-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120317143236-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317143236.jpg b/content/wp-content/uploads/2012/03/20120317143236.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317143236.jpg
rename to content/wp-content/uploads/2012/03/20120317143236.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317160541-300x205.jpg b/content/wp-content/uploads/2012/03/20120317160541-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317160541-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120317160541-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317160541-300x300.jpg b/content/wp-content/uploads/2012/03/20120317160541-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317160541-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120317160541-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317160541-600x600.jpg b/content/wp-content/uploads/2012/03/20120317160541-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317160541-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120317160541-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317160541.jpg b/content/wp-content/uploads/2012/03/20120317160541.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317160541.jpg
rename to content/wp-content/uploads/2012/03/20120317160541.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317160930-300x205.jpg b/content/wp-content/uploads/2012/03/20120317160930-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317160930-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120317160930-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317160930-300x300.jpg b/content/wp-content/uploads/2012/03/20120317160930-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317160930-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120317160930-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317160930-600x600.jpg b/content/wp-content/uploads/2012/03/20120317160930-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317160930-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120317160930-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317160930.jpg b/content/wp-content/uploads/2012/03/20120317160930.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317160930.jpg
rename to content/wp-content/uploads/2012/03/20120317160930.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317162936-300x205.jpg b/content/wp-content/uploads/2012/03/20120317162936-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317162936-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120317162936-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317162936-300x300.jpg b/content/wp-content/uploads/2012/03/20120317162936-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317162936-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120317162936-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317162936-600x600.jpg b/content/wp-content/uploads/2012/03/20120317162936-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317162936-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120317162936-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317162936.jpg b/content/wp-content/uploads/2012/03/20120317162936.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317162936.jpg
rename to content/wp-content/uploads/2012/03/20120317162936.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317163128-300x205.jpg b/content/wp-content/uploads/2012/03/20120317163128-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317163128-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120317163128-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317163128-300x300.jpg b/content/wp-content/uploads/2012/03/20120317163128-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317163128-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120317163128-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317163128-600x600.jpg b/content/wp-content/uploads/2012/03/20120317163128-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317163128-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120317163128-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120317163128.jpg b/content/wp-content/uploads/2012/03/20120317163128.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120317163128.jpg
rename to content/wp-content/uploads/2012/03/20120317163128.jpg
diff --git a/files/wp-content/uploads/2012/03/20120319151157-300x205.jpg b/content/wp-content/uploads/2012/03/20120319151157-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120319151157-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120319151157-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120319151157-300x300.jpg b/content/wp-content/uploads/2012/03/20120319151157-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120319151157-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120319151157-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120319151157-600x600.jpg b/content/wp-content/uploads/2012/03/20120319151157-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120319151157-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120319151157-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120319151157.jpg b/content/wp-content/uploads/2012/03/20120319151157.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120319151157.jpg
rename to content/wp-content/uploads/2012/03/20120319151157.jpg
diff --git a/files/wp-content/uploads/2012/03/20120321161841-300x205.jpg b/content/wp-content/uploads/2012/03/20120321161841-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120321161841-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120321161841-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120321161841-300x300.jpg b/content/wp-content/uploads/2012/03/20120321161841-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120321161841-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120321161841-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120321161841-600x600.jpg b/content/wp-content/uploads/2012/03/20120321161841-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120321161841-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120321161841-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120321161841.jpg b/content/wp-content/uploads/2012/03/20120321161841.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120321161841.jpg
rename to content/wp-content/uploads/2012/03/20120321161841.jpg
diff --git a/files/wp-content/uploads/2012/03/20120323142607-300x205.jpg b/content/wp-content/uploads/2012/03/20120323142607-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120323142607-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120323142607-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120323142607-300x300.jpg b/content/wp-content/uploads/2012/03/20120323142607-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120323142607-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120323142607-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120323142607-600x600.jpg b/content/wp-content/uploads/2012/03/20120323142607-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120323142607-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120323142607-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120323142607.jpg b/content/wp-content/uploads/2012/03/20120323142607.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120323142607.jpg
rename to content/wp-content/uploads/2012/03/20120323142607.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327062914-300x205.jpg b/content/wp-content/uploads/2012/03/20120327062914-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327062914-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120327062914-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327062914-300x300.jpg b/content/wp-content/uploads/2012/03/20120327062914-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327062914-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120327062914-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327062914-600x600.jpg b/content/wp-content/uploads/2012/03/20120327062914-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327062914-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120327062914-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327062914.jpg b/content/wp-content/uploads/2012/03/20120327062914.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327062914.jpg
rename to content/wp-content/uploads/2012/03/20120327062914.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327065253-300x205.jpg b/content/wp-content/uploads/2012/03/20120327065253-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327065253-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120327065253-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327065253-300x225.jpg b/content/wp-content/uploads/2012/03/20120327065253-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327065253-300x225.jpg
rename to content/wp-content/uploads/2012/03/20120327065253-300x225.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327065253-800x600.jpg b/content/wp-content/uploads/2012/03/20120327065253-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327065253-800x600.jpg
rename to content/wp-content/uploads/2012/03/20120327065253-800x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327065253.jpg b/content/wp-content/uploads/2012/03/20120327065253.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327065253.jpg
rename to content/wp-content/uploads/2012/03/20120327065253.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327070425-300x205.jpg b/content/wp-content/uploads/2012/03/20120327070425-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327070425-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120327070425-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327070425-300x225.jpg b/content/wp-content/uploads/2012/03/20120327070425-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327070425-300x225.jpg
rename to content/wp-content/uploads/2012/03/20120327070425-300x225.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327070425-800x600.jpg b/content/wp-content/uploads/2012/03/20120327070425-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327070425-800x600.jpg
rename to content/wp-content/uploads/2012/03/20120327070425-800x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120327070425.jpg b/content/wp-content/uploads/2012/03/20120327070425.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120327070425.jpg
rename to content/wp-content/uploads/2012/03/20120327070425.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328063741-300x205.jpg b/content/wp-content/uploads/2012/03/20120328063741-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328063741-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120328063741-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328063741-300x300.jpg b/content/wp-content/uploads/2012/03/20120328063741-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328063741-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120328063741-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328063741-600x600.jpg b/content/wp-content/uploads/2012/03/20120328063741-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328063741-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120328063741-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328063741.jpg b/content/wp-content/uploads/2012/03/20120328063741.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328063741.jpg
rename to content/wp-content/uploads/2012/03/20120328063741.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328065949-300x205.jpg b/content/wp-content/uploads/2012/03/20120328065949-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328065949-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120328065949-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328065949-300x300.jpg b/content/wp-content/uploads/2012/03/20120328065949-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328065949-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120328065949-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328065949-600x600.jpg b/content/wp-content/uploads/2012/03/20120328065949-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328065949-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120328065949-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328065949.jpg b/content/wp-content/uploads/2012/03/20120328065949.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328065949.jpg
rename to content/wp-content/uploads/2012/03/20120328065949.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328070353-300x205.jpg b/content/wp-content/uploads/2012/03/20120328070353-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328070353-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120328070353-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328070353-300x300.jpg b/content/wp-content/uploads/2012/03/20120328070353-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328070353-300x300.jpg
rename to content/wp-content/uploads/2012/03/20120328070353-300x300.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328070353-600x600.jpg b/content/wp-content/uploads/2012/03/20120328070353-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328070353-600x600.jpg
rename to content/wp-content/uploads/2012/03/20120328070353-600x600.jpg
diff --git a/files/wp-content/uploads/2012/03/20120328070353.jpg b/content/wp-content/uploads/2012/03/20120328070353.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120328070353.jpg
rename to content/wp-content/uploads/2012/03/20120328070353.jpg
diff --git a/files/wp-content/uploads/2012/03/20120329063320-300x169.jpg b/content/wp-content/uploads/2012/03/20120329063320-300x169.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120329063320-300x169.jpg
rename to content/wp-content/uploads/2012/03/20120329063320-300x169.jpg
diff --git a/files/wp-content/uploads/2012/03/20120329063320-300x205.jpg b/content/wp-content/uploads/2012/03/20120329063320-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120329063320-300x205.jpg
rename to content/wp-content/uploads/2012/03/20120329063320-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/20120329063320-980x552.jpg b/content/wp-content/uploads/2012/03/20120329063320-980x552.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120329063320-980x552.jpg
rename to content/wp-content/uploads/2012/03/20120329063320-980x552.jpg
diff --git a/files/wp-content/uploads/2012/03/20120329063320.jpg b/content/wp-content/uploads/2012/03/20120329063320.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/20120329063320.jpg
rename to content/wp-content/uploads/2012/03/20120329063320.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_184837-225x300.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_184837-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_184837-225x300.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_184837-225x300.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_184837-300x205.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_184837-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_184837-300x205.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_184837-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_184837-450x600.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_184837-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_184837-450x600.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_184837-450x600.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_184837.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_184837.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_184837.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_184837.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_184935-225x300.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_184935-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_184935-225x300.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_184935-225x300.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_184935-300x205.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_184935-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_184935-300x205.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_184935-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_184935-450x600.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_184935-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_184935-450x600.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_184935-450x600.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_184935.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_184935.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_184935.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_184935.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_190619-225x300.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_190619-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_190619-225x300.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_190619-225x300.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_190619-300x205.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_190619-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_190619-300x205.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_190619-300x205.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_190619-450x600.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_190619-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_190619-450x600.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_190619-450x600.jpg
diff --git a/files/wp-content/uploads/2012/03/IMG_20120315_190619.jpg b/content/wp-content/uploads/2012/03/IMG_20120315_190619.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/03/IMG_20120315_190619.jpg
rename to content/wp-content/uploads/2012/03/IMG_20120315_190619.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06-17.03.41-225x300.jpg b/content/wp-content/uploads/2012/04/2012-04-06-17.03.41-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06-17.03.41-225x300.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06-17.03.41-225x300.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06-17.03.41-300x205.jpg b/content/wp-content/uploads/2012/04/2012-04-06-17.03.41-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06-17.03.41-300x205.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06-17.03.41-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06-17.03.41-450x600.jpg b/content/wp-content/uploads/2012/04/2012-04-06-17.03.41-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06-17.03.41-450x600.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06-17.03.41-450x600.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06-17.03.41.jpg b/content/wp-content/uploads/2012/04/2012-04-06-17.03.41.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06-17.03.41.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06-17.03.41.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06-17.03.411-225x300.jpg b/content/wp-content/uploads/2012/04/2012-04-06-17.03.411-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06-17.03.411-225x300.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06-17.03.411-225x300.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06-17.03.411-300x205.jpg b/content/wp-content/uploads/2012/04/2012-04-06-17.03.411-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06-17.03.411-300x205.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06-17.03.411-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06-17.03.411-450x600.jpg b/content/wp-content/uploads/2012/04/2012-04-06-17.03.411-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06-17.03.411-450x600.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06-17.03.411-450x600.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06-17.03.411.jpg b/content/wp-content/uploads/2012/04/2012-04-06-17.03.411.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06-17.03.411.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06-17.03.411.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.41-225x300.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.41-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.41-225x300.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.41-225x300.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.41-300x205.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.41-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.41-300x205.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.41-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.41-450x600.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.41-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.41-450x600.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.41-450x600.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.41.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.41.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.41.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.41.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.411-225x300.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.411-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.411-225x300.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.411-225x300.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.411-300x205.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.411-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.411-300x205.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.411-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.411-450x600.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.411-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.411-450x600.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.411-450x600.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.411.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.411.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.411.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.411.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.412-225x300.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.412-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.412-225x300.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.412-225x300.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.412-300x205.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.412-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.412-300x205.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.412-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.412-450x600.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.412-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.412-450x600.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.412-450x600.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-06_17.03.412.jpg b/content/wp-content/uploads/2012/04/2012-04-06_17.03.412.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-06_17.03.412.jpg
rename to content/wp-content/uploads/2012/04/2012-04-06_17.03.412.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-09_17.05.18-300x205.jpg b/content/wp-content/uploads/2012/04/2012-04-09_17.05.18-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-09_17.05.18-300x205.jpg
rename to content/wp-content/uploads/2012/04/2012-04-09_17.05.18-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-09_17.05.18-300x300.jpg b/content/wp-content/uploads/2012/04/2012-04-09_17.05.18-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-09_17.05.18-300x300.jpg
rename to content/wp-content/uploads/2012/04/2012-04-09_17.05.18-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-09_17.05.18-600x600.jpg b/content/wp-content/uploads/2012/04/2012-04-09_17.05.18-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-09_17.05.18-600x600.jpg
rename to content/wp-content/uploads/2012/04/2012-04-09_17.05.18-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/2012-04-09_17.05.18.jpg b/content/wp-content/uploads/2012/04/2012-04-09_17.05.18.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/2012-04-09_17.05.18.jpg
rename to content/wp-content/uploads/2012/04/2012-04-09_17.05.18.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406170547-300x190.jpg b/content/wp-content/uploads/2012/04/20120406170547-300x190.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406170547-300x190.jpg
rename to content/wp-content/uploads/2012/04/20120406170547-300x190.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406170547-300x205.jpg b/content/wp-content/uploads/2012/04/20120406170547-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406170547-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120406170547-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406170547-943x600.jpg b/content/wp-content/uploads/2012/04/20120406170547-943x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406170547-943x600.jpg
rename to content/wp-content/uploads/2012/04/20120406170547-943x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406170547.jpg b/content/wp-content/uploads/2012/04/20120406170547.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406170547.jpg
rename to content/wp-content/uploads/2012/04/20120406170547.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406171059-300x205.jpg b/content/wp-content/uploads/2012/04/20120406171059-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406171059-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120406171059-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406171059-300x300.jpg b/content/wp-content/uploads/2012/04/20120406171059-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406171059-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120406171059-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406171059-600x600.jpg b/content/wp-content/uploads/2012/04/20120406171059-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406171059-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120406171059-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406171059.jpg b/content/wp-content/uploads/2012/04/20120406171059.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406171059.jpg
rename to content/wp-content/uploads/2012/04/20120406171059.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406172037-300x205.jpg b/content/wp-content/uploads/2012/04/20120406172037-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406172037-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120406172037-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406172037-300x300.jpg b/content/wp-content/uploads/2012/04/20120406172037-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406172037-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120406172037-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406172037-600x600.jpg b/content/wp-content/uploads/2012/04/20120406172037-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406172037-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120406172037-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406172037.jpg b/content/wp-content/uploads/2012/04/20120406172037.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406172037.jpg
rename to content/wp-content/uploads/2012/04/20120406172037.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406172240-300x205.jpg b/content/wp-content/uploads/2012/04/20120406172240-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406172240-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120406172240-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406172240-300x300.jpg b/content/wp-content/uploads/2012/04/20120406172240-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406172240-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120406172240-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406172240-600x600.jpg b/content/wp-content/uploads/2012/04/20120406172240-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406172240-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120406172240-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120406172240.jpg b/content/wp-content/uploads/2012/04/20120406172240.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120406172240.jpg
rename to content/wp-content/uploads/2012/04/20120406172240.jpg
diff --git a/files/wp-content/uploads/2012/04/20120408111616-300x205.jpg b/content/wp-content/uploads/2012/04/20120408111616-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120408111616-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120408111616-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120408111616-300x300.jpg b/content/wp-content/uploads/2012/04/20120408111616-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120408111616-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120408111616-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120408111616-600x600.jpg b/content/wp-content/uploads/2012/04/20120408111616-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120408111616-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120408111616-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120408111616.jpg b/content/wp-content/uploads/2012/04/20120408111616.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120408111616.jpg
rename to content/wp-content/uploads/2012/04/20120408111616.jpg
diff --git a/files/wp-content/uploads/2012/04/20120410062200-300x205.jpg b/content/wp-content/uploads/2012/04/20120410062200-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120410062200-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120410062200-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120410062200-300x300.jpg b/content/wp-content/uploads/2012/04/20120410062200-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120410062200-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120410062200-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120410062200-600x600.jpg b/content/wp-content/uploads/2012/04/20120410062200-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120410062200-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120410062200-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120410062200.jpg b/content/wp-content/uploads/2012/04/20120410062200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120410062200.jpg
rename to content/wp-content/uploads/2012/04/20120410062200.jpg
diff --git a/files/wp-content/uploads/2012/04/20120410063759-300x205.jpg b/content/wp-content/uploads/2012/04/20120410063759-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120410063759-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120410063759-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120410063759-300x300.jpg b/content/wp-content/uploads/2012/04/20120410063759-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120410063759-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120410063759-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120410063759-600x600.jpg b/content/wp-content/uploads/2012/04/20120410063759-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120410063759-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120410063759-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120410063759.jpg b/content/wp-content/uploads/2012/04/20120410063759.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120410063759.jpg
rename to content/wp-content/uploads/2012/04/20120410063759.jpg
diff --git a/files/wp-content/uploads/2012/04/20120413063253-300x205.jpg b/content/wp-content/uploads/2012/04/20120413063253-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120413063253-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120413063253-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120413063253-300x300.jpg b/content/wp-content/uploads/2012/04/20120413063253-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120413063253-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120413063253-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120413063253-600x600.jpg b/content/wp-content/uploads/2012/04/20120413063253-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120413063253-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120413063253-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120413063253.jpg b/content/wp-content/uploads/2012/04/20120413063253.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120413063253.jpg
rename to content/wp-content/uploads/2012/04/20120413063253.jpg
diff --git a/files/wp-content/uploads/2012/04/20120413140806-300x205.jpg b/content/wp-content/uploads/2012/04/20120413140806-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120413140806-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120413140806-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120413140806-300x300.jpg b/content/wp-content/uploads/2012/04/20120413140806-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120413140806-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120413140806-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120413140806-600x600.jpg b/content/wp-content/uploads/2012/04/20120413140806-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120413140806-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120413140806-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120413140806.jpg b/content/wp-content/uploads/2012/04/20120413140806.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120413140806.jpg
rename to content/wp-content/uploads/2012/04/20120413140806.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414140738-300x205.jpg b/content/wp-content/uploads/2012/04/20120414140738-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414140738-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120414140738-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414140738-300x300.jpg b/content/wp-content/uploads/2012/04/20120414140738-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414140738-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120414140738-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414140738-600x600.jpg b/content/wp-content/uploads/2012/04/20120414140738-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414140738-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120414140738-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414140738.jpg b/content/wp-content/uploads/2012/04/20120414140738.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414140738.jpg
rename to content/wp-content/uploads/2012/04/20120414140738.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414150329-300x205.jpg b/content/wp-content/uploads/2012/04/20120414150329-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414150329-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120414150329-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414150329-300x300.jpg b/content/wp-content/uploads/2012/04/20120414150329-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414150329-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120414150329-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414150329-600x600.jpg b/content/wp-content/uploads/2012/04/20120414150329-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414150329-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120414150329-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414150329.jpg b/content/wp-content/uploads/2012/04/20120414150329.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414150329.jpg
rename to content/wp-content/uploads/2012/04/20120414150329.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414150337-300x205.jpg b/content/wp-content/uploads/2012/04/20120414150337-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414150337-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120414150337-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414150337-300x300.jpg b/content/wp-content/uploads/2012/04/20120414150337-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414150337-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120414150337-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414150337-600x600.jpg b/content/wp-content/uploads/2012/04/20120414150337-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414150337-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120414150337-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414150337.jpg b/content/wp-content/uploads/2012/04/20120414150337.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414150337.jpg
rename to content/wp-content/uploads/2012/04/20120414150337.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414152624-300x205.jpg b/content/wp-content/uploads/2012/04/20120414152624-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414152624-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120414152624-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414152624-300x300.jpg b/content/wp-content/uploads/2012/04/20120414152624-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414152624-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120414152624-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414152624-600x600.jpg b/content/wp-content/uploads/2012/04/20120414152624-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414152624-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120414152624-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414152624.jpg b/content/wp-content/uploads/2012/04/20120414152624.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414152624.jpg
rename to content/wp-content/uploads/2012/04/20120414152624.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414161021-300x205.jpg b/content/wp-content/uploads/2012/04/20120414161021-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414161021-300x205.jpg
rename to content/wp-content/uploads/2012/04/20120414161021-300x205.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414161021-300x300.jpg b/content/wp-content/uploads/2012/04/20120414161021-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414161021-300x300.jpg
rename to content/wp-content/uploads/2012/04/20120414161021-300x300.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414161021-600x600.jpg b/content/wp-content/uploads/2012/04/20120414161021-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414161021-600x600.jpg
rename to content/wp-content/uploads/2012/04/20120414161021-600x600.jpg
diff --git a/files/wp-content/uploads/2012/04/20120414161021.jpg b/content/wp-content/uploads/2012/04/20120414161021.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/04/20120414161021.jpg
rename to content/wp-content/uploads/2012/04/20120414161021.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422110453-300x205.jpg b/content/wp-content/uploads/2012/05/20120422110453-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422110453-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120422110453-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422110453-300x300.jpg b/content/wp-content/uploads/2012/05/20120422110453-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422110453-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120422110453-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422110453-600x600.jpg b/content/wp-content/uploads/2012/05/20120422110453-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422110453-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120422110453-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422110453.jpg b/content/wp-content/uploads/2012/05/20120422110453.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422110453.jpg
rename to content/wp-content/uploads/2012/05/20120422110453.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422120422-300x205.jpg b/content/wp-content/uploads/2012/05/20120422120422-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422120422-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120422120422-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422120422-300x300.jpg b/content/wp-content/uploads/2012/05/20120422120422-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422120422-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120422120422-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422120422-600x600.jpg b/content/wp-content/uploads/2012/05/20120422120422-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422120422-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120422120422-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422120422.jpg b/content/wp-content/uploads/2012/05/20120422120422.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422120422.jpg
rename to content/wp-content/uploads/2012/05/20120422120422.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422121429-300x205.jpg b/content/wp-content/uploads/2012/05/20120422121429-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422121429-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120422121429-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422121429-300x300.jpg b/content/wp-content/uploads/2012/05/20120422121429-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422121429-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120422121429-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422121429-600x600.jpg b/content/wp-content/uploads/2012/05/20120422121429-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422121429-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120422121429-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422121429.jpg b/content/wp-content/uploads/2012/05/20120422121429.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422121429.jpg
rename to content/wp-content/uploads/2012/05/20120422121429.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422121646-300x205.jpg b/content/wp-content/uploads/2012/05/20120422121646-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422121646-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120422121646-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422121646-300x300.jpg b/content/wp-content/uploads/2012/05/20120422121646-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422121646-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120422121646-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422121646-600x600.jpg b/content/wp-content/uploads/2012/05/20120422121646-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422121646-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120422121646-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422121646.jpg b/content/wp-content/uploads/2012/05/20120422121646.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422121646.jpg
rename to content/wp-content/uploads/2012/05/20120422121646.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422123612-300x205.jpg b/content/wp-content/uploads/2012/05/20120422123612-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422123612-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120422123612-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422123612-300x300.jpg b/content/wp-content/uploads/2012/05/20120422123612-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422123612-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120422123612-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422123612-600x600.jpg b/content/wp-content/uploads/2012/05/20120422123612-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422123612-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120422123612-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120422123612.jpg b/content/wp-content/uploads/2012/05/20120422123612.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120422123612.jpg
rename to content/wp-content/uploads/2012/05/20120422123612.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428061103-300x205.jpg b/content/wp-content/uploads/2012/05/20120428061103-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428061103-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120428061103-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428061103-300x225.jpg b/content/wp-content/uploads/2012/05/20120428061103-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428061103-300x225.jpg
rename to content/wp-content/uploads/2012/05/20120428061103-300x225.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428061103-798x600.jpg b/content/wp-content/uploads/2012/05/20120428061103-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428061103-798x600.jpg
rename to content/wp-content/uploads/2012/05/20120428061103-798x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428061103.jpg b/content/wp-content/uploads/2012/05/20120428061103.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428061103.jpg
rename to content/wp-content/uploads/2012/05/20120428061103.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428061127-300x200.jpg b/content/wp-content/uploads/2012/05/20120428061127-300x200.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428061127-300x200.jpg
rename to content/wp-content/uploads/2012/05/20120428061127-300x200.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428061127-300x205.jpg b/content/wp-content/uploads/2012/05/20120428061127-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428061127-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120428061127-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428061127-899x600.jpg b/content/wp-content/uploads/2012/05/20120428061127-899x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428061127-899x600.jpg
rename to content/wp-content/uploads/2012/05/20120428061127-899x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428061127.jpg b/content/wp-content/uploads/2012/05/20120428061127.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428061127.jpg
rename to content/wp-content/uploads/2012/05/20120428061127.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063232-300x205.jpg b/content/wp-content/uploads/2012/05/20120428063232-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063232-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120428063232-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063232-300x225.jpg b/content/wp-content/uploads/2012/05/20120428063232-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063232-300x225.jpg
rename to content/wp-content/uploads/2012/05/20120428063232-300x225.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063232-798x600.jpg b/content/wp-content/uploads/2012/05/20120428063232-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063232-798x600.jpg
rename to content/wp-content/uploads/2012/05/20120428063232-798x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063232.jpg b/content/wp-content/uploads/2012/05/20120428063232.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063232.jpg
rename to content/wp-content/uploads/2012/05/20120428063232.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063247-300x205.jpg b/content/wp-content/uploads/2012/05/20120428063247-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063247-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120428063247-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063247-300x225.jpg b/content/wp-content/uploads/2012/05/20120428063247-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063247-300x225.jpg
rename to content/wp-content/uploads/2012/05/20120428063247-300x225.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063247-798x600.jpg b/content/wp-content/uploads/2012/05/20120428063247-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063247-798x600.jpg
rename to content/wp-content/uploads/2012/05/20120428063247-798x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063247.jpg b/content/wp-content/uploads/2012/05/20120428063247.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063247.jpg
rename to content/wp-content/uploads/2012/05/20120428063247.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063639-300x205.jpg b/content/wp-content/uploads/2012/05/20120428063639-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063639-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120428063639-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063639-300x225.jpg b/content/wp-content/uploads/2012/05/20120428063639-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063639-300x225.jpg
rename to content/wp-content/uploads/2012/05/20120428063639-300x225.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063639-798x600.jpg b/content/wp-content/uploads/2012/05/20120428063639-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063639-798x600.jpg
rename to content/wp-content/uploads/2012/05/20120428063639-798x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428063639.jpg b/content/wp-content/uploads/2012/05/20120428063639.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428063639.jpg
rename to content/wp-content/uploads/2012/05/20120428063639.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428094110-300x205.jpg b/content/wp-content/uploads/2012/05/20120428094110-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428094110-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120428094110-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428094110-300x225.jpg b/content/wp-content/uploads/2012/05/20120428094110-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428094110-300x225.jpg
rename to content/wp-content/uploads/2012/05/20120428094110-300x225.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428094110-800x600.jpg b/content/wp-content/uploads/2012/05/20120428094110-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428094110-800x600.jpg
rename to content/wp-content/uploads/2012/05/20120428094110-800x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428094110.jpg b/content/wp-content/uploads/2012/05/20120428094110.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428094110.jpg
rename to content/wp-content/uploads/2012/05/20120428094110.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428151203-300x205.jpg b/content/wp-content/uploads/2012/05/20120428151203-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428151203-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120428151203-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428151203-300x225.jpg b/content/wp-content/uploads/2012/05/20120428151203-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428151203-300x225.jpg
rename to content/wp-content/uploads/2012/05/20120428151203-300x225.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428151203-798x600.jpg b/content/wp-content/uploads/2012/05/20120428151203-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428151203-798x600.jpg
rename to content/wp-content/uploads/2012/05/20120428151203-798x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120428151203.jpg b/content/wp-content/uploads/2012/05/20120428151203.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120428151203.jpg
rename to content/wp-content/uploads/2012/05/20120428151203.jpg
diff --git a/files/wp-content/uploads/2012/05/20120430153441.jpg b/content/wp-content/uploads/2012/05/20120430153441.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120430153441.jpg
rename to content/wp-content/uploads/2012/05/20120430153441.jpg
diff --git a/files/wp-content/uploads/2012/05/201204301534411.jpg b/content/wp-content/uploads/2012/05/201204301534411.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201204301534411.jpg
rename to content/wp-content/uploads/2012/05/201204301534411.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150521-300x205.jpg b/content/wp-content/uploads/2012/05/20120502150521-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150521-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120502150521-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150521-300x300.jpg b/content/wp-content/uploads/2012/05/20120502150521-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150521-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120502150521-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150521-600x600.jpg b/content/wp-content/uploads/2012/05/20120502150521-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150521-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120502150521-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150521.jpg b/content/wp-content/uploads/2012/05/20120502150521.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150521.jpg
rename to content/wp-content/uploads/2012/05/20120502150521.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150546-300x205.jpg b/content/wp-content/uploads/2012/05/20120502150546-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150546-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120502150546-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150546-300x300.jpg b/content/wp-content/uploads/2012/05/20120502150546-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150546-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120502150546-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150546-600x600.jpg b/content/wp-content/uploads/2012/05/20120502150546-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150546-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120502150546-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150546.jpg b/content/wp-content/uploads/2012/05/20120502150546.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150546.jpg
rename to content/wp-content/uploads/2012/05/20120502150546.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150643-300x205.jpg b/content/wp-content/uploads/2012/05/20120502150643-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150643-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120502150643-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150643-300x300.jpg b/content/wp-content/uploads/2012/05/20120502150643-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150643-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120502150643-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150643-600x600.jpg b/content/wp-content/uploads/2012/05/20120502150643-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150643-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120502150643-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150643.jpg b/content/wp-content/uploads/2012/05/20120502150643.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150643.jpg
rename to content/wp-content/uploads/2012/05/20120502150643.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150943-300x205.jpg b/content/wp-content/uploads/2012/05/20120502150943-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150943-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120502150943-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150943-300x300.jpg b/content/wp-content/uploads/2012/05/20120502150943-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150943-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120502150943-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150943-600x600.jpg b/content/wp-content/uploads/2012/05/20120502150943-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150943-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120502150943-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502150943.jpg b/content/wp-content/uploads/2012/05/20120502150943.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502150943.jpg
rename to content/wp-content/uploads/2012/05/20120502150943.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502151340-300x205.jpg b/content/wp-content/uploads/2012/05/20120502151340-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502151340-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120502151340-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502151340-300x300.jpg b/content/wp-content/uploads/2012/05/20120502151340-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502151340-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120502151340-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502151340-600x600.jpg b/content/wp-content/uploads/2012/05/20120502151340-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502151340-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120502151340-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120502151340.jpg b/content/wp-content/uploads/2012/05/20120502151340.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120502151340.jpg
rename to content/wp-content/uploads/2012/05/20120502151340.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512144954-300x205.jpg b/content/wp-content/uploads/2012/05/20120512144954-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512144954-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512144954-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512144954-300x300.jpg b/content/wp-content/uploads/2012/05/20120512144954-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512144954-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512144954-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512144954-600x600.jpg b/content/wp-content/uploads/2012/05/20120512144954-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512144954-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512144954-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512144954.jpg b/content/wp-content/uploads/2012/05/20120512144954.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512144954.jpg
rename to content/wp-content/uploads/2012/05/20120512144954.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121449541-300x205.jpg b/content/wp-content/uploads/2012/05/201205121449541-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121449541-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205121449541-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121449541-300x300.jpg b/content/wp-content/uploads/2012/05/201205121449541-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121449541-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205121449541-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121449541-600x600.jpg b/content/wp-content/uploads/2012/05/201205121449541-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121449541-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205121449541-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121449541.jpg b/content/wp-content/uploads/2012/05/201205121449541.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121449541.jpg
rename to content/wp-content/uploads/2012/05/201205121449541.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121449542-300x205.jpg b/content/wp-content/uploads/2012/05/201205121449542-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121449542-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205121449542-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121449542-300x300.jpg b/content/wp-content/uploads/2012/05/201205121449542-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121449542-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205121449542-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121449542-600x600.jpg b/content/wp-content/uploads/2012/05/201205121449542-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121449542-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205121449542-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121449542.jpg b/content/wp-content/uploads/2012/05/201205121449542.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121449542.jpg
rename to content/wp-content/uploads/2012/05/201205121449542.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145017.jpg b/content/wp-content/uploads/2012/05/20120512145017.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145017.jpg
rename to content/wp-content/uploads/2012/05/20120512145017.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121450171.jpg b/content/wp-content/uploads/2012/05/201205121450171.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121450171.jpg
rename to content/wp-content/uploads/2012/05/201205121450171.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121450172-300x205.jpg b/content/wp-content/uploads/2012/05/201205121450172-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121450172-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205121450172-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121450172-300x300.jpg b/content/wp-content/uploads/2012/05/201205121450172-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121450172-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205121450172-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121450172-600x600.jpg b/content/wp-content/uploads/2012/05/201205121450172-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121450172-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205121450172-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205121450172.jpg b/content/wp-content/uploads/2012/05/201205121450172.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205121450172.jpg
rename to content/wp-content/uploads/2012/05/201205121450172.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145151-300x205.jpg b/content/wp-content/uploads/2012/05/20120512145151-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145151-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512145151-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145151-300x300.jpg b/content/wp-content/uploads/2012/05/20120512145151-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145151-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512145151-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145151-600x600.jpg b/content/wp-content/uploads/2012/05/20120512145151-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145151-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512145151-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145151.jpg b/content/wp-content/uploads/2012/05/20120512145151.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145151.jpg
rename to content/wp-content/uploads/2012/05/20120512145151.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145224-300x205.jpg b/content/wp-content/uploads/2012/05/20120512145224-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145224-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512145224-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145224-300x300.jpg b/content/wp-content/uploads/2012/05/20120512145224-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145224-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512145224-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145224-600x600.jpg b/content/wp-content/uploads/2012/05/20120512145224-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145224-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512145224-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145224.jpg b/content/wp-content/uploads/2012/05/20120512145224.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145224.jpg
rename to content/wp-content/uploads/2012/05/20120512145224.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145651-300x205.jpg b/content/wp-content/uploads/2012/05/20120512145651-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145651-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512145651-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145651-300x300.jpg b/content/wp-content/uploads/2012/05/20120512145651-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145651-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512145651-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145651-600x600.jpg b/content/wp-content/uploads/2012/05/20120512145651-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145651-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512145651-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512145651.jpg b/content/wp-content/uploads/2012/05/20120512145651.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512145651.jpg
rename to content/wp-content/uploads/2012/05/20120512145651.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150124-300x205.jpg b/content/wp-content/uploads/2012/05/20120512150124-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150124-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512150124-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150124-300x300.jpg b/content/wp-content/uploads/2012/05/20120512150124-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150124-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512150124-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150124-600x600.jpg b/content/wp-content/uploads/2012/05/20120512150124-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150124-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512150124-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150124.jpg b/content/wp-content/uploads/2012/05/20120512150124.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150124.jpg
rename to content/wp-content/uploads/2012/05/20120512150124.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150238-300x205.jpg b/content/wp-content/uploads/2012/05/20120512150238-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150238-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512150238-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150238-300x300.jpg b/content/wp-content/uploads/2012/05/20120512150238-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150238-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512150238-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150238-600x600.jpg b/content/wp-content/uploads/2012/05/20120512150238-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150238-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512150238-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150238.jpg b/content/wp-content/uploads/2012/05/20120512150238.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150238.jpg
rename to content/wp-content/uploads/2012/05/20120512150238.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150930-300x205.jpg b/content/wp-content/uploads/2012/05/20120512150930-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150930-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512150930-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150930-300x300.jpg b/content/wp-content/uploads/2012/05/20120512150930-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150930-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512150930-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150930-600x600.jpg b/content/wp-content/uploads/2012/05/20120512150930-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150930-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512150930-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512150930.jpg b/content/wp-content/uploads/2012/05/20120512150930.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512150930.jpg
rename to content/wp-content/uploads/2012/05/20120512150930.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512151214-300x205.jpg b/content/wp-content/uploads/2012/05/20120512151214-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512151214-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512151214-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512151214-300x300.jpg b/content/wp-content/uploads/2012/05/20120512151214-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512151214-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512151214-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512151214-600x600.jpg b/content/wp-content/uploads/2012/05/20120512151214-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512151214-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512151214-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512151214.jpg b/content/wp-content/uploads/2012/05/20120512151214.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512151214.jpg
rename to content/wp-content/uploads/2012/05/20120512151214.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512151946-300x205.jpg b/content/wp-content/uploads/2012/05/20120512151946-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512151946-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512151946-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512151946-300x300.jpg b/content/wp-content/uploads/2012/05/20120512151946-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512151946-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512151946-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512151946-600x600.jpg b/content/wp-content/uploads/2012/05/20120512151946-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512151946-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512151946-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512151946.jpg b/content/wp-content/uploads/2012/05/20120512151946.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512151946.jpg
rename to content/wp-content/uploads/2012/05/20120512151946.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152003-300x205.jpg b/content/wp-content/uploads/2012/05/20120512152003-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152003-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512152003-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152003-300x300.jpg b/content/wp-content/uploads/2012/05/20120512152003-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152003-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512152003-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152003-600x600.jpg b/content/wp-content/uploads/2012/05/20120512152003-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152003-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512152003-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152003.jpg b/content/wp-content/uploads/2012/05/20120512152003.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152003.jpg
rename to content/wp-content/uploads/2012/05/20120512152003.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152509-300x205.jpg b/content/wp-content/uploads/2012/05/20120512152509-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152509-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512152509-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152509-300x300.jpg b/content/wp-content/uploads/2012/05/20120512152509-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152509-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512152509-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152509-600x600.jpg b/content/wp-content/uploads/2012/05/20120512152509-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152509-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512152509-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152509.jpg b/content/wp-content/uploads/2012/05/20120512152509.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152509.jpg
rename to content/wp-content/uploads/2012/05/20120512152509.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152608-300x205.jpg b/content/wp-content/uploads/2012/05/20120512152608-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152608-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512152608-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152608-300x300.jpg b/content/wp-content/uploads/2012/05/20120512152608-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152608-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512152608-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152608-600x600.jpg b/content/wp-content/uploads/2012/05/20120512152608-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152608-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512152608-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152608.jpg b/content/wp-content/uploads/2012/05/20120512152608.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152608.jpg
rename to content/wp-content/uploads/2012/05/20120512152608.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152632-300x205.jpg b/content/wp-content/uploads/2012/05/20120512152632-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152632-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512152632-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152632-300x225.jpg b/content/wp-content/uploads/2012/05/20120512152632-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152632-300x225.jpg
rename to content/wp-content/uploads/2012/05/20120512152632-300x225.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152632-798x600.jpg b/content/wp-content/uploads/2012/05/20120512152632-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152632-798x600.jpg
rename to content/wp-content/uploads/2012/05/20120512152632-798x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152632.jpg b/content/wp-content/uploads/2012/05/20120512152632.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152632.jpg
rename to content/wp-content/uploads/2012/05/20120512152632.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152748-300x205.jpg b/content/wp-content/uploads/2012/05/20120512152748-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152748-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512152748-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152748-300x300.jpg b/content/wp-content/uploads/2012/05/20120512152748-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152748-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512152748-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152748-600x600.jpg b/content/wp-content/uploads/2012/05/20120512152748-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152748-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512152748-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512152748.jpg b/content/wp-content/uploads/2012/05/20120512152748.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512152748.jpg
rename to content/wp-content/uploads/2012/05/20120512152748.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512153217-300x205.jpg b/content/wp-content/uploads/2012/05/20120512153217-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512153217-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512153217-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512153217-300x300.jpg b/content/wp-content/uploads/2012/05/20120512153217-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512153217-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512153217-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512153217-600x600.jpg b/content/wp-content/uploads/2012/05/20120512153217-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512153217-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512153217-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512153217.jpg b/content/wp-content/uploads/2012/05/20120512153217.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512153217.jpg
rename to content/wp-content/uploads/2012/05/20120512153217.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512154150-300x205.jpg b/content/wp-content/uploads/2012/05/20120512154150-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512154150-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512154150-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512154150-300x300.jpg b/content/wp-content/uploads/2012/05/20120512154150-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512154150-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512154150-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512154150-600x600.jpg b/content/wp-content/uploads/2012/05/20120512154150-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512154150-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512154150-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512154150.jpg b/content/wp-content/uploads/2012/05/20120512154150.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512154150.jpg
rename to content/wp-content/uploads/2012/05/20120512154150.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512155329-300x205.jpg b/content/wp-content/uploads/2012/05/20120512155329-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512155329-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120512155329-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512155329-300x300.jpg b/content/wp-content/uploads/2012/05/20120512155329-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512155329-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120512155329-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512155329-600x600.jpg b/content/wp-content/uploads/2012/05/20120512155329-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512155329-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120512155329-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120512155329.jpg b/content/wp-content/uploads/2012/05/20120512155329.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120512155329.jpg
rename to content/wp-content/uploads/2012/05/20120512155329.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521064338-300x205.jpg b/content/wp-content/uploads/2012/05/20120521064338-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521064338-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120521064338-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521064338-300x300.jpg b/content/wp-content/uploads/2012/05/20120521064338-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521064338-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120521064338-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521064338-600x600.jpg b/content/wp-content/uploads/2012/05/20120521064338-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521064338-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120521064338-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521064338.jpg b/content/wp-content/uploads/2012/05/20120521064338.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521064338.jpg
rename to content/wp-content/uploads/2012/05/20120521064338.jpg
diff --git a/files/wp-content/uploads/2012/05/201205210643381-300x205.jpg b/content/wp-content/uploads/2012/05/201205210643381-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205210643381-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205210643381-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205210643381-300x300.jpg b/content/wp-content/uploads/2012/05/201205210643381-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205210643381-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205210643381-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205210643381-600x600.jpg b/content/wp-content/uploads/2012/05/201205210643381-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205210643381-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205210643381-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205210643381.jpg b/content/wp-content/uploads/2012/05/201205210643381.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205210643381.jpg
rename to content/wp-content/uploads/2012/05/201205210643381.jpg
diff --git a/files/wp-content/uploads/2012/05/201205210643382-300x205.jpg b/content/wp-content/uploads/2012/05/201205210643382-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205210643382-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205210643382-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205210643382-300x300.jpg b/content/wp-content/uploads/2012/05/201205210643382-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205210643382-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205210643382-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205210643382-600x600.jpg b/content/wp-content/uploads/2012/05/201205210643382-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205210643382-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205210643382-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205210643382.jpg b/content/wp-content/uploads/2012/05/201205210643382.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205210643382.jpg
rename to content/wp-content/uploads/2012/05/201205210643382.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521153403-300x205.jpg b/content/wp-content/uploads/2012/05/20120521153403-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521153403-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120521153403-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521153403-300x300.jpg b/content/wp-content/uploads/2012/05/20120521153403-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521153403-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120521153403-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521153403-600x600.jpg b/content/wp-content/uploads/2012/05/20120521153403-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521153403-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120521153403-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521153403.jpg b/content/wp-content/uploads/2012/05/20120521153403.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521153403.jpg
rename to content/wp-content/uploads/2012/05/20120521153403.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211534031-300x205.jpg b/content/wp-content/uploads/2012/05/201205211534031-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211534031-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205211534031-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211534031-300x300.jpg b/content/wp-content/uploads/2012/05/201205211534031-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211534031-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205211534031-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211534031-600x600.jpg b/content/wp-content/uploads/2012/05/201205211534031-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211534031-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205211534031-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211534031.jpg b/content/wp-content/uploads/2012/05/201205211534031.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211534031.jpg
rename to content/wp-content/uploads/2012/05/201205211534031.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211534032-300x205.jpg b/content/wp-content/uploads/2012/05/201205211534032-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211534032-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205211534032-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211534032-300x300.jpg b/content/wp-content/uploads/2012/05/201205211534032-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211534032-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205211534032-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211534032-600x600.jpg b/content/wp-content/uploads/2012/05/201205211534032-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211534032-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205211534032-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211534032.jpg b/content/wp-content/uploads/2012/05/201205211534032.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211534032.jpg
rename to content/wp-content/uploads/2012/05/201205211534032.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521161508-300x205.jpg b/content/wp-content/uploads/2012/05/20120521161508-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521161508-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120521161508-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521161508-300x300.jpg b/content/wp-content/uploads/2012/05/20120521161508-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521161508-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120521161508-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521161508-600x600.jpg b/content/wp-content/uploads/2012/05/20120521161508-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521161508-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120521161508-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120521161508.jpg b/content/wp-content/uploads/2012/05/20120521161508.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120521161508.jpg
rename to content/wp-content/uploads/2012/05/20120521161508.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211615081-300x205.jpg b/content/wp-content/uploads/2012/05/201205211615081-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211615081-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205211615081-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211615081-300x300.jpg b/content/wp-content/uploads/2012/05/201205211615081-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211615081-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205211615081-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211615081-600x600.jpg b/content/wp-content/uploads/2012/05/201205211615081-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211615081-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205211615081-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211615081.jpg b/content/wp-content/uploads/2012/05/201205211615081.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211615081.jpg
rename to content/wp-content/uploads/2012/05/201205211615081.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211615082-300x205.jpg b/content/wp-content/uploads/2012/05/201205211615082-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211615082-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205211615082-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211615082-300x300.jpg b/content/wp-content/uploads/2012/05/201205211615082-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211615082-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205211615082-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211615082-600x600.jpg b/content/wp-content/uploads/2012/05/201205211615082-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211615082-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205211615082-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205211615082.jpg b/content/wp-content/uploads/2012/05/201205211615082.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205211615082.jpg
rename to content/wp-content/uploads/2012/05/201205211615082.jpg
diff --git a/files/wp-content/uploads/2012/05/20120522063931-300x205.jpg b/content/wp-content/uploads/2012/05/20120522063931-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120522063931-300x205.jpg
rename to content/wp-content/uploads/2012/05/20120522063931-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/20120522063931-300x300.jpg b/content/wp-content/uploads/2012/05/20120522063931-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120522063931-300x300.jpg
rename to content/wp-content/uploads/2012/05/20120522063931-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/20120522063931-600x600.jpg b/content/wp-content/uploads/2012/05/20120522063931-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120522063931-600x600.jpg
rename to content/wp-content/uploads/2012/05/20120522063931-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/20120522063931.jpg b/content/wp-content/uploads/2012/05/20120522063931.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/20120522063931.jpg
rename to content/wp-content/uploads/2012/05/20120522063931.jpg
diff --git a/files/wp-content/uploads/2012/05/201205220639311-300x205.jpg b/content/wp-content/uploads/2012/05/201205220639311-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205220639311-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205220639311-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205220639311-300x300.jpg b/content/wp-content/uploads/2012/05/201205220639311-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205220639311-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205220639311-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205220639311-600x600.jpg b/content/wp-content/uploads/2012/05/201205220639311-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205220639311-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205220639311-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205220639311.jpg b/content/wp-content/uploads/2012/05/201205220639311.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205220639311.jpg
rename to content/wp-content/uploads/2012/05/201205220639311.jpg
diff --git a/files/wp-content/uploads/2012/05/201205220639312-300x205.jpg b/content/wp-content/uploads/2012/05/201205220639312-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205220639312-300x205.jpg
rename to content/wp-content/uploads/2012/05/201205220639312-300x205.jpg
diff --git a/files/wp-content/uploads/2012/05/201205220639312-300x300.jpg b/content/wp-content/uploads/2012/05/201205220639312-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205220639312-300x300.jpg
rename to content/wp-content/uploads/2012/05/201205220639312-300x300.jpg
diff --git a/files/wp-content/uploads/2012/05/201205220639312-600x600.jpg b/content/wp-content/uploads/2012/05/201205220639312-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205220639312-600x600.jpg
rename to content/wp-content/uploads/2012/05/201205220639312-600x600.jpg
diff --git a/files/wp-content/uploads/2012/05/201205220639312.jpg b/content/wp-content/uploads/2012/05/201205220639312.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/05/201205220639312.jpg
rename to content/wp-content/uploads/2012/05/201205220639312.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602110627-300x205.jpg b/content/wp-content/uploads/2012/06/20120602110627-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602110627-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120602110627-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602110627-300x300.jpg b/content/wp-content/uploads/2012/06/20120602110627-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602110627-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120602110627-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602110627-600x600.jpg b/content/wp-content/uploads/2012/06/20120602110627-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602110627-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120602110627-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602110627.jpg b/content/wp-content/uploads/2012/06/20120602110627.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602110627.jpg
rename to content/wp-content/uploads/2012/06/20120602110627.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602120433-300x205.jpg b/content/wp-content/uploads/2012/06/20120602120433-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602120433-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120602120433-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602120433-300x300.jpg b/content/wp-content/uploads/2012/06/20120602120433-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602120433-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120602120433-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602120433-600x600.jpg b/content/wp-content/uploads/2012/06/20120602120433-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602120433-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120602120433-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602120433.jpg b/content/wp-content/uploads/2012/06/20120602120433.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602120433.jpg
rename to content/wp-content/uploads/2012/06/20120602120433.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602144207-300x205.jpg b/content/wp-content/uploads/2012/06/20120602144207-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602144207-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120602144207-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602144207-300x300.jpg b/content/wp-content/uploads/2012/06/20120602144207-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602144207-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120602144207-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602144207-600x600.jpg b/content/wp-content/uploads/2012/06/20120602144207-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602144207-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120602144207-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602144207.jpg b/content/wp-content/uploads/2012/06/20120602144207.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602144207.jpg
rename to content/wp-content/uploads/2012/06/20120602144207.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602170319-300x205.jpg b/content/wp-content/uploads/2012/06/20120602170319-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602170319-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120602170319-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602170319-300x300.jpg b/content/wp-content/uploads/2012/06/20120602170319-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602170319-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120602170319-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602170319-600x600.jpg b/content/wp-content/uploads/2012/06/20120602170319-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602170319-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120602170319-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602170319.jpg b/content/wp-content/uploads/2012/06/20120602170319.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602170319.jpg
rename to content/wp-content/uploads/2012/06/20120602170319.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602172450-300x205.jpg b/content/wp-content/uploads/2012/06/20120602172450-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602172450-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120602172450-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602172450-300x300.jpg b/content/wp-content/uploads/2012/06/20120602172450-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602172450-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120602172450-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602172450-600x600.jpg b/content/wp-content/uploads/2012/06/20120602172450-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602172450-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120602172450-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602172450.jpg b/content/wp-content/uploads/2012/06/20120602172450.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602172450.jpg
rename to content/wp-content/uploads/2012/06/20120602172450.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602174013-300x205.jpg b/content/wp-content/uploads/2012/06/20120602174013-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602174013-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120602174013-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602174013-300x300.jpg b/content/wp-content/uploads/2012/06/20120602174013-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602174013-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120602174013-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602174013-600x600.jpg b/content/wp-content/uploads/2012/06/20120602174013-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602174013-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120602174013-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602174013.jpg b/content/wp-content/uploads/2012/06/20120602174013.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602174013.jpg
rename to content/wp-content/uploads/2012/06/20120602174013.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602174332-300x205.jpg b/content/wp-content/uploads/2012/06/20120602174332-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602174332-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120602174332-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602174332-300x300.jpg b/content/wp-content/uploads/2012/06/20120602174332-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602174332-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120602174332-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602174332-600x600.jpg b/content/wp-content/uploads/2012/06/20120602174332-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602174332-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120602174332-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120602174332.jpg b/content/wp-content/uploads/2012/06/20120602174332.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120602174332.jpg
rename to content/wp-content/uploads/2012/06/20120602174332.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604132712-300x205.jpg b/content/wp-content/uploads/2012/06/20120604132712-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604132712-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120604132712-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604132712-300x300.jpg b/content/wp-content/uploads/2012/06/20120604132712-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604132712-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120604132712-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604132712-600x600.jpg b/content/wp-content/uploads/2012/06/20120604132712-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604132712-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120604132712-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604132712.jpg b/content/wp-content/uploads/2012/06/20120604132712.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604132712.jpg
rename to content/wp-content/uploads/2012/06/20120604132712.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604143752-300x205.jpg b/content/wp-content/uploads/2012/06/20120604143752-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604143752-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120604143752-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604143752-300x300.jpg b/content/wp-content/uploads/2012/06/20120604143752-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604143752-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120604143752-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604143752-600x600.jpg b/content/wp-content/uploads/2012/06/20120604143752-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604143752-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120604143752-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604143752.jpg b/content/wp-content/uploads/2012/06/20120604143752.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604143752.jpg
rename to content/wp-content/uploads/2012/06/20120604143752.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604143816-300x205.jpg b/content/wp-content/uploads/2012/06/20120604143816-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604143816-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120604143816-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604143816-300x300.jpg b/content/wp-content/uploads/2012/06/20120604143816-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604143816-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120604143816-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604143816-600x600.jpg b/content/wp-content/uploads/2012/06/20120604143816-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604143816-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120604143816-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120604143816.jpg b/content/wp-content/uploads/2012/06/20120604143816.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120604143816.jpg
rename to content/wp-content/uploads/2012/06/20120604143816.jpg
diff --git a/files/wp-content/uploads/2012/06/20120606224601-300x205.jpg b/content/wp-content/uploads/2012/06/20120606224601-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120606224601-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120606224601-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120606224601-300x300.jpg b/content/wp-content/uploads/2012/06/20120606224601-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120606224601-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120606224601-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120606224601-600x600.jpg b/content/wp-content/uploads/2012/06/20120606224601-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120606224601-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120606224601-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120606224601.jpg b/content/wp-content/uploads/2012/06/20120606224601.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120606224601.jpg
rename to content/wp-content/uploads/2012/06/20120606224601.jpg
diff --git a/files/wp-content/uploads/2012/06/20120608100332-300x205.jpg b/content/wp-content/uploads/2012/06/20120608100332-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120608100332-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120608100332-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120608100332-300x300.jpg b/content/wp-content/uploads/2012/06/20120608100332-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120608100332-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120608100332-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120608100332-600x600.jpg b/content/wp-content/uploads/2012/06/20120608100332-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120608100332-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120608100332-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120608100332.jpg b/content/wp-content/uploads/2012/06/20120608100332.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120608100332.jpg
rename to content/wp-content/uploads/2012/06/20120608100332.jpg
diff --git a/files/wp-content/uploads/2012/06/20120610144210-300x205.jpg b/content/wp-content/uploads/2012/06/20120610144210-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120610144210-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120610144210-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120610144210-300x300.jpg b/content/wp-content/uploads/2012/06/20120610144210-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120610144210-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120610144210-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120610144210-600x600.jpg b/content/wp-content/uploads/2012/06/20120610144210-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120610144210-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120610144210-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120610144210.jpg b/content/wp-content/uploads/2012/06/20120610144210.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120610144210.jpg
rename to content/wp-content/uploads/2012/06/20120610144210.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615061608-300x205.jpg b/content/wp-content/uploads/2012/06/20120615061608-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615061608-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120615061608-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615061608-300x300.jpg b/content/wp-content/uploads/2012/06/20120615061608-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615061608-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120615061608-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615061608-600x600.jpg b/content/wp-content/uploads/2012/06/20120615061608-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615061608-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120615061608-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615061608.jpg b/content/wp-content/uploads/2012/06/20120615061608.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615061608.jpg
rename to content/wp-content/uploads/2012/06/20120615061608.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615165301-300x205.jpg b/content/wp-content/uploads/2012/06/20120615165301-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615165301-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120615165301-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615165301-300x300.jpg b/content/wp-content/uploads/2012/06/20120615165301-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615165301-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120615165301-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615165301-600x600.jpg b/content/wp-content/uploads/2012/06/20120615165301-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615165301-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120615165301-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615165301.jpg b/content/wp-content/uploads/2012/06/20120615165301.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615165301.jpg
rename to content/wp-content/uploads/2012/06/20120615165301.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615165528-300x205.jpg b/content/wp-content/uploads/2012/06/20120615165528-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615165528-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120615165528-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615165528-300x224.jpg b/content/wp-content/uploads/2012/06/20120615165528-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615165528-300x224.jpg
rename to content/wp-content/uploads/2012/06/20120615165528-300x224.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615165528-800x600.jpg b/content/wp-content/uploads/2012/06/20120615165528-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615165528-800x600.jpg
rename to content/wp-content/uploads/2012/06/20120615165528-800x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120615165528.jpg b/content/wp-content/uploads/2012/06/20120615165528.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120615165528.jpg
rename to content/wp-content/uploads/2012/06/20120615165528.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124416-300x205.jpg b/content/wp-content/uploads/2012/06/20120617124416-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124416-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120617124416-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124416-300x224.jpg b/content/wp-content/uploads/2012/06/20120617124416-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124416-300x224.jpg
rename to content/wp-content/uploads/2012/06/20120617124416-300x224.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124416-800x600.jpg b/content/wp-content/uploads/2012/06/20120617124416-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124416-800x600.jpg
rename to content/wp-content/uploads/2012/06/20120617124416-800x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124416.jpg b/content/wp-content/uploads/2012/06/20120617124416.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124416.jpg
rename to content/wp-content/uploads/2012/06/20120617124416.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124425-300x205.jpg b/content/wp-content/uploads/2012/06/20120617124425-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124425-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120617124425-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124425-300x224.jpg b/content/wp-content/uploads/2012/06/20120617124425-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124425-300x224.jpg
rename to content/wp-content/uploads/2012/06/20120617124425-300x224.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124425-800x600.jpg b/content/wp-content/uploads/2012/06/20120617124425-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124425-800x600.jpg
rename to content/wp-content/uploads/2012/06/20120617124425-800x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124425.jpg b/content/wp-content/uploads/2012/06/20120617124425.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124425.jpg
rename to content/wp-content/uploads/2012/06/20120617124425.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124624-300x205.jpg b/content/wp-content/uploads/2012/06/20120617124624-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124624-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120617124624-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124624-300x300.jpg b/content/wp-content/uploads/2012/06/20120617124624-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124624-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120617124624-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124624-600x600.jpg b/content/wp-content/uploads/2012/06/20120617124624-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124624-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120617124624-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617124624.jpg b/content/wp-content/uploads/2012/06/20120617124624.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617124624.jpg
rename to content/wp-content/uploads/2012/06/20120617124624.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617180907-300x205.jpg b/content/wp-content/uploads/2012/06/20120617180907-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617180907-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120617180907-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617180907-300x300.jpg b/content/wp-content/uploads/2012/06/20120617180907-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617180907-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120617180907-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617180907-600x600.jpg b/content/wp-content/uploads/2012/06/20120617180907-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617180907-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120617180907-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617180907.jpg b/content/wp-content/uploads/2012/06/20120617180907.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617180907.jpg
rename to content/wp-content/uploads/2012/06/20120617180907.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617181221-300x205.jpg b/content/wp-content/uploads/2012/06/20120617181221-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617181221-300x205.jpg
rename to content/wp-content/uploads/2012/06/20120617181221-300x205.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617181221-300x300.jpg b/content/wp-content/uploads/2012/06/20120617181221-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617181221-300x300.jpg
rename to content/wp-content/uploads/2012/06/20120617181221-300x300.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617181221-600x600.jpg b/content/wp-content/uploads/2012/06/20120617181221-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617181221-600x600.jpg
rename to content/wp-content/uploads/2012/06/20120617181221-600x600.jpg
diff --git a/files/wp-content/uploads/2012/06/20120617181221.jpg b/content/wp-content/uploads/2012/06/20120617181221.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/06/20120617181221.jpg
rename to content/wp-content/uploads/2012/06/20120617181221.jpg
diff --git a/files/wp-content/uploads/2012/07/20120116133729-300x205.jpg b/content/wp-content/uploads/2012/07/20120116133729-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120116133729-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120116133729-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120116133729-300x300.jpg b/content/wp-content/uploads/2012/07/20120116133729-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120116133729-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120116133729-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120116133729.jpg b/content/wp-content/uploads/2012/07/20120116133729.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120116133729.jpg
rename to content/wp-content/uploads/2012/07/20120116133729.jpg
diff --git a/files/wp-content/uploads/2012/07/2012020819102641-300x205.jpg b/content/wp-content/uploads/2012/07/2012020819102641-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/2012020819102641-300x205.jpg
rename to content/wp-content/uploads/2012/07/2012020819102641-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/2012020819102641-300x300.jpg b/content/wp-content/uploads/2012/07/2012020819102641-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/2012020819102641-300x300.jpg
rename to content/wp-content/uploads/2012/07/2012020819102641-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/2012020819102641-600x600.jpg b/content/wp-content/uploads/2012/07/2012020819102641-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/2012020819102641-600x600.jpg
rename to content/wp-content/uploads/2012/07/2012020819102641-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/2012020819102641.jpg b/content/wp-content/uploads/2012/07/2012020819102641.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/2012020819102641.jpg
rename to content/wp-content/uploads/2012/07/2012020819102641.jpg
diff --git a/files/wp-content/uploads/2012/07/20120225103140-300x205.jpg b/content/wp-content/uploads/2012/07/20120225103140-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120225103140-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120225103140-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120225103140-300x300.jpg b/content/wp-content/uploads/2012/07/20120225103140-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120225103140-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120225103140-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120225103140-600x600.jpg b/content/wp-content/uploads/2012/07/20120225103140-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120225103140-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120225103140-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120225103140.jpg b/content/wp-content/uploads/2012/07/20120225103140.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120225103140.jpg
rename to content/wp-content/uploads/2012/07/20120225103140.jpg
diff --git a/files/wp-content/uploads/2012/07/20120619064107-300x205.jpg b/content/wp-content/uploads/2012/07/20120619064107-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120619064107-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120619064107-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120619064107-300x300.jpg b/content/wp-content/uploads/2012/07/20120619064107-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120619064107-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120619064107-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120619064107-600x600.jpg b/content/wp-content/uploads/2012/07/20120619064107-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120619064107-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120619064107-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120619064107.jpg b/content/wp-content/uploads/2012/07/20120619064107.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120619064107.jpg
rename to content/wp-content/uploads/2012/07/20120619064107.jpg
diff --git a/files/wp-content/uploads/2012/07/20120619161413-300x205.jpg b/content/wp-content/uploads/2012/07/20120619161413-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120619161413-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120619161413-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120619161413-300x300.jpg b/content/wp-content/uploads/2012/07/20120619161413-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120619161413-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120619161413-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120619161413-600x600.jpg b/content/wp-content/uploads/2012/07/20120619161413-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120619161413-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120619161413-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120619161413.jpg b/content/wp-content/uploads/2012/07/20120619161413.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120619161413.jpg
rename to content/wp-content/uploads/2012/07/20120619161413.jpg
diff --git a/files/wp-content/uploads/2012/07/20120620062443-300x205.jpg b/content/wp-content/uploads/2012/07/20120620062443-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120620062443-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120620062443-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120620062443-300x300.jpg b/content/wp-content/uploads/2012/07/20120620062443-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120620062443-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120620062443-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120620062443-600x600.jpg b/content/wp-content/uploads/2012/07/20120620062443-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120620062443-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120620062443-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120620062443.jpg b/content/wp-content/uploads/2012/07/20120620062443.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120620062443.jpg
rename to content/wp-content/uploads/2012/07/20120620062443.jpg
diff --git a/files/wp-content/uploads/2012/07/20120621141901-300x205.jpg b/content/wp-content/uploads/2012/07/20120621141901-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120621141901-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120621141901-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120621141901-300x300.jpg b/content/wp-content/uploads/2012/07/20120621141901-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120621141901-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120621141901-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120621141901-600x600.jpg b/content/wp-content/uploads/2012/07/20120621141901-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120621141901-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120621141901-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120621141901.jpg b/content/wp-content/uploads/2012/07/20120621141901.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120621141901.jpg
rename to content/wp-content/uploads/2012/07/20120621141901.jpg
diff --git a/files/wp-content/uploads/2012/07/20120624191813_1-300x205.jpg b/content/wp-content/uploads/2012/07/20120624191813_1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120624191813_1-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120624191813_1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120624191813_1-300x300.jpg b/content/wp-content/uploads/2012/07/20120624191813_1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120624191813_1-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120624191813_1-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120624191813_1-600x600.jpg b/content/wp-content/uploads/2012/07/20120624191813_1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120624191813_1-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120624191813_1-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120624191813_1.jpg b/content/wp-content/uploads/2012/07/20120624191813_1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120624191813_1.jpg
rename to content/wp-content/uploads/2012/07/20120624191813_1.jpg
diff --git a/files/wp-content/uploads/2012/07/20120627062943_1-300x205.jpg b/content/wp-content/uploads/2012/07/20120627062943_1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120627062943_1-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120627062943_1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120627062943_1-300x300.jpg b/content/wp-content/uploads/2012/07/20120627062943_1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120627062943_1-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120627062943_1-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120627062943_1-600x600.jpg b/content/wp-content/uploads/2012/07/20120627062943_1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120627062943_1-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120627062943_1-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120627062943_1.jpg b/content/wp-content/uploads/2012/07/20120627062943_1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120627062943_1.jpg
rename to content/wp-content/uploads/2012/07/20120627062943_1.jpg
diff --git a/files/wp-content/uploads/2012/07/20120629062249_1-300x205.jpg b/content/wp-content/uploads/2012/07/20120629062249_1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120629062249_1-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120629062249_1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120629062249_1-300x300.jpg b/content/wp-content/uploads/2012/07/20120629062249_1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120629062249_1-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120629062249_1-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120629062249_1-600x600.jpg b/content/wp-content/uploads/2012/07/20120629062249_1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120629062249_1-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120629062249_1-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120629062249_1.jpg b/content/wp-content/uploads/2012/07/20120629062249_1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120629062249_1.jpg
rename to content/wp-content/uploads/2012/07/20120629062249_1.jpg
diff --git a/files/wp-content/uploads/2012/07/20120701123515_1-300x205.jpg b/content/wp-content/uploads/2012/07/20120701123515_1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120701123515_1-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120701123515_1-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120701123515_1-300x224.jpg b/content/wp-content/uploads/2012/07/20120701123515_1-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120701123515_1-300x224.jpg
rename to content/wp-content/uploads/2012/07/20120701123515_1-300x224.jpg
diff --git a/files/wp-content/uploads/2012/07/20120701123515_1-800x600.jpg b/content/wp-content/uploads/2012/07/20120701123515_1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120701123515_1-800x600.jpg
rename to content/wp-content/uploads/2012/07/20120701123515_1-800x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120701123515_1.jpg b/content/wp-content/uploads/2012/07/20120701123515_1.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120701123515_1.jpg
rename to content/wp-content/uploads/2012/07/20120701123515_1.jpg
diff --git a/files/wp-content/uploads/2012/07/20120702175522-300x205.jpg b/content/wp-content/uploads/2012/07/20120702175522-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120702175522-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120702175522-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120702175522-300x300.jpg b/content/wp-content/uploads/2012/07/20120702175522-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120702175522-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120702175522-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120702175522-600x600.jpg b/content/wp-content/uploads/2012/07/20120702175522-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120702175522-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120702175522-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120702175522.jpg b/content/wp-content/uploads/2012/07/20120702175522.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120702175522.jpg
rename to content/wp-content/uploads/2012/07/20120702175522.jpg
diff --git a/files/wp-content/uploads/2012/07/20120703065103-300x205.jpg b/content/wp-content/uploads/2012/07/20120703065103-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120703065103-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120703065103-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120703065103-300x300.jpg b/content/wp-content/uploads/2012/07/20120703065103-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120703065103-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120703065103-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120703065103-600x600.jpg b/content/wp-content/uploads/2012/07/20120703065103-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120703065103-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120703065103-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120703065103.jpg b/content/wp-content/uploads/2012/07/20120703065103.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120703065103.jpg
rename to content/wp-content/uploads/2012/07/20120703065103.jpg
diff --git a/files/wp-content/uploads/2012/07/20120705135521-300x205.jpg b/content/wp-content/uploads/2012/07/20120705135521-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120705135521-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120705135521-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120705135521-300x300.jpg b/content/wp-content/uploads/2012/07/20120705135521-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120705135521-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120705135521-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120705135521-600x600.jpg b/content/wp-content/uploads/2012/07/20120705135521-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120705135521-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120705135521-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120705135521.jpg b/content/wp-content/uploads/2012/07/20120705135521.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120705135521.jpg
rename to content/wp-content/uploads/2012/07/20120705135521.jpg
diff --git a/files/wp-content/uploads/2012/07/20120709072615-300x205.jpg b/content/wp-content/uploads/2012/07/20120709072615-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120709072615-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120709072615-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120709072615-300x300.jpg b/content/wp-content/uploads/2012/07/20120709072615-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120709072615-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120709072615-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120709072615-600x600.jpg b/content/wp-content/uploads/2012/07/20120709072615-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120709072615-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120709072615-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120709072615.jpg b/content/wp-content/uploads/2012/07/20120709072615.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120709072615.jpg
rename to content/wp-content/uploads/2012/07/20120709072615.jpg
diff --git a/files/wp-content/uploads/2012/07/20120711064809-300x205.jpg b/content/wp-content/uploads/2012/07/20120711064809-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120711064809-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120711064809-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120711064809-300x300.jpg b/content/wp-content/uploads/2012/07/20120711064809-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120711064809-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120711064809-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120711064809-600x600.jpg b/content/wp-content/uploads/2012/07/20120711064809-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120711064809-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120711064809-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120711064809.jpg b/content/wp-content/uploads/2012/07/20120711064809.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120711064809.jpg
rename to content/wp-content/uploads/2012/07/20120711064809.jpg
diff --git a/files/wp-content/uploads/2012/07/20120714132715-300x205.jpg b/content/wp-content/uploads/2012/07/20120714132715-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120714132715-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120714132715-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120714132715-300x300.jpg b/content/wp-content/uploads/2012/07/20120714132715-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120714132715-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120714132715-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120714132715-600x600.jpg b/content/wp-content/uploads/2012/07/20120714132715-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120714132715-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120714132715-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120714132715.jpg b/content/wp-content/uploads/2012/07/20120714132715.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120714132715.jpg
rename to content/wp-content/uploads/2012/07/20120714132715.jpg
diff --git a/files/wp-content/uploads/2012/07/20120714132733-300x205.jpg b/content/wp-content/uploads/2012/07/20120714132733-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120714132733-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120714132733-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120714132733-300x300.jpg b/content/wp-content/uploads/2012/07/20120714132733-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120714132733-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120714132733-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120714132733-600x600.jpg b/content/wp-content/uploads/2012/07/20120714132733-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120714132733-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120714132733-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120714132733.jpg b/content/wp-content/uploads/2012/07/20120714132733.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120714132733.jpg
rename to content/wp-content/uploads/2012/07/20120714132733.jpg
diff --git a/files/wp-content/uploads/2012/07/20120715105302-300x205.jpg b/content/wp-content/uploads/2012/07/20120715105302-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120715105302-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120715105302-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120715105302-300x300.jpg b/content/wp-content/uploads/2012/07/20120715105302-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120715105302-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120715105302-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120715105302-600x600.jpg b/content/wp-content/uploads/2012/07/20120715105302-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120715105302-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120715105302-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120715105302.jpg b/content/wp-content/uploads/2012/07/20120715105302.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120715105302.jpg
rename to content/wp-content/uploads/2012/07/20120715105302.jpg
diff --git a/files/wp-content/uploads/2012/07/20120715105305-300x205.jpg b/content/wp-content/uploads/2012/07/20120715105305-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120715105305-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120715105305-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120715105305-300x300.jpg b/content/wp-content/uploads/2012/07/20120715105305-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120715105305-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120715105305-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120715105305-599x600.jpg b/content/wp-content/uploads/2012/07/20120715105305-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120715105305-599x600.jpg
rename to content/wp-content/uploads/2012/07/20120715105305-599x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120715105305.jpg b/content/wp-content/uploads/2012/07/20120715105305.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120715105305.jpg
rename to content/wp-content/uploads/2012/07/20120715105305.jpg
diff --git a/files/wp-content/uploads/2012/07/20120719181608-300x205.jpg b/content/wp-content/uploads/2012/07/20120719181608-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120719181608-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120719181608-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120719181608-300x300.jpg b/content/wp-content/uploads/2012/07/20120719181608-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120719181608-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120719181608-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120719181608-600x600.jpg b/content/wp-content/uploads/2012/07/20120719181608-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120719181608-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120719181608-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120719181608.jpg b/content/wp-content/uploads/2012/07/20120719181608.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120719181608.jpg
rename to content/wp-content/uploads/2012/07/20120719181608.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720062615-300x205.jpg b/content/wp-content/uploads/2012/07/20120720062615-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720062615-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120720062615-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720062615-300x300.jpg b/content/wp-content/uploads/2012/07/20120720062615-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720062615-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120720062615-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720062615-600x600.jpg b/content/wp-content/uploads/2012/07/20120720062615-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720062615-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120720062615-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720062615.jpg b/content/wp-content/uploads/2012/07/20120720062615.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720062615.jpg
rename to content/wp-content/uploads/2012/07/20120720062615.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720062749-300x205.jpg b/content/wp-content/uploads/2012/07/20120720062749-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720062749-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120720062749-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720062749-300x300.jpg b/content/wp-content/uploads/2012/07/20120720062749-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720062749-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120720062749-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720062749-600x600.jpg b/content/wp-content/uploads/2012/07/20120720062749-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720062749-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120720062749-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720062749.jpg b/content/wp-content/uploads/2012/07/20120720062749.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720062749.jpg
rename to content/wp-content/uploads/2012/07/20120720062749.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720193829-300x205.jpg b/content/wp-content/uploads/2012/07/20120720193829-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720193829-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120720193829-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720193829-300x300.jpg b/content/wp-content/uploads/2012/07/20120720193829-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720193829-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120720193829-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720193829-600x600.jpg b/content/wp-content/uploads/2012/07/20120720193829-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720193829-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120720193829-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120720193829.jpg b/content/wp-content/uploads/2012/07/20120720193829.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120720193829.jpg
rename to content/wp-content/uploads/2012/07/20120720193829.jpg
diff --git a/files/wp-content/uploads/2012/07/20120721114644-300x205.jpg b/content/wp-content/uploads/2012/07/20120721114644-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120721114644-300x205.jpg
rename to content/wp-content/uploads/2012/07/20120721114644-300x205.jpg
diff --git a/files/wp-content/uploads/2012/07/20120721114644-300x300.jpg b/content/wp-content/uploads/2012/07/20120721114644-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120721114644-300x300.jpg
rename to content/wp-content/uploads/2012/07/20120721114644-300x300.jpg
diff --git a/files/wp-content/uploads/2012/07/20120721114644-600x600.jpg b/content/wp-content/uploads/2012/07/20120721114644-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120721114644-600x600.jpg
rename to content/wp-content/uploads/2012/07/20120721114644-600x600.jpg
diff --git a/files/wp-content/uploads/2012/07/20120721114644.jpg b/content/wp-content/uploads/2012/07/20120721114644.jpg
similarity index 100%
rename from files/wp-content/uploads/2012/07/20120721114644.jpg
rename to content/wp-content/uploads/2012/07/20120721114644.jpg
diff --git a/files/wp-content/uploads/2014/09/20140222094055-1038x576.jpg b/content/wp-content/uploads/2014/09/20140222094055-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140222094055-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140222094055-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140222094055-300x188.jpg b/content/wp-content/uploads/2014/09/20140222094055-300x188.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140222094055-300x188.jpg
rename to content/wp-content/uploads/2014/09/20140222094055-300x188.jpg
diff --git a/files/wp-content/uploads/2014/09/20140222094055-300x205.jpg b/content/wp-content/uploads/2014/09/20140222094055-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140222094055-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140222094055-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140222094055-672x372.jpg b/content/wp-content/uploads/2014/09/20140222094055-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140222094055-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140222094055-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140222094055-957x600.jpg b/content/wp-content/uploads/2014/09/20140222094055-957x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140222094055-957x600.jpg
rename to content/wp-content/uploads/2014/09/20140222094055-957x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140222094055.jpg b/content/wp-content/uploads/2014/09/20140222094055.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140222094055.jpg
rename to content/wp-content/uploads/2014/09/20140222094055.jpg
diff --git a/files/wp-content/uploads/2014/09/20140223185144-1038x576.jpg b/content/wp-content/uploads/2014/09/20140223185144-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140223185144-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140223185144-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140223185144-300x205.jpg b/content/wp-content/uploads/2014/09/20140223185144-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140223185144-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140223185144-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140223185144-300x300.jpg b/content/wp-content/uploads/2014/09/20140223185144-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140223185144-300x300.jpg
rename to content/wp-content/uploads/2014/09/20140223185144-300x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140223185144-600x600.jpg b/content/wp-content/uploads/2014/09/20140223185144-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140223185144-600x600.jpg
rename to content/wp-content/uploads/2014/09/20140223185144-600x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140223185144-672x372.jpg b/content/wp-content/uploads/2014/09/20140223185144-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140223185144-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140223185144-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140223185144.jpg b/content/wp-content/uploads/2014/09/20140223185144.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140223185144.jpg
rename to content/wp-content/uploads/2014/09/20140223185144.jpg
diff --git a/files/wp-content/uploads/2014/09/20140314174519-1038x576.jpg b/content/wp-content/uploads/2014/09/20140314174519-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140314174519-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140314174519-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140314174519-300x205.jpg b/content/wp-content/uploads/2014/09/20140314174519-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140314174519-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140314174519-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140314174519-300x226.jpg b/content/wp-content/uploads/2014/09/20140314174519-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140314174519-300x226.jpg
rename to content/wp-content/uploads/2014/09/20140314174519-300x226.jpg
diff --git a/files/wp-content/uploads/2014/09/20140314174519-672x372.jpg b/content/wp-content/uploads/2014/09/20140314174519-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140314174519-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140314174519-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140314174519-796x600.jpg b/content/wp-content/uploads/2014/09/20140314174519-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140314174519-796x600.jpg
rename to content/wp-content/uploads/2014/09/20140314174519-796x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140314174519.jpg b/content/wp-content/uploads/2014/09/20140314174519.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140314174519.jpg
rename to content/wp-content/uploads/2014/09/20140314174519.jpg
diff --git a/files/wp-content/uploads/2014/09/20140319073252-1038x576.jpg b/content/wp-content/uploads/2014/09/20140319073252-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140319073252-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140319073252-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140319073252-300x205.jpg b/content/wp-content/uploads/2014/09/20140319073252-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140319073252-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140319073252-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140319073252-300x226.jpg b/content/wp-content/uploads/2014/09/20140319073252-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140319073252-300x226.jpg
rename to content/wp-content/uploads/2014/09/20140319073252-300x226.jpg
diff --git a/files/wp-content/uploads/2014/09/20140319073252-672x372.jpg b/content/wp-content/uploads/2014/09/20140319073252-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140319073252-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140319073252-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140319073252-796x600.jpg b/content/wp-content/uploads/2014/09/20140319073252-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140319073252-796x600.jpg
rename to content/wp-content/uploads/2014/09/20140319073252-796x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140319073252.jpg b/content/wp-content/uploads/2014/09/20140319073252.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140319073252.jpg
rename to content/wp-content/uploads/2014/09/20140319073252.jpg
diff --git a/files/wp-content/uploads/2014/09/201403190732521-1038x576.jpg b/content/wp-content/uploads/2014/09/201403190732521-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403190732521-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201403190732521-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201403190732521-300x205.jpg b/content/wp-content/uploads/2014/09/201403190732521-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403190732521-300x205.jpg
rename to content/wp-content/uploads/2014/09/201403190732521-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201403190732521-300x226.jpg b/content/wp-content/uploads/2014/09/201403190732521-300x226.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403190732521-300x226.jpg
rename to content/wp-content/uploads/2014/09/201403190732521-300x226.jpg
diff --git a/files/wp-content/uploads/2014/09/201403190732521-672x372.jpg b/content/wp-content/uploads/2014/09/201403190732521-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403190732521-672x372.jpg
rename to content/wp-content/uploads/2014/09/201403190732521-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201403190732521-796x600.jpg b/content/wp-content/uploads/2014/09/201403190732521-796x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403190732521-796x600.jpg
rename to content/wp-content/uploads/2014/09/201403190732521-796x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201403190732521.jpg b/content/wp-content/uploads/2014/09/201403190732521.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403190732521.jpg
rename to content/wp-content/uploads/2014/09/201403190732521.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325073340-1038x576.jpg b/content/wp-content/uploads/2014/09/20140325073340-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325073340-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140325073340-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325073340-300x205.jpg b/content/wp-content/uploads/2014/09/20140325073340-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325073340-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140325073340-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325073340-300x300.jpg b/content/wp-content/uploads/2014/09/20140325073340-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325073340-300x300.jpg
rename to content/wp-content/uploads/2014/09/20140325073340-300x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325073340-600x600.jpg b/content/wp-content/uploads/2014/09/20140325073340-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325073340-600x600.jpg
rename to content/wp-content/uploads/2014/09/20140325073340-600x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325073340-672x372.jpg b/content/wp-content/uploads/2014/09/20140325073340-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325073340-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140325073340-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325073340.jpg b/content/wp-content/uploads/2014/09/20140325073340.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325073340.jpg
rename to content/wp-content/uploads/2014/09/20140325073340.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325111711-1038x576.jpg b/content/wp-content/uploads/2014/09/20140325111711-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325111711-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140325111711-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325111711-300x205.jpg b/content/wp-content/uploads/2014/09/20140325111711-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325111711-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140325111711-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325111711-300x300.jpg b/content/wp-content/uploads/2014/09/20140325111711-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325111711-300x300.jpg
rename to content/wp-content/uploads/2014/09/20140325111711-300x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325111711-600x600.jpg b/content/wp-content/uploads/2014/09/20140325111711-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325111711-600x600.jpg
rename to content/wp-content/uploads/2014/09/20140325111711-600x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325111711-672x372.jpg b/content/wp-content/uploads/2014/09/20140325111711-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325111711-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140325111711-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140325111711.jpg b/content/wp-content/uploads/2014/09/20140325111711.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140325111711.jpg
rename to content/wp-content/uploads/2014/09/20140325111711.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331115526-225x300.jpg b/content/wp-content/uploads/2014/09/20140331115526-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331115526-225x300.jpg
rename to content/wp-content/uploads/2014/09/20140331115526-225x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331115526-300x205.jpg b/content/wp-content/uploads/2014/09/20140331115526-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331115526-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140331115526-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331115526-450x600.jpg b/content/wp-content/uploads/2014/09/20140331115526-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331115526-450x600.jpg
rename to content/wp-content/uploads/2014/09/20140331115526-450x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331115526-672x372.jpg b/content/wp-content/uploads/2014/09/20140331115526-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331115526-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140331115526-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331115526-900x576.jpg b/content/wp-content/uploads/2014/09/20140331115526-900x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331115526-900x576.jpg
rename to content/wp-content/uploads/2014/09/20140331115526-900x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331115526.jpg b/content/wp-content/uploads/2014/09/20140331115526.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331115526.jpg
rename to content/wp-content/uploads/2014/09/20140331115526.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311155261-225x300.jpg b/content/wp-content/uploads/2014/09/201403311155261-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311155261-225x300.jpg
rename to content/wp-content/uploads/2014/09/201403311155261-225x300.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311155261-300x205.jpg b/content/wp-content/uploads/2014/09/201403311155261-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311155261-300x205.jpg
rename to content/wp-content/uploads/2014/09/201403311155261-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311155261-450x600.jpg b/content/wp-content/uploads/2014/09/201403311155261-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311155261-450x600.jpg
rename to content/wp-content/uploads/2014/09/201403311155261-450x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311155261-672x372.jpg b/content/wp-content/uploads/2014/09/201403311155261-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311155261-672x372.jpg
rename to content/wp-content/uploads/2014/09/201403311155261-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311155261-900x576.jpg b/content/wp-content/uploads/2014/09/201403311155261-900x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311155261-900x576.jpg
rename to content/wp-content/uploads/2014/09/201403311155261-900x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311155261.jpg b/content/wp-content/uploads/2014/09/201403311155261.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311155261.jpg
rename to content/wp-content/uploads/2014/09/201403311155261.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124000-1038x576.jpg b/content/wp-content/uploads/2014/09/20140331124000-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124000-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140331124000-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124000-300x205.jpg b/content/wp-content/uploads/2014/09/20140331124000-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124000-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140331124000-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124000-300x224.jpg b/content/wp-content/uploads/2014/09/20140331124000-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124000-300x224.jpg
rename to content/wp-content/uploads/2014/09/20140331124000-300x224.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124000-672x372.jpg b/content/wp-content/uploads/2014/09/20140331124000-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124000-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140331124000-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124000-801x600.jpg b/content/wp-content/uploads/2014/09/20140331124000-801x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124000-801x600.jpg
rename to content/wp-content/uploads/2014/09/20140331124000-801x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124000.jpg b/content/wp-content/uploads/2014/09/20140331124000.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124000.jpg
rename to content/wp-content/uploads/2014/09/20140331124000.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124111-1038x576.jpg b/content/wp-content/uploads/2014/09/20140331124111-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124111-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140331124111-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124111-300x205.jpg b/content/wp-content/uploads/2014/09/20140331124111-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124111-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140331124111-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124111-300x300.jpg b/content/wp-content/uploads/2014/09/20140331124111-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124111-300x300.jpg
rename to content/wp-content/uploads/2014/09/20140331124111-300x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124111-599x600.jpg b/content/wp-content/uploads/2014/09/20140331124111-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124111-599x600.jpg
rename to content/wp-content/uploads/2014/09/20140331124111-599x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124111-672x372.jpg b/content/wp-content/uploads/2014/09/20140331124111-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124111-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140331124111-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124111.jpg b/content/wp-content/uploads/2014/09/20140331124111.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124111.jpg
rename to content/wp-content/uploads/2014/09/20140331124111.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124850-225x300.jpg b/content/wp-content/uploads/2014/09/20140331124850-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124850-225x300.jpg
rename to content/wp-content/uploads/2014/09/20140331124850-225x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124850-300x205.jpg b/content/wp-content/uploads/2014/09/20140331124850-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124850-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140331124850-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124850-450x600.jpg b/content/wp-content/uploads/2014/09/20140331124850-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124850-450x600.jpg
rename to content/wp-content/uploads/2014/09/20140331124850-450x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124850-672x372.jpg b/content/wp-content/uploads/2014/09/20140331124850-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124850-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140331124850-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124850-900x576.jpg b/content/wp-content/uploads/2014/09/20140331124850-900x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124850-900x576.jpg
rename to content/wp-content/uploads/2014/09/20140331124850-900x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331124850.jpg b/content/wp-content/uploads/2014/09/20140331124850.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331124850.jpg
rename to content/wp-content/uploads/2014/09/20140331124850.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311248501-225x300.jpg b/content/wp-content/uploads/2014/09/201403311248501-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311248501-225x300.jpg
rename to content/wp-content/uploads/2014/09/201403311248501-225x300.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311248501-300x205.jpg b/content/wp-content/uploads/2014/09/201403311248501-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311248501-300x205.jpg
rename to content/wp-content/uploads/2014/09/201403311248501-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311248501-450x600.jpg b/content/wp-content/uploads/2014/09/201403311248501-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311248501-450x600.jpg
rename to content/wp-content/uploads/2014/09/201403311248501-450x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311248501-672x372.jpg b/content/wp-content/uploads/2014/09/201403311248501-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311248501-672x372.jpg
rename to content/wp-content/uploads/2014/09/201403311248501-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311248501-900x576.jpg b/content/wp-content/uploads/2014/09/201403311248501-900x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311248501-900x576.jpg
rename to content/wp-content/uploads/2014/09/201403311248501-900x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311248501.jpg b/content/wp-content/uploads/2014/09/201403311248501.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311248501.jpg
rename to content/wp-content/uploads/2014/09/201403311248501.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331160537-1038x576.jpg b/content/wp-content/uploads/2014/09/20140331160537-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331160537-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140331160537-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331160537-300x205.jpg b/content/wp-content/uploads/2014/09/20140331160537-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331160537-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140331160537-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331160537-300x300.jpg b/content/wp-content/uploads/2014/09/20140331160537-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331160537-300x300.jpg
rename to content/wp-content/uploads/2014/09/20140331160537-300x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331160537-599x600.jpg b/content/wp-content/uploads/2014/09/20140331160537-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331160537-599x600.jpg
rename to content/wp-content/uploads/2014/09/20140331160537-599x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331160537-672x372.jpg b/content/wp-content/uploads/2014/09/20140331160537-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331160537-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140331160537-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331160537.jpg b/content/wp-content/uploads/2014/09/20140331160537.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331160537.jpg
rename to content/wp-content/uploads/2014/09/20140331160537.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331161614-1038x576.jpg b/content/wp-content/uploads/2014/09/20140331161614-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331161614-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140331161614-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331161614-300x205.jpg b/content/wp-content/uploads/2014/09/20140331161614-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331161614-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140331161614-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331161614-300x225.jpg b/content/wp-content/uploads/2014/09/20140331161614-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331161614-300x225.jpg
rename to content/wp-content/uploads/2014/09/20140331161614-300x225.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331161614-672x372.jpg b/content/wp-content/uploads/2014/09/20140331161614-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331161614-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140331161614-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331161614-800x600.jpg b/content/wp-content/uploads/2014/09/20140331161614-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331161614-800x600.jpg
rename to content/wp-content/uploads/2014/09/20140331161614-800x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331161614.jpg b/content/wp-content/uploads/2014/09/20140331161614.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331161614.jpg
rename to content/wp-content/uploads/2014/09/20140331161614.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172852-1038x576.jpg b/content/wp-content/uploads/2014/09/20140331172852-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172852-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140331172852-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172852-300x188.jpg b/content/wp-content/uploads/2014/09/20140331172852-300x188.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172852-300x188.jpg
rename to content/wp-content/uploads/2014/09/20140331172852-300x188.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172852-300x205.jpg b/content/wp-content/uploads/2014/09/20140331172852-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172852-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140331172852-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172852-672x372.jpg b/content/wp-content/uploads/2014/09/20140331172852-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172852-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140331172852-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172852-957x600.jpg b/content/wp-content/uploads/2014/09/20140331172852-957x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172852-957x600.jpg
rename to content/wp-content/uploads/2014/09/20140331172852-957x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172852.jpg b/content/wp-content/uploads/2014/09/20140331172852.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172852.jpg
rename to content/wp-content/uploads/2014/09/20140331172852.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311728521-1038x576.jpg b/content/wp-content/uploads/2014/09/201403311728521-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311728521-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201403311728521-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311728521-300x188.jpg b/content/wp-content/uploads/2014/09/201403311728521-300x188.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311728521-300x188.jpg
rename to content/wp-content/uploads/2014/09/201403311728521-300x188.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311728521-300x205.jpg b/content/wp-content/uploads/2014/09/201403311728521-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311728521-300x205.jpg
rename to content/wp-content/uploads/2014/09/201403311728521-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311728521-672x372.jpg b/content/wp-content/uploads/2014/09/201403311728521-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311728521-672x372.jpg
rename to content/wp-content/uploads/2014/09/201403311728521-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311728521-957x600.jpg b/content/wp-content/uploads/2014/09/201403311728521-957x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311728521-957x600.jpg
rename to content/wp-content/uploads/2014/09/201403311728521-957x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201403311728521.jpg b/content/wp-content/uploads/2014/09/201403311728521.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201403311728521.jpg
rename to content/wp-content/uploads/2014/09/201403311728521.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172939-1038x576.jpg b/content/wp-content/uploads/2014/09/20140331172939-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172939-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140331172939-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172939-300x205.jpg b/content/wp-content/uploads/2014/09/20140331172939-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172939-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140331172939-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172939-300x300.jpg b/content/wp-content/uploads/2014/09/20140331172939-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172939-300x300.jpg
rename to content/wp-content/uploads/2014/09/20140331172939-300x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172939-599x600.jpg b/content/wp-content/uploads/2014/09/20140331172939-599x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172939-599x600.jpg
rename to content/wp-content/uploads/2014/09/20140331172939-599x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172939-672x372.jpg b/content/wp-content/uploads/2014/09/20140331172939-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172939-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140331172939-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140331172939.jpg b/content/wp-content/uploads/2014/09/20140331172939.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140331172939.jpg
rename to content/wp-content/uploads/2014/09/20140331172939.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607094949-1038x576.jpg b/content/wp-content/uploads/2014/09/20140607094949-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607094949-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140607094949-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607094949-300x205.jpg b/content/wp-content/uploads/2014/09/20140607094949-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607094949-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140607094949-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607094949-300x225.jpg b/content/wp-content/uploads/2014/09/20140607094949-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607094949-300x225.jpg
rename to content/wp-content/uploads/2014/09/20140607094949-300x225.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607094949-672x372.jpg b/content/wp-content/uploads/2014/09/20140607094949-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607094949-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140607094949-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607094949-800x600.jpg b/content/wp-content/uploads/2014/09/20140607094949-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607094949-800x600.jpg
rename to content/wp-content/uploads/2014/09/20140607094949-800x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607094949.jpg b/content/wp-content/uploads/2014/09/20140607094949.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607094949.jpg
rename to content/wp-content/uploads/2014/09/20140607094949.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607095037-1038x576.jpg b/content/wp-content/uploads/2014/09/20140607095037-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607095037-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140607095037-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607095037-300x205.jpg b/content/wp-content/uploads/2014/09/20140607095037-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607095037-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140607095037-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607095037-300x225.jpg b/content/wp-content/uploads/2014/09/20140607095037-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607095037-300x225.jpg
rename to content/wp-content/uploads/2014/09/20140607095037-300x225.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607095037-672x372.jpg b/content/wp-content/uploads/2014/09/20140607095037-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607095037-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140607095037-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607095037-800x600.jpg b/content/wp-content/uploads/2014/09/20140607095037-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607095037-800x600.jpg
rename to content/wp-content/uploads/2014/09/20140607095037-800x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607095037.jpg b/content/wp-content/uploads/2014/09/20140607095037.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607095037.jpg
rename to content/wp-content/uploads/2014/09/20140607095037.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950371-1038x576.jpg b/content/wp-content/uploads/2014/09/201406070950371-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950371-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201406070950371-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950371-300x205.jpg b/content/wp-content/uploads/2014/09/201406070950371-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950371-300x205.jpg
rename to content/wp-content/uploads/2014/09/201406070950371-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950371-300x225.jpg b/content/wp-content/uploads/2014/09/201406070950371-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950371-300x225.jpg
rename to content/wp-content/uploads/2014/09/201406070950371-300x225.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950371-672x372.jpg b/content/wp-content/uploads/2014/09/201406070950371-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950371-672x372.jpg
rename to content/wp-content/uploads/2014/09/201406070950371-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950371-800x600.jpg b/content/wp-content/uploads/2014/09/201406070950371-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950371-800x600.jpg
rename to content/wp-content/uploads/2014/09/201406070950371-800x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950371.jpg b/content/wp-content/uploads/2014/09/201406070950371.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950371.jpg
rename to content/wp-content/uploads/2014/09/201406070950371.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950372-1038x576.jpg b/content/wp-content/uploads/2014/09/201406070950372-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950372-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201406070950372-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950372-300x205.jpg b/content/wp-content/uploads/2014/09/201406070950372-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950372-300x205.jpg
rename to content/wp-content/uploads/2014/09/201406070950372-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950372-300x225.jpg b/content/wp-content/uploads/2014/09/201406070950372-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950372-300x225.jpg
rename to content/wp-content/uploads/2014/09/201406070950372-300x225.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950372-672x372.jpg b/content/wp-content/uploads/2014/09/201406070950372-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950372-672x372.jpg
rename to content/wp-content/uploads/2014/09/201406070950372-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950372-800x600.jpg b/content/wp-content/uploads/2014/09/201406070950372-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950372-800x600.jpg
rename to content/wp-content/uploads/2014/09/201406070950372-800x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201406070950372.jpg b/content/wp-content/uploads/2014/09/201406070950372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406070950372.jpg
rename to content/wp-content/uploads/2014/09/201406070950372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607232925-225x300.jpg b/content/wp-content/uploads/2014/09/20140607232925-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607232925-225x300.jpg
rename to content/wp-content/uploads/2014/09/20140607232925-225x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607232925-300x205.jpg b/content/wp-content/uploads/2014/09/20140607232925-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607232925-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140607232925-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607232925-450x600.jpg b/content/wp-content/uploads/2014/09/20140607232925-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607232925-450x600.jpg
rename to content/wp-content/uploads/2014/09/20140607232925-450x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607232925-672x372.jpg b/content/wp-content/uploads/2014/09/20140607232925-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607232925-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140607232925-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607232925-900x576.jpg b/content/wp-content/uploads/2014/09/20140607232925-900x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607232925-900x576.jpg
rename to content/wp-content/uploads/2014/09/20140607232925-900x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607232925.jpg b/content/wp-content/uploads/2014/09/20140607232925.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607232925.jpg
rename to content/wp-content/uploads/2014/09/20140607232925.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072329251-225x300.jpg b/content/wp-content/uploads/2014/09/201406072329251-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072329251-225x300.jpg
rename to content/wp-content/uploads/2014/09/201406072329251-225x300.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072329251-300x205.jpg b/content/wp-content/uploads/2014/09/201406072329251-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072329251-300x205.jpg
rename to content/wp-content/uploads/2014/09/201406072329251-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072329251-450x600.jpg b/content/wp-content/uploads/2014/09/201406072329251-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072329251-450x600.jpg
rename to content/wp-content/uploads/2014/09/201406072329251-450x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072329251-672x372.jpg b/content/wp-content/uploads/2014/09/201406072329251-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072329251-672x372.jpg
rename to content/wp-content/uploads/2014/09/201406072329251-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072329251-900x576.jpg b/content/wp-content/uploads/2014/09/201406072329251-900x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072329251-900x576.jpg
rename to content/wp-content/uploads/2014/09/201406072329251-900x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072329251.jpg b/content/wp-content/uploads/2014/09/201406072329251.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072329251.jpg
rename to content/wp-content/uploads/2014/09/201406072329251.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607234122-225x300.jpg b/content/wp-content/uploads/2014/09/20140607234122-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607234122-225x300.jpg
rename to content/wp-content/uploads/2014/09/20140607234122-225x300.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607234122-300x205.jpg b/content/wp-content/uploads/2014/09/20140607234122-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607234122-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140607234122-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607234122-450x600.jpg b/content/wp-content/uploads/2014/09/20140607234122-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607234122-450x600.jpg
rename to content/wp-content/uploads/2014/09/20140607234122-450x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607234122-672x372.jpg b/content/wp-content/uploads/2014/09/20140607234122-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607234122-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140607234122-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607234122-900x576.jpg b/content/wp-content/uploads/2014/09/20140607234122-900x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607234122-900x576.jpg
rename to content/wp-content/uploads/2014/09/20140607234122-900x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140607234122.jpg b/content/wp-content/uploads/2014/09/20140607234122.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140607234122.jpg
rename to content/wp-content/uploads/2014/09/20140607234122.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072341221-225x300.jpg b/content/wp-content/uploads/2014/09/201406072341221-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072341221-225x300.jpg
rename to content/wp-content/uploads/2014/09/201406072341221-225x300.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072341221-300x205.jpg b/content/wp-content/uploads/2014/09/201406072341221-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072341221-300x205.jpg
rename to content/wp-content/uploads/2014/09/201406072341221-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072341221-450x600.jpg b/content/wp-content/uploads/2014/09/201406072341221-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072341221-450x600.jpg
rename to content/wp-content/uploads/2014/09/201406072341221-450x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072341221-672x372.jpg b/content/wp-content/uploads/2014/09/201406072341221-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072341221-672x372.jpg
rename to content/wp-content/uploads/2014/09/201406072341221-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072341221-900x576.jpg b/content/wp-content/uploads/2014/09/201406072341221-900x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072341221-900x576.jpg
rename to content/wp-content/uploads/2014/09/201406072341221-900x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201406072341221.jpg b/content/wp-content/uploads/2014/09/201406072341221.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201406072341221.jpg
rename to content/wp-content/uploads/2014/09/201406072341221.jpg
diff --git a/files/wp-content/uploads/2014/09/20140719103647-1038x576.jpg b/content/wp-content/uploads/2014/09/20140719103647-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140719103647-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140719103647-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140719103647-300x205.jpg b/content/wp-content/uploads/2014/09/20140719103647-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140719103647-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140719103647-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140719103647-300x225.jpg b/content/wp-content/uploads/2014/09/20140719103647-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140719103647-300x225.jpg
rename to content/wp-content/uploads/2014/09/20140719103647-300x225.jpg
diff --git a/files/wp-content/uploads/2014/09/20140719103647-672x372.jpg b/content/wp-content/uploads/2014/09/20140719103647-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140719103647-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140719103647-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140719103647-800x600.jpg b/content/wp-content/uploads/2014/09/20140719103647-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140719103647-800x600.jpg
rename to content/wp-content/uploads/2014/09/20140719103647-800x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140719103647.jpg b/content/wp-content/uploads/2014/09/20140719103647.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140719103647.jpg
rename to content/wp-content/uploads/2014/09/20140719103647.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036471-1038x576.jpg b/content/wp-content/uploads/2014/09/201407191036471-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036471-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201407191036471-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036471-300x205.jpg b/content/wp-content/uploads/2014/09/201407191036471-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036471-300x205.jpg
rename to content/wp-content/uploads/2014/09/201407191036471-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036471-300x225.jpg b/content/wp-content/uploads/2014/09/201407191036471-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036471-300x225.jpg
rename to content/wp-content/uploads/2014/09/201407191036471-300x225.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036471-672x372.jpg b/content/wp-content/uploads/2014/09/201407191036471-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036471-672x372.jpg
rename to content/wp-content/uploads/2014/09/201407191036471-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036471-800x600.jpg b/content/wp-content/uploads/2014/09/201407191036471-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036471-800x600.jpg
rename to content/wp-content/uploads/2014/09/201407191036471-800x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036471.jpg b/content/wp-content/uploads/2014/09/201407191036471.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036471.jpg
rename to content/wp-content/uploads/2014/09/201407191036471.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036472-1038x576.jpg b/content/wp-content/uploads/2014/09/201407191036472-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036472-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201407191036472-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036472-300x205.jpg b/content/wp-content/uploads/2014/09/201407191036472-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036472-300x205.jpg
rename to content/wp-content/uploads/2014/09/201407191036472-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036472-300x225.jpg b/content/wp-content/uploads/2014/09/201407191036472-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036472-300x225.jpg
rename to content/wp-content/uploads/2014/09/201407191036472-300x225.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036472-672x372.jpg b/content/wp-content/uploads/2014/09/201407191036472-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036472-672x372.jpg
rename to content/wp-content/uploads/2014/09/201407191036472-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036472-800x600.jpg b/content/wp-content/uploads/2014/09/201407191036472-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036472-800x600.jpg
rename to content/wp-content/uploads/2014/09/201407191036472-800x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201407191036472.jpg b/content/wp-content/uploads/2014/09/201407191036472.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201407191036472.jpg
rename to content/wp-content/uploads/2014/09/201407191036472.jpg
diff --git a/files/wp-content/uploads/2014/09/20140828071138-1038x576.jpg b/content/wp-content/uploads/2014/09/20140828071138-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140828071138-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140828071138-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140828071138-300x168.jpg b/content/wp-content/uploads/2014/09/20140828071138-300x168.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140828071138-300x168.jpg
rename to content/wp-content/uploads/2014/09/20140828071138-300x168.jpg
diff --git a/files/wp-content/uploads/2014/09/20140828071138-300x205.jpg b/content/wp-content/uploads/2014/09/20140828071138-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140828071138-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140828071138-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140828071138-672x372.jpg b/content/wp-content/uploads/2014/09/20140828071138-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140828071138-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140828071138-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140828071138-980x551.jpg b/content/wp-content/uploads/2014/09/20140828071138-980x551.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140828071138-980x551.jpg
rename to content/wp-content/uploads/2014/09/20140828071138-980x551.jpg
diff --git a/files/wp-content/uploads/2014/09/20140828071138.jpg b/content/wp-content/uploads/2014/09/20140828071138.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140828071138.jpg
rename to content/wp-content/uploads/2014/09/20140828071138.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917070241-1038x576.jpg b/content/wp-content/uploads/2014/09/20140917070241-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917070241-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140917070241-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917070241-300x187.jpg b/content/wp-content/uploads/2014/09/20140917070241-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917070241-300x187.jpg
rename to content/wp-content/uploads/2014/09/20140917070241-300x187.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917070241-300x205.jpg b/content/wp-content/uploads/2014/09/20140917070241-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917070241-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140917070241-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917070241-672x372.jpg b/content/wp-content/uploads/2014/09/20140917070241-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917070241-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140917070241-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917070241-960x600.jpg b/content/wp-content/uploads/2014/09/20140917070241-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917070241-960x600.jpg
rename to content/wp-content/uploads/2014/09/20140917070241-960x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917070241.jpg b/content/wp-content/uploads/2014/09/20140917070241.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917070241.jpg
rename to content/wp-content/uploads/2014/09/20140917070241.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917162629-1038x576.jpg b/content/wp-content/uploads/2014/09/20140917162629-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917162629-1038x576.jpg
rename to content/wp-content/uploads/2014/09/20140917162629-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917162629-300x187.jpg b/content/wp-content/uploads/2014/09/20140917162629-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917162629-300x187.jpg
rename to content/wp-content/uploads/2014/09/20140917162629-300x187.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917162629-300x205.jpg b/content/wp-content/uploads/2014/09/20140917162629-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917162629-300x205.jpg
rename to content/wp-content/uploads/2014/09/20140917162629-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917162629-672x372.jpg b/content/wp-content/uploads/2014/09/20140917162629-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917162629-672x372.jpg
rename to content/wp-content/uploads/2014/09/20140917162629-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917162629-960x600.jpg b/content/wp-content/uploads/2014/09/20140917162629-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917162629-960x600.jpg
rename to content/wp-content/uploads/2014/09/20140917162629-960x600.jpg
diff --git a/files/wp-content/uploads/2014/09/20140917162629.jpg b/content/wp-content/uploads/2014/09/20140917162629.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/20140917162629.jpg
rename to content/wp-content/uploads/2014/09/20140917162629.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626291-1038x576.jpg b/content/wp-content/uploads/2014/09/201409171626291-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626291-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201409171626291-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626291-300x187.jpg b/content/wp-content/uploads/2014/09/201409171626291-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626291-300x187.jpg
rename to content/wp-content/uploads/2014/09/201409171626291-300x187.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626291-300x205.jpg b/content/wp-content/uploads/2014/09/201409171626291-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626291-300x205.jpg
rename to content/wp-content/uploads/2014/09/201409171626291-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626291-672x372.jpg b/content/wp-content/uploads/2014/09/201409171626291-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626291-672x372.jpg
rename to content/wp-content/uploads/2014/09/201409171626291-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626291-960x600.jpg b/content/wp-content/uploads/2014/09/201409171626291-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626291-960x600.jpg
rename to content/wp-content/uploads/2014/09/201409171626291-960x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626291.jpg b/content/wp-content/uploads/2014/09/201409171626291.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626291.jpg
rename to content/wp-content/uploads/2014/09/201409171626291.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626292-1038x576.jpg b/content/wp-content/uploads/2014/09/201409171626292-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626292-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201409171626292-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626292-300x187.jpg b/content/wp-content/uploads/2014/09/201409171626292-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626292-300x187.jpg
rename to content/wp-content/uploads/2014/09/201409171626292-300x187.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626292-300x205.jpg b/content/wp-content/uploads/2014/09/201409171626292-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626292-300x205.jpg
rename to content/wp-content/uploads/2014/09/201409171626292-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626292-672x372.jpg b/content/wp-content/uploads/2014/09/201409171626292-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626292-672x372.jpg
rename to content/wp-content/uploads/2014/09/201409171626292-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626292-960x600.jpg b/content/wp-content/uploads/2014/09/201409171626292-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626292-960x600.jpg
rename to content/wp-content/uploads/2014/09/201409171626292-960x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626292.jpg b/content/wp-content/uploads/2014/09/201409171626292.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626292.jpg
rename to content/wp-content/uploads/2014/09/201409171626292.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626293-1038x576.jpg b/content/wp-content/uploads/2014/09/201409171626293-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626293-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201409171626293-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626293-300x187.jpg b/content/wp-content/uploads/2014/09/201409171626293-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626293-300x187.jpg
rename to content/wp-content/uploads/2014/09/201409171626293-300x187.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626293-300x205.jpg b/content/wp-content/uploads/2014/09/201409171626293-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626293-300x205.jpg
rename to content/wp-content/uploads/2014/09/201409171626293-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626293-672x372.jpg b/content/wp-content/uploads/2014/09/201409171626293-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626293-672x372.jpg
rename to content/wp-content/uploads/2014/09/201409171626293-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626293-960x600.jpg b/content/wp-content/uploads/2014/09/201409171626293-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626293-960x600.jpg
rename to content/wp-content/uploads/2014/09/201409171626293-960x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626293.jpg b/content/wp-content/uploads/2014/09/201409171626293.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626293.jpg
rename to content/wp-content/uploads/2014/09/201409171626293.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626294-1038x576.jpg b/content/wp-content/uploads/2014/09/201409171626294-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626294-1038x576.jpg
rename to content/wp-content/uploads/2014/09/201409171626294-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626294-300x187.jpg b/content/wp-content/uploads/2014/09/201409171626294-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626294-300x187.jpg
rename to content/wp-content/uploads/2014/09/201409171626294-300x187.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626294-300x205.jpg b/content/wp-content/uploads/2014/09/201409171626294-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626294-300x205.jpg
rename to content/wp-content/uploads/2014/09/201409171626294-300x205.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626294-672x372.jpg b/content/wp-content/uploads/2014/09/201409171626294-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626294-672x372.jpg
rename to content/wp-content/uploads/2014/09/201409171626294-672x372.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626294-960x600.jpg b/content/wp-content/uploads/2014/09/201409171626294-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626294-960x600.jpg
rename to content/wp-content/uploads/2014/09/201409171626294-960x600.jpg
diff --git a/files/wp-content/uploads/2014/09/201409171626294.jpg b/content/wp-content/uploads/2014/09/201409171626294.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/09/201409171626294.jpg
rename to content/wp-content/uploads/2014/09/201409171626294.jpg
diff --git a/files/wp-content/uploads/2014/10/20140903073304-1038x576.jpg b/content/wp-content/uploads/2014/10/20140903073304-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140903073304-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20140903073304-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20140903073304-300x205.jpg b/content/wp-content/uploads/2014/10/20140903073304-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140903073304-300x205.jpg
rename to content/wp-content/uploads/2014/10/20140903073304-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20140903073304-300x225.jpg b/content/wp-content/uploads/2014/10/20140903073304-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140903073304-300x225.jpg
rename to content/wp-content/uploads/2014/10/20140903073304-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/20140903073304-672x372.jpg b/content/wp-content/uploads/2014/10/20140903073304-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140903073304-672x372.jpg
rename to content/wp-content/uploads/2014/10/20140903073304-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20140903073304-800x600.jpg b/content/wp-content/uploads/2014/10/20140903073304-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140903073304-800x600.jpg
rename to content/wp-content/uploads/2014/10/20140903073304-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20140903073304.jpg b/content/wp-content/uploads/2014/10/20140903073304.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140903073304.jpg
rename to content/wp-content/uploads/2014/10/20140903073304.jpg
diff --git a/files/wp-content/uploads/2014/10/20140908073838-1038x576.jpg b/content/wp-content/uploads/2014/10/20140908073838-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140908073838-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20140908073838-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20140908073838-300x205.jpg b/content/wp-content/uploads/2014/10/20140908073838-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140908073838-300x205.jpg
rename to content/wp-content/uploads/2014/10/20140908073838-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20140908073838-300x225.jpg b/content/wp-content/uploads/2014/10/20140908073838-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140908073838-300x225.jpg
rename to content/wp-content/uploads/2014/10/20140908073838-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/20140908073838-672x372.jpg b/content/wp-content/uploads/2014/10/20140908073838-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140908073838-672x372.jpg
rename to content/wp-content/uploads/2014/10/20140908073838-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20140908073838-800x600.jpg b/content/wp-content/uploads/2014/10/20140908073838-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140908073838-800x600.jpg
rename to content/wp-content/uploads/2014/10/20140908073838-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20140908073838.jpg b/content/wp-content/uploads/2014/10/20140908073838.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140908073838.jpg
rename to content/wp-content/uploads/2014/10/20140908073838.jpg
diff --git a/files/wp-content/uploads/2014/10/20140917162629-1038x576.jpg b/content/wp-content/uploads/2014/10/20140917162629-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140917162629-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20140917162629-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20140917162629-300x187.jpg b/content/wp-content/uploads/2014/10/20140917162629-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140917162629-300x187.jpg
rename to content/wp-content/uploads/2014/10/20140917162629-300x187.jpg
diff --git a/files/wp-content/uploads/2014/10/20140917162629-300x205.jpg b/content/wp-content/uploads/2014/10/20140917162629-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140917162629-300x205.jpg
rename to content/wp-content/uploads/2014/10/20140917162629-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20140917162629-672x372.jpg b/content/wp-content/uploads/2014/10/20140917162629-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140917162629-672x372.jpg
rename to content/wp-content/uploads/2014/10/20140917162629-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20140917162629-960x600.jpg b/content/wp-content/uploads/2014/10/20140917162629-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140917162629-960x600.jpg
rename to content/wp-content/uploads/2014/10/20140917162629-960x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20140917162629.jpg b/content/wp-content/uploads/2014/10/20140917162629.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140917162629.jpg
rename to content/wp-content/uploads/2014/10/20140917162629.jpg
diff --git a/files/wp-content/uploads/2014/10/20140919160554-1038x576.jpg b/content/wp-content/uploads/2014/10/20140919160554-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140919160554-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20140919160554-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20140919160554-300x205.jpg b/content/wp-content/uploads/2014/10/20140919160554-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140919160554-300x205.jpg
rename to content/wp-content/uploads/2014/10/20140919160554-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20140919160554-300x225.jpg b/content/wp-content/uploads/2014/10/20140919160554-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140919160554-300x225.jpg
rename to content/wp-content/uploads/2014/10/20140919160554-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/20140919160554-672x372.jpg b/content/wp-content/uploads/2014/10/20140919160554-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140919160554-672x372.jpg
rename to content/wp-content/uploads/2014/10/20140919160554-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20140919160554-800x600.jpg b/content/wp-content/uploads/2014/10/20140919160554-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140919160554-800x600.jpg
rename to content/wp-content/uploads/2014/10/20140919160554-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20140919160554.jpg b/content/wp-content/uploads/2014/10/20140919160554.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140919160554.jpg
rename to content/wp-content/uploads/2014/10/20140919160554.jpg
diff --git a/files/wp-content/uploads/2014/10/20140927123421-1038x576.jpg b/content/wp-content/uploads/2014/10/20140927123421-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140927123421-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20140927123421-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20140927123421-300x205.jpg b/content/wp-content/uploads/2014/10/20140927123421-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140927123421-300x205.jpg
rename to content/wp-content/uploads/2014/10/20140927123421-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20140927123421-300x225.jpg b/content/wp-content/uploads/2014/10/20140927123421-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140927123421-300x225.jpg
rename to content/wp-content/uploads/2014/10/20140927123421-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/20140927123421-672x372.jpg b/content/wp-content/uploads/2014/10/20140927123421-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140927123421-672x372.jpg
rename to content/wp-content/uploads/2014/10/20140927123421-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20140927123421-800x600.jpg b/content/wp-content/uploads/2014/10/20140927123421-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140927123421-800x600.jpg
rename to content/wp-content/uploads/2014/10/20140927123421-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20140927123421.jpg b/content/wp-content/uploads/2014/10/20140927123421.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140927123421.jpg
rename to content/wp-content/uploads/2014/10/20140927123421.jpg
diff --git a/files/wp-content/uploads/2014/10/20140929071705-1038x576.jpg b/content/wp-content/uploads/2014/10/20140929071705-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140929071705-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20140929071705-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20140929071705-300x187.jpg b/content/wp-content/uploads/2014/10/20140929071705-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140929071705-300x187.jpg
rename to content/wp-content/uploads/2014/10/20140929071705-300x187.jpg
diff --git a/files/wp-content/uploads/2014/10/20140929071705-300x205.jpg b/content/wp-content/uploads/2014/10/20140929071705-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140929071705-300x205.jpg
rename to content/wp-content/uploads/2014/10/20140929071705-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20140929071705-672x372.jpg b/content/wp-content/uploads/2014/10/20140929071705-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140929071705-672x372.jpg
rename to content/wp-content/uploads/2014/10/20140929071705-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20140929071705-961x600.jpg b/content/wp-content/uploads/2014/10/20140929071705-961x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140929071705-961x600.jpg
rename to content/wp-content/uploads/2014/10/20140929071705-961x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20140929071705.jpg b/content/wp-content/uploads/2014/10/20140929071705.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20140929071705.jpg
rename to content/wp-content/uploads/2014/10/20140929071705.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124358-1038x576.jpg b/content/wp-content/uploads/2014/10/20141004124358-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124358-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20141004124358-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124358-300x205.jpg b/content/wp-content/uploads/2014/10/20141004124358-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124358-300x205.jpg
rename to content/wp-content/uploads/2014/10/20141004124358-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124358-300x225.jpg b/content/wp-content/uploads/2014/10/20141004124358-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124358-300x225.jpg
rename to content/wp-content/uploads/2014/10/20141004124358-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124358-672x372.jpg b/content/wp-content/uploads/2014/10/20141004124358-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124358-672x372.jpg
rename to content/wp-content/uploads/2014/10/20141004124358-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124358-800x600.jpg b/content/wp-content/uploads/2014/10/20141004124358-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124358-800x600.jpg
rename to content/wp-content/uploads/2014/10/20141004124358-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124358.jpg b/content/wp-content/uploads/2014/10/20141004124358.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124358.jpg
rename to content/wp-content/uploads/2014/10/20141004124358.jpg
diff --git a/files/wp-content/uploads/2014/10/201410041243581-1038x576.jpg b/content/wp-content/uploads/2014/10/201410041243581-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410041243581-1038x576.jpg
rename to content/wp-content/uploads/2014/10/201410041243581-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/201410041243581-300x205.jpg b/content/wp-content/uploads/2014/10/201410041243581-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410041243581-300x205.jpg
rename to content/wp-content/uploads/2014/10/201410041243581-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/201410041243581-300x225.jpg b/content/wp-content/uploads/2014/10/201410041243581-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410041243581-300x225.jpg
rename to content/wp-content/uploads/2014/10/201410041243581-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/201410041243581-672x372.jpg b/content/wp-content/uploads/2014/10/201410041243581-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410041243581-672x372.jpg
rename to content/wp-content/uploads/2014/10/201410041243581-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/201410041243581-800x600.jpg b/content/wp-content/uploads/2014/10/201410041243581-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410041243581-800x600.jpg
rename to content/wp-content/uploads/2014/10/201410041243581-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/201410041243581.jpg b/content/wp-content/uploads/2014/10/201410041243581.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410041243581.jpg
rename to content/wp-content/uploads/2014/10/201410041243581.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124521-1038x576.jpg b/content/wp-content/uploads/2014/10/20141004124521-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124521-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20141004124521-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124521-300x187.jpg b/content/wp-content/uploads/2014/10/20141004124521-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124521-300x187.jpg
rename to content/wp-content/uploads/2014/10/20141004124521-300x187.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124521-300x205.jpg b/content/wp-content/uploads/2014/10/20141004124521-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124521-300x205.jpg
rename to content/wp-content/uploads/2014/10/20141004124521-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124521-672x372.jpg b/content/wp-content/uploads/2014/10/20141004124521-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124521-672x372.jpg
rename to content/wp-content/uploads/2014/10/20141004124521-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124521-960x600.jpg b/content/wp-content/uploads/2014/10/20141004124521-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124521-960x600.jpg
rename to content/wp-content/uploads/2014/10/20141004124521-960x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20141004124521.jpg b/content/wp-content/uploads/2014/10/20141004124521.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141004124521.jpg
rename to content/wp-content/uploads/2014/10/20141004124521.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005121521-1038x576.jpg b/content/wp-content/uploads/2014/10/20141005121521-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005121521-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20141005121521-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005121521-300x205.jpg b/content/wp-content/uploads/2014/10/20141005121521-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005121521-300x205.jpg
rename to content/wp-content/uploads/2014/10/20141005121521-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005121521-300x225.jpg b/content/wp-content/uploads/2014/10/20141005121521-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005121521-300x225.jpg
rename to content/wp-content/uploads/2014/10/20141005121521-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005121521-672x372.jpg b/content/wp-content/uploads/2014/10/20141005121521-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005121521-672x372.jpg
rename to content/wp-content/uploads/2014/10/20141005121521-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005121521-800x600.jpg b/content/wp-content/uploads/2014/10/20141005121521-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005121521-800x600.jpg
rename to content/wp-content/uploads/2014/10/20141005121521-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005121521.jpg b/content/wp-content/uploads/2014/10/20141005121521.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005121521.jpg
rename to content/wp-content/uploads/2014/10/20141005121521.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122148-1038x576.jpg b/content/wp-content/uploads/2014/10/20141005122148-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122148-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20141005122148-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122148-300x205.jpg b/content/wp-content/uploads/2014/10/20141005122148-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122148-300x205.jpg
rename to content/wp-content/uploads/2014/10/20141005122148-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122148-300x300.jpg b/content/wp-content/uploads/2014/10/20141005122148-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122148-300x300.jpg
rename to content/wp-content/uploads/2014/10/20141005122148-300x300.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122148-600x600.jpg b/content/wp-content/uploads/2014/10/20141005122148-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122148-600x600.jpg
rename to content/wp-content/uploads/2014/10/20141005122148-600x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122148-672x372.jpg b/content/wp-content/uploads/2014/10/20141005122148-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122148-672x372.jpg
rename to content/wp-content/uploads/2014/10/20141005122148-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122148.jpg b/content/wp-content/uploads/2014/10/20141005122148.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122148.jpg
rename to content/wp-content/uploads/2014/10/20141005122148.jpg
diff --git a/files/wp-content/uploads/2014/10/201410051221481-1038x576.jpg b/content/wp-content/uploads/2014/10/201410051221481-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410051221481-1038x576.jpg
rename to content/wp-content/uploads/2014/10/201410051221481-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/201410051221481-300x205.jpg b/content/wp-content/uploads/2014/10/201410051221481-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410051221481-300x205.jpg
rename to content/wp-content/uploads/2014/10/201410051221481-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/201410051221481-300x300.jpg b/content/wp-content/uploads/2014/10/201410051221481-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410051221481-300x300.jpg
rename to content/wp-content/uploads/2014/10/201410051221481-300x300.jpg
diff --git a/files/wp-content/uploads/2014/10/201410051221481-600x600.jpg b/content/wp-content/uploads/2014/10/201410051221481-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410051221481-600x600.jpg
rename to content/wp-content/uploads/2014/10/201410051221481-600x600.jpg
diff --git a/files/wp-content/uploads/2014/10/201410051221481-672x372.jpg b/content/wp-content/uploads/2014/10/201410051221481-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410051221481-672x372.jpg
rename to content/wp-content/uploads/2014/10/201410051221481-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/201410051221481.jpg b/content/wp-content/uploads/2014/10/201410051221481.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/201410051221481.jpg
rename to content/wp-content/uploads/2014/10/201410051221481.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122644-1038x576.jpg b/content/wp-content/uploads/2014/10/20141005122644-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122644-1038x576.jpg
rename to content/wp-content/uploads/2014/10/20141005122644-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122644-300x205.jpg b/content/wp-content/uploads/2014/10/20141005122644-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122644-300x205.jpg
rename to content/wp-content/uploads/2014/10/20141005122644-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122644-300x225.jpg b/content/wp-content/uploads/2014/10/20141005122644-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122644-300x225.jpg
rename to content/wp-content/uploads/2014/10/20141005122644-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122644-672x372.jpg b/content/wp-content/uploads/2014/10/20141005122644-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122644-672x372.jpg
rename to content/wp-content/uploads/2014/10/20141005122644-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122644-800x600.jpg b/content/wp-content/uploads/2014/10/20141005122644-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122644-800x600.jpg
rename to content/wp-content/uploads/2014/10/20141005122644-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/20141005122644.jpg b/content/wp-content/uploads/2014/10/20141005122644.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/20141005122644.jpg
rename to content/wp-content/uploads/2014/10/20141005122644.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210805-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210805-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210805-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210805-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210805-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210805-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210805-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210805-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210805-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210805-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210805-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210805-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210805-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210805-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210805-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210805-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210805-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210805-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210805-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210805-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210805.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210805.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210805.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210805.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210821-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210821-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210821-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210821-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210821-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210821-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210821-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210821-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210821-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210821-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210821-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210821-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210821-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210821-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210821-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210821-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210821-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210821-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210821-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210821-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_210821.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_210821.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_210821.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_210821.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_2108211-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_2108211-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_2108211-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_2108211-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_2108211-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_2108211-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_2108211-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_2108211-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_2108211-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_2108211-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_2108211-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_2108211-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_2108211-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_2108211-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_2108211-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_2108211-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_2108211-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_2108211-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_2108211-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_2108211-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140927_2108211.jpg b/content/wp-content/uploads/2014/10/IMG_20140927_2108211.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140927_2108211.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140927_2108211.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_171825-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_171825-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_171825-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_171825-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_171825-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_171825-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_171825-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_171825-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_171825-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_171825-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_171825-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_171825-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_171825-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_171825-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_171825-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_171825-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_171825-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_171825-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_171825-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_171825-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_171825.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_171825.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_171825.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_171825.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174355-225x300.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174355-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174355-225x300.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174355-225x300.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174355-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174355-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174355-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174355-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174355-450x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174355-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174355-450x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174355-450x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174355-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174355-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174355-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174355-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174355-900x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174355-900x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174355-900x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174355-900x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174355.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174355.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174355.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174355.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174648-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174648-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174648-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174648-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174648-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174648-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174648-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174648-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174648-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174648-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174648-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174648-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174648-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174648-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174648-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174648-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174648-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174648-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174648-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174648-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_174648.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_174648.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_174648.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_174648.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746481-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746481-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746481-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746481-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746481-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746481-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746481-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746481-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746481-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746481-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746481-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746481-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746481-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746481-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746481-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746481-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746481-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746481-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746481-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746481-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746481.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746481.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746481.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746481.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746482-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746482-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746482-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746482-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746482-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746482-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746482-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746482-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746482-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746482-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746482-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746482-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746482-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746482-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746482-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746482-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746482-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746482-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746482-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746482-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746482.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746482.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746482.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746482.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746483-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746483-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746483-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746483-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746483-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746483-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746483-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746483-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746483-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746483-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746483-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746483-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746483-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746483-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746483-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746483-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746483-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746483-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746483-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746483-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746483.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746483.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746483.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746483.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746484-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746484-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746484-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746484-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746484-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746484-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746484-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746484-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746484-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746484-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746484-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746484-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746484-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746484-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746484-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746484-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746484-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746484-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746484-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746484-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20140928_1746484.jpg b/content/wp-content/uploads/2014/10/IMG_20140928_1746484.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20140928_1746484.jpg
rename to content/wp-content/uploads/2014/10/IMG_20140928_1746484.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_133620-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_133620-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_133620-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_133620-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_133620-300x191.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_133620-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_133620-300x191.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_133620-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_133620-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_133620-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_133620-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_133620-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_133620-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_133620-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_133620-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_133620-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_133620-941x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_133620-941x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_133620-941x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_133620-941x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_133620.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_133620.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_133620.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_133620.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336201-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336201-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336201-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336201-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336201-300x191.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336201-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336201-300x191.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336201-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336201-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336201-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336201-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336201-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336201-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336201-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336201-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336201-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336201-941x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336201-941x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336201-941x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336201-941x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336201.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336201.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336201.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336201.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336202-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336202-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336202-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336202-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336202-300x191.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336202-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336202-300x191.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336202-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336202-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336202-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336202-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336202-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336202-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336202-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336202-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336202-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336202-941x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336202-941x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336202-941x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336202-941x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336202.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336202.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336202.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336202.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336203-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336203-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336203-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336203-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336203-300x191.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336203-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336203-300x191.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336203-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336203-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336203-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336203-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336203-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336203-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336203-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336203-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336203-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336203-941x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336203-941x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336203-941x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336203-941x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141004_1336203.jpg b/content/wp-content/uploads/2014/10/IMG_20141004_1336203.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141004_1336203.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141004_1336203.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141007_160625-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141007_160625-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141007_160625-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141007_160625-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141007_160625-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141007_160625-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141007_160625-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141007_160625-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141007_160625-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20141007_160625-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141007_160625-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141007_160625-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141007_160625-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141007_160625-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141007_160625-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141007_160625-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141007_160625-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141007_160625-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141007_160625-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141007_160625-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141007_160625.jpg b/content/wp-content/uploads/2014/10/IMG_20141007_160625.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141007_160625.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141007_160625.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_204736-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_204736-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_204736-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_204736-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_204736-300x191.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_204736-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_204736-300x191.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_204736-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_204736-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_204736-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_204736-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_204736-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_204736-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_204736-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_204736-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_204736-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_204736-939x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_204736-939x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_204736-939x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_204736-939x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_204736.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_204736.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_204736.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_204736.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_2047361-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_2047361-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_2047361-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_2047361-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_2047361-300x191.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_2047361-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_2047361-300x191.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_2047361-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_2047361-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_2047361-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_2047361-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_2047361-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_2047361-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_2047361-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_2047361-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_2047361-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_2047361-939x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_2047361-939x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_2047361-939x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_2047361-939x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141020_2047361.jpg b/content/wp-content/uploads/2014/10/IMG_20141020_2047361.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141020_2047361.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141020_2047361.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141022_131600-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141022_131600-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141022_131600-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141022_131600-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141022_131600-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141022_131600-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141022_131600-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141022_131600-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141022_131600-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20141022_131600-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141022_131600-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141022_131600-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141022_131600-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141022_131600-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141022_131600-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141022_131600-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141022_131600-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141022_131600-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141022_131600-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141022_131600-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141022_131600.jpg b/content/wp-content/uploads/2014/10/IMG_20141022_131600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141022_131600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141022_131600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170245-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170245-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170245-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170245-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170245-300x187.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170245-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170245-300x187.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170245-300x187.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170245-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170245-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170245-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170245-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170245-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170245-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170245-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170245-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170245-958x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170245-958x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170245-958x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170245-958x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170245.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170245.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170245.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170245.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170425-187x300.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170425-187x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170425-187x300.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170425-187x300.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170425-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170425-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170425-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170425-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170425-375x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170425-375x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170425-375x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170425-375x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170425-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170425-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170425-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170425-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170425-751x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170425-751x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170425-751x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170425-751x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_170425.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_170425.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_170425.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_170425.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_171528-1038x576.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_171528-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_171528-1038x576.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_171528-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_171528-300x205.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_171528-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_171528-300x205.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_171528-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_171528-300x225.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_171528-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_171528-300x225.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_171528-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_171528-672x372.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_171528-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_171528-672x372.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_171528-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_171528-800x600.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_171528-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_171528-800x600.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_171528-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/IMG_20141026_171528.jpg b/content/wp-content/uploads/2014/10/IMG_20141026_171528.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/IMG_20141026_171528.jpg
rename to content/wp-content/uploads/2014/10/IMG_20141026_171528.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-1038x576.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-1038x576.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-300x205.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-300x205.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-300x225.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-300x225.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-672x372.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-672x372.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-800x600.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_174648-800x600.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_174648-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_174648.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_174648.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_174648.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_174648.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-1038x576.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-1038x576.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-300x205.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-300x205.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-300x225.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-300x225.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-672x372.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-672x372.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-800x600.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-800x600.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20140928_1746481.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20140928_1746481.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-1038x576.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-1038x576.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-300x191.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-300x191.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-300x205.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-300x205.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-672x372.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-672x372.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-941x600.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-941x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_133620-941x600.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_133620-941x600.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_133620.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_133620.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_133620.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_133620.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-1038x576.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-1038x576.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-300x191.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-300x191.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-300x205.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-300x205.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-672x372.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-672x372.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-941x600.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-941x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-941x600.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201-941x600.jpg
diff --git a/files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201.jpg b/content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Z-IMG_20141004_1336201.jpg
rename to content/wp-content/uploads/2014/10/Z-IMG_20141004_1336201.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-1038x576.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-1038x576.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-300x205.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-300x205.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-300x225.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-300x225.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-672x372.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-672x372.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-800x600.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-800x600.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20140928_174648.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20140928_174648.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-1038x576.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-1038x576.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-300x191.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-300x191.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-300x205.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-300x205.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-672x372.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-672x372.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-941x600.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-941x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-941x600.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620-941x600.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620.jpg b/content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-IMG_20141004_133620.jpg
rename to content/wp-content/uploads/2014/10/Zz-IMG_20141004_133620.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-1038x576.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-1038x576.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-300x205.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-300x205.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-300x225.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-300x225.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-300x225.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-672x372.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-672x372.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-800x600.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-800x600.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648-800x600.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20140928_174648.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-1038x576.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-1038x576.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-300x191.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-300x191.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-300x191.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-300x191.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-300x205.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-300x205.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-300x205.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-672x372.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-672x372.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-672x372.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-941x600.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-941x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-941x600.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620-941x600.jpg
diff --git a/files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620.jpg b/content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620.jpg
rename to content/wp-content/uploads/2014/10/Zz-Z-IMG_20141004_133620.jpg
diff --git a/files/wp-content/uploads/2014/11/20130109074520-1038x576.jpg b/content/wp-content/uploads/2014/11/20130109074520-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130109074520-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20130109074520-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20130109074520-300x205.jpg b/content/wp-content/uploads/2014/11/20130109074520-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130109074520-300x205.jpg
rename to content/wp-content/uploads/2014/11/20130109074520-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20130109074520-300x225.jpg b/content/wp-content/uploads/2014/11/20130109074520-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130109074520-300x225.jpg
rename to content/wp-content/uploads/2014/11/20130109074520-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20130109074520-672x372.jpg b/content/wp-content/uploads/2014/11/20130109074520-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130109074520-672x372.jpg
rename to content/wp-content/uploads/2014/11/20130109074520-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20130109074520-798x600.jpg b/content/wp-content/uploads/2014/11/20130109074520-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130109074520-798x600.jpg
rename to content/wp-content/uploads/2014/11/20130109074520-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20130109074520.jpg b/content/wp-content/uploads/2014/11/20130109074520.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130109074520.jpg
rename to content/wp-content/uploads/2014/11/20130109074520.jpg
diff --git a/files/wp-content/uploads/2014/11/20130110135644-1038x576.jpg b/content/wp-content/uploads/2014/11/20130110135644-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130110135644-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20130110135644-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20130110135644-300x205.jpg b/content/wp-content/uploads/2014/11/20130110135644-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130110135644-300x205.jpg
rename to content/wp-content/uploads/2014/11/20130110135644-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20130110135644-300x300.jpg b/content/wp-content/uploads/2014/11/20130110135644-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130110135644-300x300.jpg
rename to content/wp-content/uploads/2014/11/20130110135644-300x300.jpg
diff --git a/files/wp-content/uploads/2014/11/20130110135644-600x600.jpg b/content/wp-content/uploads/2014/11/20130110135644-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130110135644-600x600.jpg
rename to content/wp-content/uploads/2014/11/20130110135644-600x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20130110135644-672x372.jpg b/content/wp-content/uploads/2014/11/20130110135644-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130110135644-672x372.jpg
rename to content/wp-content/uploads/2014/11/20130110135644-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20130110135644.jpg b/content/wp-content/uploads/2014/11/20130110135644.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130110135644.jpg
rename to content/wp-content/uploads/2014/11/20130110135644.jpg
diff --git a/files/wp-content/uploads/2014/11/20130111081301-1038x576.jpg b/content/wp-content/uploads/2014/11/20130111081301-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130111081301-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20130111081301-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20130111081301-300x199.jpg b/content/wp-content/uploads/2014/11/20130111081301-300x199.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130111081301-300x199.jpg
rename to content/wp-content/uploads/2014/11/20130111081301-300x199.jpg
diff --git a/files/wp-content/uploads/2014/11/20130111081301-300x205.jpg b/content/wp-content/uploads/2014/11/20130111081301-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130111081301-300x205.jpg
rename to content/wp-content/uploads/2014/11/20130111081301-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20130111081301-672x372.jpg b/content/wp-content/uploads/2014/11/20130111081301-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130111081301-672x372.jpg
rename to content/wp-content/uploads/2014/11/20130111081301-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20130111081301-900x600.jpg b/content/wp-content/uploads/2014/11/20130111081301-900x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130111081301-900x600.jpg
rename to content/wp-content/uploads/2014/11/20130111081301-900x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20130111081301.jpg b/content/wp-content/uploads/2014/11/20130111081301.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130111081301.jpg
rename to content/wp-content/uploads/2014/11/20130111081301.jpg
diff --git a/files/wp-content/uploads/2014/11/20130120103459-1038x576.jpg b/content/wp-content/uploads/2014/11/20130120103459-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130120103459-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20130120103459-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20130120103459-225x300.jpg b/content/wp-content/uploads/2014/11/20130120103459-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130120103459-225x300.jpg
rename to content/wp-content/uploads/2014/11/20130120103459-225x300.jpg
diff --git a/files/wp-content/uploads/2014/11/20130120103459-300x205.jpg b/content/wp-content/uploads/2014/11/20130120103459-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130120103459-300x205.jpg
rename to content/wp-content/uploads/2014/11/20130120103459-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20130120103459-450x600.jpg b/content/wp-content/uploads/2014/11/20130120103459-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130120103459-450x600.jpg
rename to content/wp-content/uploads/2014/11/20130120103459-450x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20130120103459-672x372.jpg b/content/wp-content/uploads/2014/11/20130120103459-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130120103459-672x372.jpg
rename to content/wp-content/uploads/2014/11/20130120103459-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20130120103459.jpg b/content/wp-content/uploads/2014/11/20130120103459.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20130120103459.jpg
rename to content/wp-content/uploads/2014/11/20130120103459.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034591-225x300.jpg b/content/wp-content/uploads/2014/11/201301201034591-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034591-225x300.jpg
rename to content/wp-content/uploads/2014/11/201301201034591-225x300.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034591-300x205.jpg b/content/wp-content/uploads/2014/11/201301201034591-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034591-300x205.jpg
rename to content/wp-content/uploads/2014/11/201301201034591-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034591-450x600.jpg b/content/wp-content/uploads/2014/11/201301201034591-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034591-450x600.jpg
rename to content/wp-content/uploads/2014/11/201301201034591-450x600.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034591.jpg b/content/wp-content/uploads/2014/11/201301201034591.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034591.jpg
rename to content/wp-content/uploads/2014/11/201301201034591.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034592-225x300.jpg b/content/wp-content/uploads/2014/11/201301201034592-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034592-225x300.jpg
rename to content/wp-content/uploads/2014/11/201301201034592-225x300.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034592-300x205.jpg b/content/wp-content/uploads/2014/11/201301201034592-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034592-300x205.jpg
rename to content/wp-content/uploads/2014/11/201301201034592-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034592-450x600.jpg b/content/wp-content/uploads/2014/11/201301201034592-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034592-450x600.jpg
rename to content/wp-content/uploads/2014/11/201301201034592-450x600.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034592.jpg b/content/wp-content/uploads/2014/11/201301201034592.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034592.jpg
rename to content/wp-content/uploads/2014/11/201301201034592.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034593-225x300.jpg b/content/wp-content/uploads/2014/11/201301201034593-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034593-225x300.jpg
rename to content/wp-content/uploads/2014/11/201301201034593-225x300.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034593-300x205.jpg b/content/wp-content/uploads/2014/11/201301201034593-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034593-300x205.jpg
rename to content/wp-content/uploads/2014/11/201301201034593-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034593-450x600.jpg b/content/wp-content/uploads/2014/11/201301201034593-450x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034593-450x600.jpg
rename to content/wp-content/uploads/2014/11/201301201034593-450x600.jpg
diff --git a/files/wp-content/uploads/2014/11/201301201034593.jpg b/content/wp-content/uploads/2014/11/201301201034593.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201301201034593.jpg
rename to content/wp-content/uploads/2014/11/201301201034593.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180337-1038x576.jpg b/content/wp-content/uploads/2014/11/20141029180337-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180337-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141029180337-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180337-300x205.jpg b/content/wp-content/uploads/2014/11/20141029180337-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180337-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141029180337-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180337-300x225.jpg b/content/wp-content/uploads/2014/11/20141029180337-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180337-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141029180337-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180337-672x372.jpg b/content/wp-content/uploads/2014/11/20141029180337-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180337-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141029180337-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180337-800x600.jpg b/content/wp-content/uploads/2014/11/20141029180337-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180337-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141029180337-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180337.jpg b/content/wp-content/uploads/2014/11/20141029180337.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180337.jpg
rename to content/wp-content/uploads/2014/11/20141029180337.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180448-1038x576.jpg b/content/wp-content/uploads/2014/11/20141029180448-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180448-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141029180448-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180448-300x205.jpg b/content/wp-content/uploads/2014/11/20141029180448-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180448-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141029180448-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180448-300x225.jpg b/content/wp-content/uploads/2014/11/20141029180448-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180448-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141029180448-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180448-672x372.jpg b/content/wp-content/uploads/2014/11/20141029180448-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180448-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141029180448-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180448-800x600.jpg b/content/wp-content/uploads/2014/11/20141029180448-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180448-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141029180448-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029180448.jpg b/content/wp-content/uploads/2014/11/20141029180448.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029180448.jpg
rename to content/wp-content/uploads/2014/11/20141029180448.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181103-1038x576.jpg b/content/wp-content/uploads/2014/11/20141029181103-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181103-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141029181103-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181103-300x205.jpg b/content/wp-content/uploads/2014/11/20141029181103-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181103-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141029181103-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181103-300x225.jpg b/content/wp-content/uploads/2014/11/20141029181103-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181103-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141029181103-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181103-672x372.jpg b/content/wp-content/uploads/2014/11/20141029181103-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181103-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141029181103-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181103-800x600.jpg b/content/wp-content/uploads/2014/11/20141029181103-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181103-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141029181103-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181103.jpg b/content/wp-content/uploads/2014/11/20141029181103.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181103.jpg
rename to content/wp-content/uploads/2014/11/20141029181103.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181341-1038x576.jpg b/content/wp-content/uploads/2014/11/20141029181341-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181341-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141029181341-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181341-300x205.jpg b/content/wp-content/uploads/2014/11/20141029181341-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181341-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141029181341-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181341-300x225.jpg b/content/wp-content/uploads/2014/11/20141029181341-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181341-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141029181341-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181341-672x372.jpg b/content/wp-content/uploads/2014/11/20141029181341-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181341-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141029181341-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181341-800x600.jpg b/content/wp-content/uploads/2014/11/20141029181341-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181341-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141029181341-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181341.jpg b/content/wp-content/uploads/2014/11/20141029181341.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181341.jpg
rename to content/wp-content/uploads/2014/11/20141029181341.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291813411-1038x576.jpg b/content/wp-content/uploads/2014/11/201410291813411-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291813411-1038x576.jpg
rename to content/wp-content/uploads/2014/11/201410291813411-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291813411-300x205.jpg b/content/wp-content/uploads/2014/11/201410291813411-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291813411-300x205.jpg
rename to content/wp-content/uploads/2014/11/201410291813411-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291813411-300x225.jpg b/content/wp-content/uploads/2014/11/201410291813411-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291813411-300x225.jpg
rename to content/wp-content/uploads/2014/11/201410291813411-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291813411-672x372.jpg b/content/wp-content/uploads/2014/11/201410291813411-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291813411-672x372.jpg
rename to content/wp-content/uploads/2014/11/201410291813411-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291813411-800x600.jpg b/content/wp-content/uploads/2014/11/201410291813411-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291813411-800x600.jpg
rename to content/wp-content/uploads/2014/11/201410291813411-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291813411.jpg b/content/wp-content/uploads/2014/11/201410291813411.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291813411.jpg
rename to content/wp-content/uploads/2014/11/201410291813411.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181431-1038x576.jpg b/content/wp-content/uploads/2014/11/20141029181431-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181431-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141029181431-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181431-300x205.jpg b/content/wp-content/uploads/2014/11/20141029181431-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181431-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141029181431-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181431-300x225.jpg b/content/wp-content/uploads/2014/11/20141029181431-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181431-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141029181431-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181431-672x372.jpg b/content/wp-content/uploads/2014/11/20141029181431-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181431-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141029181431-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181431-800x600.jpg b/content/wp-content/uploads/2014/11/20141029181431-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181431-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141029181431-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181431.jpg b/content/wp-content/uploads/2014/11/20141029181431.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181431.jpg
rename to content/wp-content/uploads/2014/11/20141029181431.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181443-1038x576.jpg b/content/wp-content/uploads/2014/11/20141029181443-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181443-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141029181443-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181443-300x205.jpg b/content/wp-content/uploads/2014/11/20141029181443-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181443-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141029181443-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181443-300x225.jpg b/content/wp-content/uploads/2014/11/20141029181443-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181443-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141029181443-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181443-672x372.jpg b/content/wp-content/uploads/2014/11/20141029181443-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181443-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141029181443-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181443-800x600.jpg b/content/wp-content/uploads/2014/11/20141029181443-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181443-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141029181443-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181443.jpg b/content/wp-content/uploads/2014/11/20141029181443.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181443.jpg
rename to content/wp-content/uploads/2014/11/20141029181443.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181504-1038x576.jpg b/content/wp-content/uploads/2014/11/20141029181504-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181504-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141029181504-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181504-300x205.jpg b/content/wp-content/uploads/2014/11/20141029181504-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181504-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141029181504-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181504-300x225.jpg b/content/wp-content/uploads/2014/11/20141029181504-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181504-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141029181504-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181504-672x372.jpg b/content/wp-content/uploads/2014/11/20141029181504-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181504-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141029181504-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181504-800x600.jpg b/content/wp-content/uploads/2014/11/20141029181504-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181504-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141029181504-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181504.jpg b/content/wp-content/uploads/2014/11/20141029181504.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181504.jpg
rename to content/wp-content/uploads/2014/11/20141029181504.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291815041-1038x576.jpg b/content/wp-content/uploads/2014/11/201410291815041-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291815041-1038x576.jpg
rename to content/wp-content/uploads/2014/11/201410291815041-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291815041-300x205.jpg b/content/wp-content/uploads/2014/11/201410291815041-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291815041-300x205.jpg
rename to content/wp-content/uploads/2014/11/201410291815041-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291815041-300x225.jpg b/content/wp-content/uploads/2014/11/201410291815041-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291815041-300x225.jpg
rename to content/wp-content/uploads/2014/11/201410291815041-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291815041-672x372.jpg b/content/wp-content/uploads/2014/11/201410291815041-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291815041-672x372.jpg
rename to content/wp-content/uploads/2014/11/201410291815041-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291815041-800x600.jpg b/content/wp-content/uploads/2014/11/201410291815041-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291815041-800x600.jpg
rename to content/wp-content/uploads/2014/11/201410291815041-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/201410291815041.jpg b/content/wp-content/uploads/2014/11/201410291815041.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201410291815041.jpg
rename to content/wp-content/uploads/2014/11/201410291815041.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181524-1038x576.jpg b/content/wp-content/uploads/2014/11/20141029181524-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181524-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141029181524-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181524-300x205.jpg b/content/wp-content/uploads/2014/11/20141029181524-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181524-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141029181524-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181524-300x225.jpg b/content/wp-content/uploads/2014/11/20141029181524-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181524-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141029181524-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181524-672x372.jpg b/content/wp-content/uploads/2014/11/20141029181524-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181524-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141029181524-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181524-800x600.jpg b/content/wp-content/uploads/2014/11/20141029181524-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181524-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141029181524-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181524.jpg b/content/wp-content/uploads/2014/11/20141029181524.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181524.jpg
rename to content/wp-content/uploads/2014/11/20141029181524.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181548-1038x576.jpg b/content/wp-content/uploads/2014/11/20141029181548-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181548-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141029181548-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181548-300x205.jpg b/content/wp-content/uploads/2014/11/20141029181548-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181548-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141029181548-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181548-300x225.jpg b/content/wp-content/uploads/2014/11/20141029181548-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181548-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141029181548-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181548-672x372.jpg b/content/wp-content/uploads/2014/11/20141029181548-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181548-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141029181548-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181548-800x600.jpg b/content/wp-content/uploads/2014/11/20141029181548-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181548-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141029181548-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141029181548.jpg b/content/wp-content/uploads/2014/11/20141029181548.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141029181548.jpg
rename to content/wp-content/uploads/2014/11/20141029181548.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155244-1038x576.jpg b/content/wp-content/uploads/2014/11/20141108155244-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155244-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141108155244-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155244-300x205.jpg b/content/wp-content/uploads/2014/11/20141108155244-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155244-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141108155244-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155244-300x224.jpg b/content/wp-content/uploads/2014/11/20141108155244-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155244-300x224.jpg
rename to content/wp-content/uploads/2014/11/20141108155244-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155244-672x372.jpg b/content/wp-content/uploads/2014/11/20141108155244-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155244-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141108155244-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155244-801x600.jpg b/content/wp-content/uploads/2014/11/20141108155244-801x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155244-801x600.jpg
rename to content/wp-content/uploads/2014/11/20141108155244-801x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155244.jpg b/content/wp-content/uploads/2014/11/20141108155244.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155244.jpg
rename to content/wp-content/uploads/2014/11/20141108155244.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155408-1038x576.jpg b/content/wp-content/uploads/2014/11/20141108155408-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155408-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141108155408-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155408-300x205.jpg b/content/wp-content/uploads/2014/11/20141108155408-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155408-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141108155408-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155408-300x225.jpg b/content/wp-content/uploads/2014/11/20141108155408-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155408-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141108155408-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155408-672x372.jpg b/content/wp-content/uploads/2014/11/20141108155408-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155408-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141108155408-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155408-800x600.jpg b/content/wp-content/uploads/2014/11/20141108155408-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155408-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141108155408-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155408.jpg b/content/wp-content/uploads/2014/11/20141108155408.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155408.jpg
rename to content/wp-content/uploads/2014/11/20141108155408.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155559-1038x576.jpg b/content/wp-content/uploads/2014/11/20141108155559-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155559-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141108155559-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155559-300x205.jpg b/content/wp-content/uploads/2014/11/20141108155559-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155559-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141108155559-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155559-300x225.jpg b/content/wp-content/uploads/2014/11/20141108155559-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155559-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141108155559-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155559-672x372.jpg b/content/wp-content/uploads/2014/11/20141108155559-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155559-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141108155559-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155559-800x600.jpg b/content/wp-content/uploads/2014/11/20141108155559-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155559-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141108155559-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155559.jpg b/content/wp-content/uploads/2014/11/20141108155559.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155559.jpg
rename to content/wp-content/uploads/2014/11/20141108155559.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155824-1038x576.jpg b/content/wp-content/uploads/2014/11/20141108155824-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155824-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141108155824-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155824-300x205.jpg b/content/wp-content/uploads/2014/11/20141108155824-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155824-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141108155824-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155824-300x224.jpg b/content/wp-content/uploads/2014/11/20141108155824-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155824-300x224.jpg
rename to content/wp-content/uploads/2014/11/20141108155824-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155824-672x372.jpg b/content/wp-content/uploads/2014/11/20141108155824-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155824-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141108155824-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155824-801x600.jpg b/content/wp-content/uploads/2014/11/20141108155824-801x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155824-801x600.jpg
rename to content/wp-content/uploads/2014/11/20141108155824-801x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155824.jpg b/content/wp-content/uploads/2014/11/20141108155824.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155824.jpg
rename to content/wp-content/uploads/2014/11/20141108155824.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081558241-1038x576.jpg b/content/wp-content/uploads/2014/11/201411081558241-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081558241-1038x576.jpg
rename to content/wp-content/uploads/2014/11/201411081558241-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081558241-300x205.jpg b/content/wp-content/uploads/2014/11/201411081558241-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081558241-300x205.jpg
rename to content/wp-content/uploads/2014/11/201411081558241-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081558241-300x224.jpg b/content/wp-content/uploads/2014/11/201411081558241-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081558241-300x224.jpg
rename to content/wp-content/uploads/2014/11/201411081558241-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081558241-672x372.jpg b/content/wp-content/uploads/2014/11/201411081558241-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081558241-672x372.jpg
rename to content/wp-content/uploads/2014/11/201411081558241-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081558241-801x600.jpg b/content/wp-content/uploads/2014/11/201411081558241-801x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081558241-801x600.jpg
rename to content/wp-content/uploads/2014/11/201411081558241-801x600.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081558241.jpg b/content/wp-content/uploads/2014/11/201411081558241.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081558241.jpg
rename to content/wp-content/uploads/2014/11/201411081558241.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155901-1038x576.jpg b/content/wp-content/uploads/2014/11/20141108155901-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155901-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141108155901-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155901-300x205.jpg b/content/wp-content/uploads/2014/11/20141108155901-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155901-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141108155901-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155901-300x224.jpg b/content/wp-content/uploads/2014/11/20141108155901-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155901-300x224.jpg
rename to content/wp-content/uploads/2014/11/20141108155901-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155901-672x372.jpg b/content/wp-content/uploads/2014/11/20141108155901-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155901-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141108155901-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155901-801x600.jpg b/content/wp-content/uploads/2014/11/20141108155901-801x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155901-801x600.jpg
rename to content/wp-content/uploads/2014/11/20141108155901-801x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155901.jpg b/content/wp-content/uploads/2014/11/20141108155901.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155901.jpg
rename to content/wp-content/uploads/2014/11/20141108155901.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155958-1038x576.jpg b/content/wp-content/uploads/2014/11/20141108155958-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155958-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141108155958-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155958-300x205.jpg b/content/wp-content/uploads/2014/11/20141108155958-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155958-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141108155958-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155958-300x224.jpg b/content/wp-content/uploads/2014/11/20141108155958-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155958-300x224.jpg
rename to content/wp-content/uploads/2014/11/20141108155958-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155958-672x372.jpg b/content/wp-content/uploads/2014/11/20141108155958-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155958-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141108155958-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155958-801x600.jpg b/content/wp-content/uploads/2014/11/20141108155958-801x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155958-801x600.jpg
rename to content/wp-content/uploads/2014/11/20141108155958-801x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108155958.jpg b/content/wp-content/uploads/2014/11/20141108155958.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108155958.jpg
rename to content/wp-content/uploads/2014/11/20141108155958.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160027-1038x576.jpg b/content/wp-content/uploads/2014/11/20141108160027-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160027-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141108160027-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160027-300x205.jpg b/content/wp-content/uploads/2014/11/20141108160027-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160027-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141108160027-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160027-300x224.jpg b/content/wp-content/uploads/2014/11/20141108160027-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160027-300x224.jpg
rename to content/wp-content/uploads/2014/11/20141108160027-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160027-672x372.jpg b/content/wp-content/uploads/2014/11/20141108160027-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160027-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141108160027-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160027-801x600.jpg b/content/wp-content/uploads/2014/11/20141108160027-801x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160027-801x600.jpg
rename to content/wp-content/uploads/2014/11/20141108160027-801x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160027.jpg b/content/wp-content/uploads/2014/11/20141108160027.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160027.jpg
rename to content/wp-content/uploads/2014/11/20141108160027.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081600271-1038x576.jpg b/content/wp-content/uploads/2014/11/201411081600271-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081600271-1038x576.jpg
rename to content/wp-content/uploads/2014/11/201411081600271-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081600271-300x205.jpg b/content/wp-content/uploads/2014/11/201411081600271-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081600271-300x205.jpg
rename to content/wp-content/uploads/2014/11/201411081600271-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081600271-300x224.jpg b/content/wp-content/uploads/2014/11/201411081600271-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081600271-300x224.jpg
rename to content/wp-content/uploads/2014/11/201411081600271-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081600271-672x372.jpg b/content/wp-content/uploads/2014/11/201411081600271-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081600271-672x372.jpg
rename to content/wp-content/uploads/2014/11/201411081600271-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081600271-801x600.jpg b/content/wp-content/uploads/2014/11/201411081600271-801x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081600271-801x600.jpg
rename to content/wp-content/uploads/2014/11/201411081600271-801x600.jpg
diff --git a/files/wp-content/uploads/2014/11/201411081600271.jpg b/content/wp-content/uploads/2014/11/201411081600271.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/201411081600271.jpg
rename to content/wp-content/uploads/2014/11/201411081600271.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160508-1038x576.jpg b/content/wp-content/uploads/2014/11/20141108160508-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160508-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141108160508-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160508-300x205.jpg b/content/wp-content/uploads/2014/11/20141108160508-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160508-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141108160508-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160508-300x225.jpg b/content/wp-content/uploads/2014/11/20141108160508-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160508-300x225.jpg
rename to content/wp-content/uploads/2014/11/20141108160508-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160508-672x372.jpg b/content/wp-content/uploads/2014/11/20141108160508-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160508-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141108160508-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160508-800x600.jpg b/content/wp-content/uploads/2014/11/20141108160508-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160508-800x600.jpg
rename to content/wp-content/uploads/2014/11/20141108160508-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160508.jpg b/content/wp-content/uploads/2014/11/20141108160508.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160508.jpg
rename to content/wp-content/uploads/2014/11/20141108160508.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160558-1038x576.jpg b/content/wp-content/uploads/2014/11/20141108160558-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160558-1038x576.jpg
rename to content/wp-content/uploads/2014/11/20141108160558-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160558-300x205.jpg b/content/wp-content/uploads/2014/11/20141108160558-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160558-300x205.jpg
rename to content/wp-content/uploads/2014/11/20141108160558-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160558-300x224.jpg b/content/wp-content/uploads/2014/11/20141108160558-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160558-300x224.jpg
rename to content/wp-content/uploads/2014/11/20141108160558-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160558-672x372.jpg b/content/wp-content/uploads/2014/11/20141108160558-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160558-672x372.jpg
rename to content/wp-content/uploads/2014/11/20141108160558-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160558-801x600.jpg b/content/wp-content/uploads/2014/11/20141108160558-801x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160558-801x600.jpg
rename to content/wp-content/uploads/2014/11/20141108160558-801x600.jpg
diff --git a/files/wp-content/uploads/2014/11/20141108160558.jpg b/content/wp-content/uploads/2014/11/20141108160558.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/20141108160558.jpg
rename to content/wp-content/uploads/2014/11/20141108160558.jpg
diff --git a/files/wp-content/uploads/2014/11/P1215426-1038x576.jpg b/content/wp-content/uploads/2014/11/P1215426-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1215426-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1215426-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1215426-300x205.jpg b/content/wp-content/uploads/2014/11/P1215426-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1215426-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1215426-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1215426-300x225.jpg b/content/wp-content/uploads/2014/11/P1215426-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1215426-300x225.jpg
rename to content/wp-content/uploads/2014/11/P1215426-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P1215426-672x372.jpg b/content/wp-content/uploads/2014/11/P1215426-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1215426-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1215426-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1215426-798x600.jpg b/content/wp-content/uploads/2014/11/P1215426-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1215426-798x600.jpg
rename to content/wp-content/uploads/2014/11/P1215426-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1215426.jpg b/content/wp-content/uploads/2014/11/P1215426.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1215426.jpg
rename to content/wp-content/uploads/2014/11/P1215426.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154261-300x205.jpg b/content/wp-content/uploads/2014/11/P12154261-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154261-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12154261-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154261-300x225.jpg b/content/wp-content/uploads/2014/11/P12154261-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154261-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12154261-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154261-798x600.jpg b/content/wp-content/uploads/2014/11/P12154261-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154261-798x600.jpg
rename to content/wp-content/uploads/2014/11/P12154261-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154261.jpg b/content/wp-content/uploads/2014/11/P12154261.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154261.jpg
rename to content/wp-content/uploads/2014/11/P12154261.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154262-300x205.jpg b/content/wp-content/uploads/2014/11/P12154262-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154262-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12154262-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154262-300x225.jpg b/content/wp-content/uploads/2014/11/P12154262-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154262-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12154262-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154262-798x600.jpg b/content/wp-content/uploads/2014/11/P12154262-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154262-798x600.jpg
rename to content/wp-content/uploads/2014/11/P12154262-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154262.jpg b/content/wp-content/uploads/2014/11/P12154262.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154262.jpg
rename to content/wp-content/uploads/2014/11/P12154262.jpg
diff --git a/files/wp-content/uploads/2014/11/P1215441.jpg b/content/wp-content/uploads/2014/11/P1215441.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1215441.jpg
rename to content/wp-content/uploads/2014/11/P1215441.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154411.jpg b/content/wp-content/uploads/2014/11/P12154411.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154411.jpg
rename to content/wp-content/uploads/2014/11/P12154411.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154412-1038x576.jpg b/content/wp-content/uploads/2014/11/P12154412-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154412-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P12154412-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154412-300x205.jpg b/content/wp-content/uploads/2014/11/P12154412-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154412-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12154412-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154412-300x225.jpg b/content/wp-content/uploads/2014/11/P12154412-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154412-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12154412-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154412-672x372.jpg b/content/wp-content/uploads/2014/11/P12154412-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154412-672x372.jpg
rename to content/wp-content/uploads/2014/11/P12154412-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154412-798x600.jpg b/content/wp-content/uploads/2014/11/P12154412-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154412-798x600.jpg
rename to content/wp-content/uploads/2014/11/P12154412-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154412.jpg b/content/wp-content/uploads/2014/11/P12154412.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154412.jpg
rename to content/wp-content/uploads/2014/11/P12154412.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154413-300x205.jpg b/content/wp-content/uploads/2014/11/P12154413-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154413-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12154413-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154413-300x225.jpg b/content/wp-content/uploads/2014/11/P12154413-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154413-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12154413-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154413-798x600.jpg b/content/wp-content/uploads/2014/11/P12154413-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154413-798x600.jpg
rename to content/wp-content/uploads/2014/11/P12154413-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154413.jpg b/content/wp-content/uploads/2014/11/P12154413.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154413.jpg
rename to content/wp-content/uploads/2014/11/P12154413.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154414-300x205.jpg b/content/wp-content/uploads/2014/11/P12154414-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154414-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12154414-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154414-300x225.jpg b/content/wp-content/uploads/2014/11/P12154414-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154414-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12154414-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154414-798x600.jpg b/content/wp-content/uploads/2014/11/P12154414-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154414-798x600.jpg
rename to content/wp-content/uploads/2014/11/P12154414-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12154414.jpg b/content/wp-content/uploads/2014/11/P12154414.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12154414.jpg
rename to content/wp-content/uploads/2014/11/P12154414.jpg
diff --git a/files/wp-content/uploads/2014/11/P1255540-1038x576.jpg b/content/wp-content/uploads/2014/11/P1255540-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1255540-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1255540-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1255540-300x205.jpg b/content/wp-content/uploads/2014/11/P1255540-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1255540-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1255540-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1255540-300x225.jpg b/content/wp-content/uploads/2014/11/P1255540-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1255540-300x225.jpg
rename to content/wp-content/uploads/2014/11/P1255540-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P1255540-672x372.jpg b/content/wp-content/uploads/2014/11/P1255540-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1255540-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1255540-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1255540-799x600.jpg b/content/wp-content/uploads/2014/11/P1255540-799x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1255540-799x600.jpg
rename to content/wp-content/uploads/2014/11/P1255540-799x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1255540.jpg b/content/wp-content/uploads/2014/11/P1255540.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1255540.jpg
rename to content/wp-content/uploads/2014/11/P1255540.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555401-300x205.jpg b/content/wp-content/uploads/2014/11/P12555401-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555401-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12555401-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555401-300x225.jpg b/content/wp-content/uploads/2014/11/P12555401-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555401-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12555401-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555401-799x600.jpg b/content/wp-content/uploads/2014/11/P12555401-799x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555401-799x600.jpg
rename to content/wp-content/uploads/2014/11/P12555401-799x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555401.jpg b/content/wp-content/uploads/2014/11/P12555401.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555401.jpg
rename to content/wp-content/uploads/2014/11/P12555401.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555402-300x205.jpg b/content/wp-content/uploads/2014/11/P12555402-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555402-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12555402-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555402-300x225.jpg b/content/wp-content/uploads/2014/11/P12555402-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555402-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12555402-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555402-799x600.jpg b/content/wp-content/uploads/2014/11/P12555402-799x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555402-799x600.jpg
rename to content/wp-content/uploads/2014/11/P12555402-799x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555402.jpg b/content/wp-content/uploads/2014/11/P12555402.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555402.jpg
rename to content/wp-content/uploads/2014/11/P12555402.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555403-300x205.jpg b/content/wp-content/uploads/2014/11/P12555403-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555403-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12555403-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555403-300x225.jpg b/content/wp-content/uploads/2014/11/P12555403-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555403-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12555403-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555403-799x600.jpg b/content/wp-content/uploads/2014/11/P12555403-799x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555403-799x600.jpg
rename to content/wp-content/uploads/2014/11/P12555403-799x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12555403.jpg b/content/wp-content/uploads/2014/11/P12555403.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12555403.jpg
rename to content/wp-content/uploads/2014/11/P12555403.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265612-1038x576.jpg b/content/wp-content/uploads/2014/11/P1265612-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265612-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1265612-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265612-300x205.jpg b/content/wp-content/uploads/2014/11/P1265612-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265612-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1265612-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265612-300x225.jpg b/content/wp-content/uploads/2014/11/P1265612-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265612-300x225.jpg
rename to content/wp-content/uploads/2014/11/P1265612-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265612-672x372.jpg b/content/wp-content/uploads/2014/11/P1265612-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265612-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1265612-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265612-799x600.jpg b/content/wp-content/uploads/2014/11/P1265612-799x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265612-799x600.jpg
rename to content/wp-content/uploads/2014/11/P1265612-799x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265612.jpg b/content/wp-content/uploads/2014/11/P1265612.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265612.jpg
rename to content/wp-content/uploads/2014/11/P1265612.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656121-300x205.jpg b/content/wp-content/uploads/2014/11/P12656121-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656121-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12656121-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656121-300x225.jpg b/content/wp-content/uploads/2014/11/P12656121-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656121-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12656121-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656121-799x600.jpg b/content/wp-content/uploads/2014/11/P12656121-799x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656121-799x600.jpg
rename to content/wp-content/uploads/2014/11/P12656121-799x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656121.jpg b/content/wp-content/uploads/2014/11/P12656121.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656121.jpg
rename to content/wp-content/uploads/2014/11/P12656121.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265674-1038x576.jpg b/content/wp-content/uploads/2014/11/P1265674-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265674-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1265674-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265674-300x205.jpg b/content/wp-content/uploads/2014/11/P1265674-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265674-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1265674-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265674-300x224.jpg b/content/wp-content/uploads/2014/11/P1265674-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265674-300x224.jpg
rename to content/wp-content/uploads/2014/11/P1265674-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265674-672x372.jpg b/content/wp-content/uploads/2014/11/P1265674-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265674-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1265674-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265674-800x600.jpg b/content/wp-content/uploads/2014/11/P1265674-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265674-800x600.jpg
rename to content/wp-content/uploads/2014/11/P1265674-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265674.jpg b/content/wp-content/uploads/2014/11/P1265674.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265674.jpg
rename to content/wp-content/uploads/2014/11/P1265674.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656741-1038x576.jpg b/content/wp-content/uploads/2014/11/P12656741-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656741-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P12656741-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656741-300x205.jpg b/content/wp-content/uploads/2014/11/P12656741-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656741-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12656741-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656741-300x224.jpg b/content/wp-content/uploads/2014/11/P12656741-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656741-300x224.jpg
rename to content/wp-content/uploads/2014/11/P12656741-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656741-672x372.jpg b/content/wp-content/uploads/2014/11/P12656741-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656741-672x372.jpg
rename to content/wp-content/uploads/2014/11/P12656741-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656741-800x600.jpg b/content/wp-content/uploads/2014/11/P12656741-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656741-800x600.jpg
rename to content/wp-content/uploads/2014/11/P12656741-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656741.jpg b/content/wp-content/uploads/2014/11/P12656741.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656741.jpg
rename to content/wp-content/uploads/2014/11/P12656741.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656742-300x205.jpg b/content/wp-content/uploads/2014/11/P12656742-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656742-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12656742-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656742-300x224.jpg b/content/wp-content/uploads/2014/11/P12656742-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656742-300x224.jpg
rename to content/wp-content/uploads/2014/11/P12656742-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656742-800x600.jpg b/content/wp-content/uploads/2014/11/P12656742-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656742-800x600.jpg
rename to content/wp-content/uploads/2014/11/P12656742-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12656742.jpg b/content/wp-content/uploads/2014/11/P12656742.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12656742.jpg
rename to content/wp-content/uploads/2014/11/P12656742.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265701-1038x576.jpg b/content/wp-content/uploads/2014/11/P1265701-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265701-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1265701-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265701-300x205.jpg b/content/wp-content/uploads/2014/11/P1265701-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265701-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1265701-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265701-300x225.jpg b/content/wp-content/uploads/2014/11/P1265701-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265701-300x225.jpg
rename to content/wp-content/uploads/2014/11/P1265701-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265701-672x372.jpg b/content/wp-content/uploads/2014/11/P1265701-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265701-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1265701-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265701-798x600.jpg b/content/wp-content/uploads/2014/11/P1265701-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265701-798x600.jpg
rename to content/wp-content/uploads/2014/11/P1265701-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265701.jpg b/content/wp-content/uploads/2014/11/P1265701.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265701.jpg
rename to content/wp-content/uploads/2014/11/P1265701.jpg
diff --git a/files/wp-content/uploads/2014/11/P12657011-300x205.jpg b/content/wp-content/uploads/2014/11/P12657011-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12657011-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12657011-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12657011-300x225.jpg b/content/wp-content/uploads/2014/11/P12657011-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12657011-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12657011-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12657011-798x600.jpg b/content/wp-content/uploads/2014/11/P12657011-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12657011-798x600.jpg
rename to content/wp-content/uploads/2014/11/P12657011-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12657011.jpg b/content/wp-content/uploads/2014/11/P12657011.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12657011.jpg
rename to content/wp-content/uploads/2014/11/P12657011.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265770-1038x576.jpg b/content/wp-content/uploads/2014/11/P1265770-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265770-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1265770-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265770-300x205.jpg b/content/wp-content/uploads/2014/11/P1265770-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265770-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1265770-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265770-300x224.jpg b/content/wp-content/uploads/2014/11/P1265770-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265770-300x224.jpg
rename to content/wp-content/uploads/2014/11/P1265770-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265770-672x372.jpg b/content/wp-content/uploads/2014/11/P1265770-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265770-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1265770-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265770-800x600.jpg b/content/wp-content/uploads/2014/11/P1265770-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265770-800x600.jpg
rename to content/wp-content/uploads/2014/11/P1265770-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1265770.jpg b/content/wp-content/uploads/2014/11/P1265770.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1265770.jpg
rename to content/wp-content/uploads/2014/11/P1265770.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285817-1038x576.jpg b/content/wp-content/uploads/2014/11/P1285817-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285817-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1285817-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285817-300x205.jpg b/content/wp-content/uploads/2014/11/P1285817-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285817-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1285817-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285817-300x225.jpg b/content/wp-content/uploads/2014/11/P1285817-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285817-300x225.jpg
rename to content/wp-content/uploads/2014/11/P1285817-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285817-672x372.jpg b/content/wp-content/uploads/2014/11/P1285817-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285817-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1285817-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285817-798x600.jpg b/content/wp-content/uploads/2014/11/P1285817-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285817-798x600.jpg
rename to content/wp-content/uploads/2014/11/P1285817-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285817.jpg b/content/wp-content/uploads/2014/11/P1285817.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285817.jpg
rename to content/wp-content/uploads/2014/11/P1285817.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858171-1038x576.jpg b/content/wp-content/uploads/2014/11/P12858171-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858171-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P12858171-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858171-300x205.jpg b/content/wp-content/uploads/2014/11/P12858171-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858171-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12858171-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858171-300x225.jpg b/content/wp-content/uploads/2014/11/P12858171-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858171-300x225.jpg
rename to content/wp-content/uploads/2014/11/P12858171-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858171-672x372.jpg b/content/wp-content/uploads/2014/11/P12858171-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858171-672x372.jpg
rename to content/wp-content/uploads/2014/11/P12858171-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858171-798x600.jpg b/content/wp-content/uploads/2014/11/P12858171-798x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858171-798x600.jpg
rename to content/wp-content/uploads/2014/11/P12858171-798x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858171.jpg b/content/wp-content/uploads/2014/11/P12858171.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858171.jpg
rename to content/wp-content/uploads/2014/11/P12858171.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285835-1038x576.jpg b/content/wp-content/uploads/2014/11/P1285835-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285835-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1285835-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285835-300x205.jpg b/content/wp-content/uploads/2014/11/P1285835-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285835-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1285835-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285835-300x225.jpg b/content/wp-content/uploads/2014/11/P1285835-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285835-300x225.jpg
rename to content/wp-content/uploads/2014/11/P1285835-300x225.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285835-672x372.jpg b/content/wp-content/uploads/2014/11/P1285835-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285835-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1285835-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285835-800x600.jpg b/content/wp-content/uploads/2014/11/P1285835-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285835-800x600.jpg
rename to content/wp-content/uploads/2014/11/P1285835-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285835.jpg b/content/wp-content/uploads/2014/11/P1285835.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285835.jpg
rename to content/wp-content/uploads/2014/11/P1285835.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285838-1038x576.jpg b/content/wp-content/uploads/2014/11/P1285838-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285838-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1285838-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285838-300x205.jpg b/content/wp-content/uploads/2014/11/P1285838-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285838-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1285838-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285838-300x224.jpg b/content/wp-content/uploads/2014/11/P1285838-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285838-300x224.jpg
rename to content/wp-content/uploads/2014/11/P1285838-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285838-672x372.jpg b/content/wp-content/uploads/2014/11/P1285838-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285838-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1285838-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285838-800x600.jpg b/content/wp-content/uploads/2014/11/P1285838-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285838-800x600.jpg
rename to content/wp-content/uploads/2014/11/P1285838-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285838.jpg b/content/wp-content/uploads/2014/11/P1285838.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285838.jpg
rename to content/wp-content/uploads/2014/11/P1285838.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285877-1038x576.jpg b/content/wp-content/uploads/2014/11/P1285877-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285877-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1285877-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285877-225x300.jpg b/content/wp-content/uploads/2014/11/P1285877-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285877-225x300.jpg
rename to content/wp-content/uploads/2014/11/P1285877-225x300.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285877-300x205.jpg b/content/wp-content/uploads/2014/11/P1285877-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285877-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1285877-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285877-451x600.jpg b/content/wp-content/uploads/2014/11/P1285877-451x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285877-451x600.jpg
rename to content/wp-content/uploads/2014/11/P1285877-451x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285877-672x372.jpg b/content/wp-content/uploads/2014/11/P1285877-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285877-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1285877-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1285877.jpg b/content/wp-content/uploads/2014/11/P1285877.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1285877.jpg
rename to content/wp-content/uploads/2014/11/P1285877.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858771-1038x576.jpg b/content/wp-content/uploads/2014/11/P12858771-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858771-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P12858771-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858771-225x300.jpg b/content/wp-content/uploads/2014/11/P12858771-225x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858771-225x300.jpg
rename to content/wp-content/uploads/2014/11/P12858771-225x300.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858771-300x205.jpg b/content/wp-content/uploads/2014/11/P12858771-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858771-300x205.jpg
rename to content/wp-content/uploads/2014/11/P12858771-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858771-451x600.jpg b/content/wp-content/uploads/2014/11/P12858771-451x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858771-451x600.jpg
rename to content/wp-content/uploads/2014/11/P12858771-451x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858771-672x372.jpg b/content/wp-content/uploads/2014/11/P12858771-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858771-672x372.jpg
rename to content/wp-content/uploads/2014/11/P12858771-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P12858771.jpg b/content/wp-content/uploads/2014/11/P12858771.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P12858771.jpg
rename to content/wp-content/uploads/2014/11/P12858771.jpg
diff --git a/files/wp-content/uploads/2014/11/P1300197-1038x576.jpg b/content/wp-content/uploads/2014/11/P1300197-1038x576.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1300197-1038x576.jpg
rename to content/wp-content/uploads/2014/11/P1300197-1038x576.jpg
diff --git a/files/wp-content/uploads/2014/11/P1300197-300x205.jpg b/content/wp-content/uploads/2014/11/P1300197-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1300197-300x205.jpg
rename to content/wp-content/uploads/2014/11/P1300197-300x205.jpg
diff --git a/files/wp-content/uploads/2014/11/P1300197-300x224.jpg b/content/wp-content/uploads/2014/11/P1300197-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1300197-300x224.jpg
rename to content/wp-content/uploads/2014/11/P1300197-300x224.jpg
diff --git a/files/wp-content/uploads/2014/11/P1300197-672x372.jpg b/content/wp-content/uploads/2014/11/P1300197-672x372.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1300197-672x372.jpg
rename to content/wp-content/uploads/2014/11/P1300197-672x372.jpg
diff --git a/files/wp-content/uploads/2014/11/P1300197-800x600.jpg b/content/wp-content/uploads/2014/11/P1300197-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1300197-800x600.jpg
rename to content/wp-content/uploads/2014/11/P1300197-800x600.jpg
diff --git a/files/wp-content/uploads/2014/11/P1300197.jpg b/content/wp-content/uploads/2014/11/P1300197.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/11/P1300197.jpg
rename to content/wp-content/uploads/2014/11/P1300197.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119182747-300x205.jpg b/content/wp-content/uploads/2014/12/20140119182747-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119182747-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140119182747-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119182747-300x300.jpg b/content/wp-content/uploads/2014/12/20140119182747-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119182747-300x300.jpg
rename to content/wp-content/uploads/2014/12/20140119182747-300x300.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119182747-600x600.jpg b/content/wp-content/uploads/2014/12/20140119182747-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119182747-600x600.jpg
rename to content/wp-content/uploads/2014/12/20140119182747-600x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119182747.jpg b/content/wp-content/uploads/2014/12/20140119182747.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119182747.jpg
rename to content/wp-content/uploads/2014/12/20140119182747.jpg
diff --git a/files/wp-content/uploads/2014/12/201401191827471-300x205.jpg b/content/wp-content/uploads/2014/12/201401191827471-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201401191827471-300x205.jpg
rename to content/wp-content/uploads/2014/12/201401191827471-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/201401191827471-300x300.jpg b/content/wp-content/uploads/2014/12/201401191827471-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201401191827471-300x300.jpg
rename to content/wp-content/uploads/2014/12/201401191827471-300x300.jpg
diff --git a/files/wp-content/uploads/2014/12/201401191827471-600x600.jpg b/content/wp-content/uploads/2014/12/201401191827471-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201401191827471-600x600.jpg
rename to content/wp-content/uploads/2014/12/201401191827471-600x600.jpg
diff --git a/files/wp-content/uploads/2014/12/201401191827471.jpg b/content/wp-content/uploads/2014/12/201401191827471.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201401191827471.jpg
rename to content/wp-content/uploads/2014/12/201401191827471.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119183529_ORF_embedded-300x205.jpg b/content/wp-content/uploads/2014/12/20140119183529_ORF_embedded-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119183529_ORF_embedded-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140119183529_ORF_embedded-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119183529_ORF_embedded-300x225.jpg b/content/wp-content/uploads/2014/12/20140119183529_ORF_embedded-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119183529_ORF_embedded-300x225.jpg
rename to content/wp-content/uploads/2014/12/20140119183529_ORF_embedded-300x225.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119183529_ORF_embedded-800x600.jpg b/content/wp-content/uploads/2014/12/20140119183529_ORF_embedded-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119183529_ORF_embedded-800x600.jpg
rename to content/wp-content/uploads/2014/12/20140119183529_ORF_embedded-800x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119183529_ORF_embedded.jpg b/content/wp-content/uploads/2014/12/20140119183529_ORF_embedded.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119183529_ORF_embedded.jpg
rename to content/wp-content/uploads/2014/12/20140119183529_ORF_embedded.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-300x205.jpg b/content/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-300x225.jpg b/content/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-300x225.jpg
rename to content/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-300x225.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-800x600.jpg b/content/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-800x600.jpg
rename to content/wp-content/uploads/2014/12/20140119183529_ORF_embedded1-800x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140119183529_ORF_embedded1.jpg b/content/wp-content/uploads/2014/12/20140119183529_ORF_embedded1.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140119183529_ORF_embedded1.jpg
rename to content/wp-content/uploads/2014/12/20140119183529_ORF_embedded1.jpg
diff --git a/files/wp-content/uploads/2014/12/20140223185007_ORF_embedded-300x205.jpg b/content/wp-content/uploads/2014/12/20140223185007_ORF_embedded-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140223185007_ORF_embedded-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140223185007_ORF_embedded-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140223185007_ORF_embedded-300x300.jpg b/content/wp-content/uploads/2014/12/20140223185007_ORF_embedded-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140223185007_ORF_embedded-300x300.jpg
rename to content/wp-content/uploads/2014/12/20140223185007_ORF_embedded-300x300.jpg
diff --git a/files/wp-content/uploads/2014/12/20140223185007_ORF_embedded-600x600.jpg b/content/wp-content/uploads/2014/12/20140223185007_ORF_embedded-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140223185007_ORF_embedded-600x600.jpg
rename to content/wp-content/uploads/2014/12/20140223185007_ORF_embedded-600x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140223185007_ORF_embedded.jpg b/content/wp-content/uploads/2014/12/20140223185007_ORF_embedded.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140223185007_ORF_embedded.jpg
rename to content/wp-content/uploads/2014/12/20140223185007_ORF_embedded.jpg
diff --git a/files/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-300x205.jpg b/content/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-300x300.jpg b/content/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-300x300.jpg
rename to content/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-300x300.jpg
diff --git a/files/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-600x600.jpg b/content/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-600x600.jpg
rename to content/wp-content/uploads/2014/12/20140223185007_ORF_embedded1-600x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140223185007_ORF_embedded1.jpg b/content/wp-content/uploads/2014/12/20140223185007_ORF_embedded1.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140223185007_ORF_embedded1.jpg
rename to content/wp-content/uploads/2014/12/20140223185007_ORF_embedded1.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded-300x187.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded-300x187.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded-300x187.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded-300x205.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded-960x600.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded-960x600.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded-960x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-300x187.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-300x187.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-300x187.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-300x205.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-960x600.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-960x600.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded1-960x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded1.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded1.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded1.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded1.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-300x187.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-300x187.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-300x187.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-300x187.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-300x205.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-960x600.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-960x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-960x600.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded2-960x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140304081451_ORF_embedded2.jpg b/content/wp-content/uploads/2014/12/20140304081451_ORF_embedded2.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140304081451_ORF_embedded2.jpg
rename to content/wp-content/uploads/2014/12/20140304081451_ORF_embedded2.jpg
diff --git a/files/wp-content/uploads/2014/12/20140314181750_ORF_embedded-300x205.jpg b/content/wp-content/uploads/2014/12/20140314181750_ORF_embedded-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140314181750_ORF_embedded-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140314181750_ORF_embedded-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140314181750_ORF_embedded-300x225.jpg b/content/wp-content/uploads/2014/12/20140314181750_ORF_embedded-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140314181750_ORF_embedded-300x225.jpg
rename to content/wp-content/uploads/2014/12/20140314181750_ORF_embedded-300x225.jpg
diff --git a/files/wp-content/uploads/2014/12/20140314181750_ORF_embedded-800x600.jpg b/content/wp-content/uploads/2014/12/20140314181750_ORF_embedded-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140314181750_ORF_embedded-800x600.jpg
rename to content/wp-content/uploads/2014/12/20140314181750_ORF_embedded-800x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140314181750_ORF_embedded.jpg b/content/wp-content/uploads/2014/12/20140314181750_ORF_embedded.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140314181750_ORF_embedded.jpg
rename to content/wp-content/uploads/2014/12/20140314181750_ORF_embedded.jpg
diff --git a/files/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-300x205.jpg b/content/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-300x225.jpg b/content/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-300x225.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-300x225.jpg
rename to content/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-300x225.jpg
diff --git a/files/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-800x600.jpg b/content/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-800x600.jpg
rename to content/wp-content/uploads/2014/12/20140314181750_ORF_embedded1-800x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140314181750_ORF_embedded1.jpg b/content/wp-content/uploads/2014/12/20140314181750_ORF_embedded1.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140314181750_ORF_embedded1.jpg
rename to content/wp-content/uploads/2014/12/20140314181750_ORF_embedded1.jpg
diff --git a/files/wp-content/uploads/2014/12/20140402185635-300x205.jpg b/content/wp-content/uploads/2014/12/20140402185635-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140402185635-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140402185635-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140402185635-300x224.jpg b/content/wp-content/uploads/2014/12/20140402185635-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140402185635-300x224.jpg
rename to content/wp-content/uploads/2014/12/20140402185635-300x224.jpg
diff --git a/files/wp-content/uploads/2014/12/20140402185635-800x600.jpg b/content/wp-content/uploads/2014/12/20140402185635-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140402185635-800x600.jpg
rename to content/wp-content/uploads/2014/12/20140402185635-800x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140402185635.jpg b/content/wp-content/uploads/2014/12/20140402185635.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140402185635.jpg
rename to content/wp-content/uploads/2014/12/20140402185635.jpg
diff --git a/files/wp-content/uploads/2014/12/201404021856351-300x205.jpg b/content/wp-content/uploads/2014/12/201404021856351-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404021856351-300x205.jpg
rename to content/wp-content/uploads/2014/12/201404021856351-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/201404021856351-300x224.jpg b/content/wp-content/uploads/2014/12/201404021856351-300x224.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404021856351-300x224.jpg
rename to content/wp-content/uploads/2014/12/201404021856351-300x224.jpg
diff --git a/files/wp-content/uploads/2014/12/201404021856351-800x600.jpg b/content/wp-content/uploads/2014/12/201404021856351-800x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404021856351-800x600.jpg
rename to content/wp-content/uploads/2014/12/201404021856351-800x600.jpg
diff --git a/files/wp-content/uploads/2014/12/201404021856351.jpg b/content/wp-content/uploads/2014/12/201404021856351.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404021856351.jpg
rename to content/wp-content/uploads/2014/12/201404021856351.jpg
diff --git a/files/wp-content/uploads/2014/12/20140426223922-300x205.jpg b/content/wp-content/uploads/2014/12/20140426223922-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140426223922-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140426223922-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140426223922-300x300.jpg b/content/wp-content/uploads/2014/12/20140426223922-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140426223922-300x300.jpg
rename to content/wp-content/uploads/2014/12/20140426223922-300x300.jpg
diff --git a/files/wp-content/uploads/2014/12/20140426223922-600x600.jpg b/content/wp-content/uploads/2014/12/20140426223922-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140426223922-600x600.jpg
rename to content/wp-content/uploads/2014/12/20140426223922-600x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140426223922.jpg b/content/wp-content/uploads/2014/12/20140426223922.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140426223922.jpg
rename to content/wp-content/uploads/2014/12/20140426223922.jpg
diff --git a/files/wp-content/uploads/2014/12/201404262239221-300x205.jpg b/content/wp-content/uploads/2014/12/201404262239221-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404262239221-300x205.jpg
rename to content/wp-content/uploads/2014/12/201404262239221-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/201404262239221-300x300.jpg b/content/wp-content/uploads/2014/12/201404262239221-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404262239221-300x300.jpg
rename to content/wp-content/uploads/2014/12/201404262239221-300x300.jpg
diff --git a/files/wp-content/uploads/2014/12/201404262239221-600x600.jpg b/content/wp-content/uploads/2014/12/201404262239221-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404262239221-600x600.jpg
rename to content/wp-content/uploads/2014/12/201404262239221-600x600.jpg
diff --git a/files/wp-content/uploads/2014/12/201404262239221.jpg b/content/wp-content/uploads/2014/12/201404262239221.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404262239221.jpg
rename to content/wp-content/uploads/2014/12/201404262239221.jpg
diff --git a/files/wp-content/uploads/2014/12/201404262239222-300x205.jpg b/content/wp-content/uploads/2014/12/201404262239222-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404262239222-300x205.jpg
rename to content/wp-content/uploads/2014/12/201404262239222-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/201404262239222-300x300.jpg b/content/wp-content/uploads/2014/12/201404262239222-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404262239222-300x300.jpg
rename to content/wp-content/uploads/2014/12/201404262239222-300x300.jpg
diff --git a/files/wp-content/uploads/2014/12/201404262239222-600x600.jpg b/content/wp-content/uploads/2014/12/201404262239222-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404262239222-600x600.jpg
rename to content/wp-content/uploads/2014/12/201404262239222-600x600.jpg
diff --git a/files/wp-content/uploads/2014/12/201404262239222.jpg b/content/wp-content/uploads/2014/12/201404262239222.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201404262239222.jpg
rename to content/wp-content/uploads/2014/12/201404262239222.jpg
diff --git a/files/wp-content/uploads/2014/12/20140517175844-300x205.jpg b/content/wp-content/uploads/2014/12/20140517175844-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140517175844-300x205.jpg
rename to content/wp-content/uploads/2014/12/20140517175844-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/20140517175844-300x300.jpg b/content/wp-content/uploads/2014/12/20140517175844-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140517175844-300x300.jpg
rename to content/wp-content/uploads/2014/12/20140517175844-300x300.jpg
diff --git a/files/wp-content/uploads/2014/12/20140517175844-600x600.jpg b/content/wp-content/uploads/2014/12/20140517175844-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140517175844-600x600.jpg
rename to content/wp-content/uploads/2014/12/20140517175844-600x600.jpg
diff --git a/files/wp-content/uploads/2014/12/20140517175844.jpg b/content/wp-content/uploads/2014/12/20140517175844.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140517175844.jpg
rename to content/wp-content/uploads/2014/12/20140517175844.jpg
diff --git a/files/wp-content/uploads/2014/12/201405171758441-300x205.jpg b/content/wp-content/uploads/2014/12/201405171758441-300x205.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201405171758441-300x205.jpg
rename to content/wp-content/uploads/2014/12/201405171758441-300x205.jpg
diff --git a/files/wp-content/uploads/2014/12/201405171758441-300x300.jpg b/content/wp-content/uploads/2014/12/201405171758441-300x300.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201405171758441-300x300.jpg
rename to content/wp-content/uploads/2014/12/201405171758441-300x300.jpg
diff --git a/files/wp-content/uploads/2014/12/201405171758441-600x600.jpg b/content/wp-content/uploads/2014/12/201405171758441-600x600.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201405171758441-600x600.jpg
rename to content/wp-content/uploads/2014/12/201405171758441-600x600.jpg
diff --git a/files/wp-content/uploads/2014/12/201405171758441.jpg b/content/wp-content/uploads/2014/12/201405171758441.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/201405171758441.jpg
rename to content/wp-content/uploads/2014/12/201405171758441.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703121845.jpg b/content/wp-content/uploads/2014/12/20140703121845.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703121845.jpg
rename to content/wp-content/uploads/2014/12/20140703121845.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703121911.jpg b/content/wp-content/uploads/2014/12/20140703121911.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703121911.jpg
rename to content/wp-content/uploads/2014/12/20140703121911.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703132247.jpg b/content/wp-content/uploads/2014/12/20140703132247.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703132247.jpg
rename to content/wp-content/uploads/2014/12/20140703132247.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703132721.jpg b/content/wp-content/uploads/2014/12/20140703132721.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703132721.jpg
rename to content/wp-content/uploads/2014/12/20140703132721.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703180906.jpg b/content/wp-content/uploads/2014/12/20140703180906.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703180906.jpg
rename to content/wp-content/uploads/2014/12/20140703180906.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703181024.jpg b/content/wp-content/uploads/2014/12/20140703181024.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703181024.jpg
rename to content/wp-content/uploads/2014/12/20140703181024.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703181320.jpg b/content/wp-content/uploads/2014/12/20140703181320.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703181320.jpg
rename to content/wp-content/uploads/2014/12/20140703181320.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703181517.jpg b/content/wp-content/uploads/2014/12/20140703181517.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703181517.jpg
rename to content/wp-content/uploads/2014/12/20140703181517.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703181611.jpg b/content/wp-content/uploads/2014/12/20140703181611.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703181611.jpg
rename to content/wp-content/uploads/2014/12/20140703181611.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703203418.jpg b/content/wp-content/uploads/2014/12/20140703203418.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703203418.jpg
rename to content/wp-content/uploads/2014/12/20140703203418.jpg
diff --git a/files/wp-content/uploads/2014/12/20140703203717.jpg b/content/wp-content/uploads/2014/12/20140703203717.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140703203717.jpg
rename to content/wp-content/uploads/2014/12/20140703203717.jpg
diff --git a/files/wp-content/uploads/2014/12/20140704102958.jpg b/content/wp-content/uploads/2014/12/20140704102958.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140704102958.jpg
rename to content/wp-content/uploads/2014/12/20140704102958.jpg
diff --git a/files/wp-content/uploads/2014/12/20140704115156.jpg b/content/wp-content/uploads/2014/12/20140704115156.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140704115156.jpg
rename to content/wp-content/uploads/2014/12/20140704115156.jpg
diff --git a/files/wp-content/uploads/2014/12/20140704134921.jpg b/content/wp-content/uploads/2014/12/20140704134921.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140704134921.jpg
rename to content/wp-content/uploads/2014/12/20140704134921.jpg
diff --git a/files/wp-content/uploads/2014/12/20140704215506.jpg b/content/wp-content/uploads/2014/12/20140704215506.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140704215506.jpg
rename to content/wp-content/uploads/2014/12/20140704215506.jpg
diff --git a/files/wp-content/uploads/2014/12/20140705100455.jpg b/content/wp-content/uploads/2014/12/20140705100455.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140705100455.jpg
rename to content/wp-content/uploads/2014/12/20140705100455.jpg
diff --git a/files/wp-content/uploads/2014/12/20140705102834.jpg b/content/wp-content/uploads/2014/12/20140705102834.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140705102834.jpg
rename to content/wp-content/uploads/2014/12/20140705102834.jpg
diff --git a/files/wp-content/uploads/2014/12/20140705113156.jpg b/content/wp-content/uploads/2014/12/20140705113156.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140705113156.jpg
rename to content/wp-content/uploads/2014/12/20140705113156.jpg
diff --git a/files/wp-content/uploads/2014/12/20140706095606.jpg b/content/wp-content/uploads/2014/12/20140706095606.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140706095606.jpg
rename to content/wp-content/uploads/2014/12/20140706095606.jpg
diff --git a/files/wp-content/uploads/2014/12/20140825073629.jpg b/content/wp-content/uploads/2014/12/20140825073629.jpg
similarity index 100%
rename from files/wp-content/uploads/2014/12/20140825073629.jpg
rename to content/wp-content/uploads/2014/12/20140825073629.jpg
diff --git a/files/wp-content/uploads/2015/01/14-11.jpg b/content/wp-content/uploads/2015/01/14-11.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/14-11.jpg
rename to content/wp-content/uploads/2015/01/14-11.jpg
diff --git a/files/wp-content/uploads/2015/01/20140217091224_ORF_embedded.jpg b/content/wp-content/uploads/2015/01/20140217091224_ORF_embedded.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140217091224_ORF_embedded.jpg
rename to content/wp-content/uploads/2015/01/20140217091224_ORF_embedded.jpg
diff --git a/files/wp-content/uploads/2015/01/20140218182916_ORF_embedded.jpg b/content/wp-content/uploads/2015/01/20140218182916_ORF_embedded.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140218182916_ORF_embedded.jpg
rename to content/wp-content/uploads/2015/01/20140218182916_ORF_embedded.jpg
diff --git a/files/wp-content/uploads/2015/01/20140301135822_ORF_embedded.jpg b/content/wp-content/uploads/2015/01/20140301135822_ORF_embedded.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140301135822_ORF_embedded.jpg
rename to content/wp-content/uploads/2015/01/20140301135822_ORF_embedded.jpg
diff --git a/files/wp-content/uploads/2015/01/20140313062606.jpg b/content/wp-content/uploads/2015/01/20140313062606.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140313062606.jpg
rename to content/wp-content/uploads/2015/01/20140313062606.jpg
diff --git a/files/wp-content/uploads/2015/01/20140313170534_ORF_embedded.jpg b/content/wp-content/uploads/2015/01/20140313170534_ORF_embedded.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140313170534_ORF_embedded.jpg
rename to content/wp-content/uploads/2015/01/20140313170534_ORF_embedded.jpg
diff --git a/files/wp-content/uploads/2015/01/20140326173303.jpg b/content/wp-content/uploads/2015/01/20140326173303.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140326173303.jpg
rename to content/wp-content/uploads/2015/01/20140326173303.jpg
diff --git a/files/wp-content/uploads/2015/01/20140403140426.jpg b/content/wp-content/uploads/2015/01/20140403140426.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140403140426.jpg
rename to content/wp-content/uploads/2015/01/20140403140426.jpg
diff --git a/files/wp-content/uploads/2015/01/20140404174934.jpg b/content/wp-content/uploads/2015/01/20140404174934.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140404174934.jpg
rename to content/wp-content/uploads/2015/01/20140404174934.jpg
diff --git a/files/wp-content/uploads/2015/01/20140406111123.jpg b/content/wp-content/uploads/2015/01/20140406111123.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140406111123.jpg
rename to content/wp-content/uploads/2015/01/20140406111123.jpg
diff --git a/files/wp-content/uploads/2015/01/20140406145724.jpg b/content/wp-content/uploads/2015/01/20140406145724.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140406145724.jpg
rename to content/wp-content/uploads/2015/01/20140406145724.jpg
diff --git a/files/wp-content/uploads/2015/01/20140702071412.jpg b/content/wp-content/uploads/2015/01/20140702071412.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140702071412.jpg
rename to content/wp-content/uploads/2015/01/20140702071412.jpg
diff --git a/files/wp-content/uploads/2015/01/20140706100802.jpg b/content/wp-content/uploads/2015/01/20140706100802.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140706100802.jpg
rename to content/wp-content/uploads/2015/01/20140706100802.jpg
diff --git a/files/wp-content/uploads/2015/01/20140706110237.jpg b/content/wp-content/uploads/2015/01/20140706110237.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140706110237.jpg
rename to content/wp-content/uploads/2015/01/20140706110237.jpg
diff --git a/files/wp-content/uploads/2015/01/20140706110417.jpg b/content/wp-content/uploads/2015/01/20140706110417.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140706110417.jpg
rename to content/wp-content/uploads/2015/01/20140706110417.jpg
diff --git a/files/wp-content/uploads/2015/01/20140706133615.jpg b/content/wp-content/uploads/2015/01/20140706133615.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140706133615.jpg
rename to content/wp-content/uploads/2015/01/20140706133615.jpg
diff --git a/files/wp-content/uploads/2015/01/20140722195443.jpg b/content/wp-content/uploads/2015/01/20140722195443.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20140722195443.jpg
rename to content/wp-content/uploads/2015/01/20140722195443.jpg
diff --git a/files/wp-content/uploads/2015/01/20141216161530.jpg b/content/wp-content/uploads/2015/01/20141216161530.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20141216161530.jpg
rename to content/wp-content/uploads/2015/01/20141216161530.jpg
diff --git a/files/wp-content/uploads/2015/01/20141225082357.jpg b/content/wp-content/uploads/2015/01/20141225082357.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20141225082357.jpg
rename to content/wp-content/uploads/2015/01/20141225082357.jpg
diff --git a/files/wp-content/uploads/2015/01/20150115194213.jpg b/content/wp-content/uploads/2015/01/20150115194213.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150115194213.jpg
rename to content/wp-content/uploads/2015/01/20150115194213.jpg
diff --git a/files/wp-content/uploads/2015/01/20150116081700.jpg b/content/wp-content/uploads/2015/01/20150116081700.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150116081700.jpg
rename to content/wp-content/uploads/2015/01/20150116081700.jpg
diff --git a/files/wp-content/uploads/2015/01/20150116083823.jpg b/content/wp-content/uploads/2015/01/20150116083823.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150116083823.jpg
rename to content/wp-content/uploads/2015/01/20150116083823.jpg
diff --git a/files/wp-content/uploads/2015/01/20150117162014.jpg b/content/wp-content/uploads/2015/01/20150117162014.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150117162014.jpg
rename to content/wp-content/uploads/2015/01/20150117162014.jpg
diff --git a/files/wp-content/uploads/2015/01/20150117162532.jpg b/content/wp-content/uploads/2015/01/20150117162532.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150117162532.jpg
rename to content/wp-content/uploads/2015/01/20150117162532.jpg
diff --git a/files/wp-content/uploads/2015/01/20150117162548.jpg b/content/wp-content/uploads/2015/01/20150117162548.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150117162548.jpg
rename to content/wp-content/uploads/2015/01/20150117162548.jpg
diff --git a/files/wp-content/uploads/2015/01/20150117162858.jpg b/content/wp-content/uploads/2015/01/20150117162858.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150117162858.jpg
rename to content/wp-content/uploads/2015/01/20150117162858.jpg
diff --git a/files/wp-content/uploads/2015/01/20150117162912.jpg b/content/wp-content/uploads/2015/01/20150117162912.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150117162912.jpg
rename to content/wp-content/uploads/2015/01/20150117162912.jpg
diff --git a/files/wp-content/uploads/2015/01/20150118173759.jpg b/content/wp-content/uploads/2015/01/20150118173759.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150118173759.jpg
rename to content/wp-content/uploads/2015/01/20150118173759.jpg
diff --git a/files/wp-content/uploads/2015/01/20150120182641.jpg b/content/wp-content/uploads/2015/01/20150120182641.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/20150120182641.jpg
rename to content/wp-content/uploads/2015/01/20150120182641.jpg
diff --git a/files/wp-content/uploads/2015/01/CAM00159(1).jpg b/content/wp-content/uploads/2015/01/CAM00159(1).jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/CAM00159(1).jpg
rename to content/wp-content/uploads/2015/01/CAM00159(1).jpg
diff --git a/files/wp-content/uploads/2015/01/IMG_20140511_221843.jpg b/content/wp-content/uploads/2015/01/IMG_20140511_221843.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/01/IMG_20140511_221843.jpg
rename to content/wp-content/uploads/2015/01/IMG_20140511_221843.jpg
diff --git a/files/wp-content/uploads/2015/02/20150120182721.jpg b/content/wp-content/uploads/2015/02/20150120182721.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150120182721.jpg
rename to content/wp-content/uploads/2015/02/20150120182721.jpg
diff --git a/files/wp-content/uploads/2015/02/20150120182749.jpg b/content/wp-content/uploads/2015/02/20150120182749.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150120182749.jpg
rename to content/wp-content/uploads/2015/02/20150120182749.jpg
diff --git a/files/wp-content/uploads/2015/02/20150120183512.jpg b/content/wp-content/uploads/2015/02/20150120183512.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150120183512.jpg
rename to content/wp-content/uploads/2015/02/20150120183512.jpg
diff --git a/files/wp-content/uploads/2015/02/20150120183604.jpg b/content/wp-content/uploads/2015/02/20150120183604.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150120183604.jpg
rename to content/wp-content/uploads/2015/02/20150120183604.jpg
diff --git a/files/wp-content/uploads/2015/02/20150120183625.jpg b/content/wp-content/uploads/2015/02/20150120183625.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150120183625.jpg
rename to content/wp-content/uploads/2015/02/20150120183625.jpg
diff --git a/files/wp-content/uploads/2015/02/20150127075737.jpg b/content/wp-content/uploads/2015/02/20150127075737.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150127075737.jpg
rename to content/wp-content/uploads/2015/02/20150127075737.jpg
diff --git a/files/wp-content/uploads/2015/02/20150127112648.jpg b/content/wp-content/uploads/2015/02/20150127112648.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150127112648.jpg
rename to content/wp-content/uploads/2015/02/20150127112648.jpg
diff --git a/files/wp-content/uploads/2015/02/20150205190502.jpg b/content/wp-content/uploads/2015/02/20150205190502.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150205190502.jpg
rename to content/wp-content/uploads/2015/02/20150205190502.jpg
diff --git a/files/wp-content/uploads/2015/02/20150207124134.jpg b/content/wp-content/uploads/2015/02/20150207124134.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150207124134.jpg
rename to content/wp-content/uploads/2015/02/20150207124134.jpg
diff --git a/files/wp-content/uploads/2015/02/20150210212620.jpg b/content/wp-content/uploads/2015/02/20150210212620.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150210212620.jpg
rename to content/wp-content/uploads/2015/02/20150210212620.jpg
diff --git a/files/wp-content/uploads/2015/02/20150210231552.jpg b/content/wp-content/uploads/2015/02/20150210231552.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150210231552.jpg
rename to content/wp-content/uploads/2015/02/20150210231552.jpg
diff --git a/files/wp-content/uploads/2015/02/20150210231910.jpg b/content/wp-content/uploads/2015/02/20150210231910.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150210231910.jpg
rename to content/wp-content/uploads/2015/02/20150210231910.jpg
diff --git a/files/wp-content/uploads/2015/02/20150211133505.jpg b/content/wp-content/uploads/2015/02/20150211133505.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150211133505.jpg
rename to content/wp-content/uploads/2015/02/20150211133505.jpg
diff --git a/files/wp-content/uploads/2015/02/20150212224337.jpg b/content/wp-content/uploads/2015/02/20150212224337.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150212224337.jpg
rename to content/wp-content/uploads/2015/02/20150212224337.jpg
diff --git a/files/wp-content/uploads/2015/02/20150212224516.jpg b/content/wp-content/uploads/2015/02/20150212224516.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150212224516.jpg
rename to content/wp-content/uploads/2015/02/20150212224516.jpg
diff --git a/files/wp-content/uploads/2015/02/20150212225431.jpg b/content/wp-content/uploads/2015/02/20150212225431.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150212225431.jpg
rename to content/wp-content/uploads/2015/02/20150212225431.jpg
diff --git a/files/wp-content/uploads/2015/02/20150215161621.jpg b/content/wp-content/uploads/2015/02/20150215161621.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150215161621.jpg
rename to content/wp-content/uploads/2015/02/20150215161621.jpg
diff --git a/files/wp-content/uploads/2015/02/20150222160127.jpg b/content/wp-content/uploads/2015/02/20150222160127.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150222160127.jpg
rename to content/wp-content/uploads/2015/02/20150222160127.jpg
diff --git a/files/wp-content/uploads/2015/02/20150222164105.jpg b/content/wp-content/uploads/2015/02/20150222164105.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150222164105.jpg
rename to content/wp-content/uploads/2015/02/20150222164105.jpg
diff --git a/files/wp-content/uploads/2015/02/20150222165256.jpg b/content/wp-content/uploads/2015/02/20150222165256.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150222165256.jpg
rename to content/wp-content/uploads/2015/02/20150222165256.jpg
diff --git a/files/wp-content/uploads/2015/02/20150222171434.jpg b/content/wp-content/uploads/2015/02/20150222171434.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150222171434.jpg
rename to content/wp-content/uploads/2015/02/20150222171434.jpg
diff --git a/files/wp-content/uploads/2015/02/20150222171500.jpg b/content/wp-content/uploads/2015/02/20150222171500.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150222171500.jpg
rename to content/wp-content/uploads/2015/02/20150222171500.jpg
diff --git a/files/wp-content/uploads/2015/02/20150222171547.jpg b/content/wp-content/uploads/2015/02/20150222171547.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150222171547.jpg
rename to content/wp-content/uploads/2015/02/20150222171547.jpg
diff --git a/files/wp-content/uploads/2015/02/20150222171602.jpg b/content/wp-content/uploads/2015/02/20150222171602.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150222171602.jpg
rename to content/wp-content/uploads/2015/02/20150222171602.jpg
diff --git a/files/wp-content/uploads/2015/02/20150222171622.jpg b/content/wp-content/uploads/2015/02/20150222171622.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/20150222171622.jpg
rename to content/wp-content/uploads/2015/02/20150222171622.jpg
diff --git a/files/wp-content/uploads/2015/02/IMG_1717.jpg b/content/wp-content/uploads/2015/02/IMG_1717.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/IMG_1717.jpg
rename to content/wp-content/uploads/2015/02/IMG_1717.jpg
diff --git a/files/wp-content/uploads/2015/02/IMG_1726.jpg b/content/wp-content/uploads/2015/02/IMG_1726.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/IMG_1726.jpg
rename to content/wp-content/uploads/2015/02/IMG_1726.jpg
diff --git a/files/wp-content/uploads/2015/02/PANO_20150210_174319_1.jpg b/content/wp-content/uploads/2015/02/PANO_20150210_174319_1.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/PANO_20150210_174319_1.jpg
rename to content/wp-content/uploads/2015/02/PANO_20150210_174319_1.jpg
diff --git a/files/wp-content/uploads/2015/02/img_4744.jpg b/content/wp-content/uploads/2015/02/img_4744.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/02/img_4744.jpg
rename to content/wp-content/uploads/2015/02/img_4744.jpg
diff --git a/files/wp-content/uploads/2015/03/20150222171622.jpg b/content/wp-content/uploads/2015/03/20150222171622.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/03/20150222171622.jpg
rename to content/wp-content/uploads/2015/03/20150222171622.jpg
diff --git a/files/wp-content/uploads/2015/03/20150222171854.jpg b/content/wp-content/uploads/2015/03/20150222171854.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/03/20150222171854.jpg
rename to content/wp-content/uploads/2015/03/20150222171854.jpg
diff --git a/files/wp-content/uploads/2015/03/20150222173215.jpg b/content/wp-content/uploads/2015/03/20150222173215.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/03/20150222173215.jpg
rename to content/wp-content/uploads/2015/03/20150222173215.jpg
diff --git a/files/wp-content/uploads/2015/07/20021208120000.jpg b/content/wp-content/uploads/2015/07/20021208120000.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20021208120000.jpg
rename to content/wp-content/uploads/2015/07/20021208120000.jpg
diff --git a/files/wp-content/uploads/2015/07/20150704142306.jpg b/content/wp-content/uploads/2015/07/20150704142306.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150704142306.jpg
rename to content/wp-content/uploads/2015/07/20150704142306.jpg
diff --git a/files/wp-content/uploads/2015/07/20150704142714.jpg b/content/wp-content/uploads/2015/07/20150704142714.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150704142714.jpg
rename to content/wp-content/uploads/2015/07/20150704142714.jpg
diff --git a/files/wp-content/uploads/2015/07/20150704142941.jpg b/content/wp-content/uploads/2015/07/20150704142941.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150704142941.jpg
rename to content/wp-content/uploads/2015/07/20150704142941.jpg
diff --git a/files/wp-content/uploads/2015/07/20150704143004.jpg b/content/wp-content/uploads/2015/07/20150704143004.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150704143004.jpg
rename to content/wp-content/uploads/2015/07/20150704143004.jpg
diff --git a/files/wp-content/uploads/2015/07/20150704144519.jpg b/content/wp-content/uploads/2015/07/20150704144519.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150704144519.jpg
rename to content/wp-content/uploads/2015/07/20150704144519.jpg
diff --git a/files/wp-content/uploads/2015/07/20150704144534.jpg b/content/wp-content/uploads/2015/07/20150704144534.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150704144534.jpg
rename to content/wp-content/uploads/2015/07/20150704144534.jpg
diff --git a/files/wp-content/uploads/2015/07/20150704144600.jpg b/content/wp-content/uploads/2015/07/20150704144600.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150704144600.jpg
rename to content/wp-content/uploads/2015/07/20150704144600.jpg
diff --git a/files/wp-content/uploads/2015/07/20150704145036.jpg b/content/wp-content/uploads/2015/07/20150704145036.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150704145036.jpg
rename to content/wp-content/uploads/2015/07/20150704145036.jpg
diff --git a/files/wp-content/uploads/2015/07/20150704153847.jpg b/content/wp-content/uploads/2015/07/20150704153847.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150704153847.jpg
rename to content/wp-content/uploads/2015/07/20150704153847.jpg
diff --git a/files/wp-content/uploads/2015/07/20150705115058.jpg b/content/wp-content/uploads/2015/07/20150705115058.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150705115058.jpg
rename to content/wp-content/uploads/2015/07/20150705115058.jpg
diff --git a/files/wp-content/uploads/2015/07/20150705115117.jpg b/content/wp-content/uploads/2015/07/20150705115117.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/07/20150705115117.jpg
rename to content/wp-content/uploads/2015/07/20150705115117.jpg
diff --git a/files/wp-content/uploads/2015/08/20150705115416.jpg b/content/wp-content/uploads/2015/08/20150705115416.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150705115416.jpg
rename to content/wp-content/uploads/2015/08/20150705115416.jpg
diff --git a/files/wp-content/uploads/2015/08/20150705115428.jpg b/content/wp-content/uploads/2015/08/20150705115428.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150705115428.jpg
rename to content/wp-content/uploads/2015/08/20150705115428.jpg
diff --git a/files/wp-content/uploads/2015/08/20150705115553.jpg b/content/wp-content/uploads/2015/08/20150705115553.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150705115553.jpg
rename to content/wp-content/uploads/2015/08/20150705115553.jpg
diff --git a/files/wp-content/uploads/2015/08/20150705120816.jpg b/content/wp-content/uploads/2015/08/20150705120816.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150705120816.jpg
rename to content/wp-content/uploads/2015/08/20150705120816.jpg
diff --git a/files/wp-content/uploads/2015/08/20150705121513.jpg b/content/wp-content/uploads/2015/08/20150705121513.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150705121513.jpg
rename to content/wp-content/uploads/2015/08/20150705121513.jpg
diff --git a/files/wp-content/uploads/2015/08/20150705122327.jpg b/content/wp-content/uploads/2015/08/20150705122327.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150705122327.jpg
rename to content/wp-content/uploads/2015/08/20150705122327.jpg
diff --git a/files/wp-content/uploads/2015/08/20150705122436.jpg b/content/wp-content/uploads/2015/08/20150705122436.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150705122436.jpg
rename to content/wp-content/uploads/2015/08/20150705122436.jpg
diff --git a/files/wp-content/uploads/2015/08/20150705123935.jpg b/content/wp-content/uploads/2015/08/20150705123935.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150705123935.jpg
rename to content/wp-content/uploads/2015/08/20150705123935.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706080810.jpg b/content/wp-content/uploads/2015/08/20150706080810.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706080810.jpg
rename to content/wp-content/uploads/2015/08/20150706080810.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706092540.jpg b/content/wp-content/uploads/2015/08/20150706092540.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706092540.jpg
rename to content/wp-content/uploads/2015/08/20150706092540.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706135619.jpg b/content/wp-content/uploads/2015/08/20150706135619.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706135619.jpg
rename to content/wp-content/uploads/2015/08/20150706135619.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706145430.jpg b/content/wp-content/uploads/2015/08/20150706145430.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706145430.jpg
rename to content/wp-content/uploads/2015/08/20150706145430.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706151037.jpg b/content/wp-content/uploads/2015/08/20150706151037.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706151037.jpg
rename to content/wp-content/uploads/2015/08/20150706151037.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706151222.jpg b/content/wp-content/uploads/2015/08/20150706151222.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706151222.jpg
rename to content/wp-content/uploads/2015/08/20150706151222.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706153259.jpg b/content/wp-content/uploads/2015/08/20150706153259.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706153259.jpg
rename to content/wp-content/uploads/2015/08/20150706153259.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706153442.jpg b/content/wp-content/uploads/2015/08/20150706153442.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706153442.jpg
rename to content/wp-content/uploads/2015/08/20150706153442.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706153812.jpg b/content/wp-content/uploads/2015/08/20150706153812.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706153812.jpg
rename to content/wp-content/uploads/2015/08/20150706153812.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706153925.jpg b/content/wp-content/uploads/2015/08/20150706153925.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706153925.jpg
rename to content/wp-content/uploads/2015/08/20150706153925.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706153938.jpg b/content/wp-content/uploads/2015/08/20150706153938.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706153938.jpg
rename to content/wp-content/uploads/2015/08/20150706153938.jpg
diff --git a/files/wp-content/uploads/2015/08/20150706154152.jpg b/content/wp-content/uploads/2015/08/20150706154152.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150706154152.jpg
rename to content/wp-content/uploads/2015/08/20150706154152.jpg
diff --git a/files/wp-content/uploads/2015/08/20150707110811.jpg b/content/wp-content/uploads/2015/08/20150707110811.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150707110811.jpg
rename to content/wp-content/uploads/2015/08/20150707110811.jpg
diff --git a/files/wp-content/uploads/2015/08/20150707141537.jpg b/content/wp-content/uploads/2015/08/20150707141537.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150707141537.jpg
rename to content/wp-content/uploads/2015/08/20150707141537.jpg
diff --git a/files/wp-content/uploads/2015/08/20150708123602.jpg b/content/wp-content/uploads/2015/08/20150708123602.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150708123602.jpg
rename to content/wp-content/uploads/2015/08/20150708123602.jpg
diff --git a/files/wp-content/uploads/2015/08/20150708134205.jpg b/content/wp-content/uploads/2015/08/20150708134205.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150708134205.jpg
rename to content/wp-content/uploads/2015/08/20150708134205.jpg
diff --git a/files/wp-content/uploads/2015/08/20150708134213.jpg b/content/wp-content/uploads/2015/08/20150708134213.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150708134213.jpg
rename to content/wp-content/uploads/2015/08/20150708134213.jpg
diff --git a/files/wp-content/uploads/2015/08/20150708134856.jpg b/content/wp-content/uploads/2015/08/20150708134856.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150708134856.jpg
rename to content/wp-content/uploads/2015/08/20150708134856.jpg
diff --git a/files/wp-content/uploads/2015/08/20150708135001.jpg b/content/wp-content/uploads/2015/08/20150708135001.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150708135001.jpg
rename to content/wp-content/uploads/2015/08/20150708135001.jpg
diff --git a/files/wp-content/uploads/2015/08/20150708141403.jpg b/content/wp-content/uploads/2015/08/20150708141403.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150708141403.jpg
rename to content/wp-content/uploads/2015/08/20150708141403.jpg
diff --git a/files/wp-content/uploads/2015/08/20150803074118.jpg b/content/wp-content/uploads/2015/08/20150803074118.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150803074118.jpg
rename to content/wp-content/uploads/2015/08/20150803074118.jpg
diff --git a/files/wp-content/uploads/2015/08/20150804075136.jpg b/content/wp-content/uploads/2015/08/20150804075136.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150804075136.jpg
rename to content/wp-content/uploads/2015/08/20150804075136.jpg
diff --git a/files/wp-content/uploads/2015/08/20150809193454.jpg b/content/wp-content/uploads/2015/08/20150809193454.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/08/20150809193454.jpg
rename to content/wp-content/uploads/2015/08/20150809193454.jpg
diff --git a/files/wp-content/uploads/2015/09/20150810174519.jpg b/content/wp-content/uploads/2015/09/20150810174519.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/09/20150810174519.jpg
rename to content/wp-content/uploads/2015/09/20150810174519.jpg
diff --git a/files/wp-content/uploads/2015/09/20150810174538.jpg b/content/wp-content/uploads/2015/09/20150810174538.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/09/20150810174538.jpg
rename to content/wp-content/uploads/2015/09/20150810174538.jpg
diff --git a/files/wp-content/uploads/2015/09/20150811180411.jpg b/content/wp-content/uploads/2015/09/20150811180411.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/09/20150811180411.jpg
rename to content/wp-content/uploads/2015/09/20150811180411.jpg
diff --git a/files/wp-content/uploads/2015/09/20150813074407.jpg b/content/wp-content/uploads/2015/09/20150813074407.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/09/20150813074407.jpg
rename to content/wp-content/uploads/2015/09/20150813074407.jpg
diff --git a/files/wp-content/uploads/2015/09/20150815102011.jpg b/content/wp-content/uploads/2015/09/20150815102011.jpg
similarity index 100%
rename from files/wp-content/uploads/2015/09/20150815102011.jpg
rename to content/wp-content/uploads/2015/09/20150815102011.jpg
diff --git a/files/wp-content/uploads/20150115194213.jpg b/content/wp-content/uploads/20150115194213.jpg
similarity index 100%
rename from files/wp-content/uploads/20150115194213.jpg
rename to content/wp-content/uploads/20150115194213.jpg
diff --git a/files/wp-content/uploads/20150116081700.jpg b/content/wp-content/uploads/20150116081700.jpg
similarity index 100%
rename from files/wp-content/uploads/20150116081700.jpg
rename to content/wp-content/uploads/20150116081700.jpg
diff --git a/files/wp-content/uploads/20150116083823.jpg b/content/wp-content/uploads/20150116083823.jpg
similarity index 100%
rename from files/wp-content/uploads/20150116083823.jpg
rename to content/wp-content/uploads/20150116083823.jpg
diff --git a/files/wp-content/uploads/20150117162014.jpg b/content/wp-content/uploads/20150117162014.jpg
similarity index 100%
rename from files/wp-content/uploads/20150117162014.jpg
rename to content/wp-content/uploads/20150117162014.jpg
diff --git a/files/wp-content/uploads/20150117162912.jpg b/content/wp-content/uploads/20150117162912.jpg
similarity index 100%
rename from files/wp-content/uploads/20150117162912.jpg
rename to content/wp-content/uploads/20150117162912.jpg
diff --git a/files/wp-content/uploads/20150118173759.jpg b/content/wp-content/uploads/20150118173759.jpg
similarity index 100%
rename from files/wp-content/uploads/20150118173759.jpg
rename to content/wp-content/uploads/20150118173759.jpg
diff --git a/files/wp-content/uploads/20150120182641.jpg b/content/wp-content/uploads/20150120182641.jpg
similarity index 100%
rename from files/wp-content/uploads/20150120182641.jpg
rename to content/wp-content/uploads/20150120182641.jpg
diff --git a/files/wp-content/uploads/20150120182721.jpg b/content/wp-content/uploads/20150120182721.jpg
similarity index 100%
rename from files/wp-content/uploads/20150120182721.jpg
rename to content/wp-content/uploads/20150120182721.jpg
diff --git a/files/wp-content/uploads/20150120182749.jpg b/content/wp-content/uploads/20150120182749.jpg
similarity index 100%
rename from files/wp-content/uploads/20150120182749.jpg
rename to content/wp-content/uploads/20150120182749.jpg
diff --git a/files/wp-content/uploads/20150127075737.jpg b/content/wp-content/uploads/20150127075737.jpg
similarity index 100%
rename from files/wp-content/uploads/20150127075737.jpg
rename to content/wp-content/uploads/20150127075737.jpg
diff --git a/files/wp-content/uploads/20150127112648.jpg b/content/wp-content/uploads/20150127112648.jpg
similarity index 100%
rename from files/wp-content/uploads/20150127112648.jpg
rename to content/wp-content/uploads/20150127112648.jpg
diff --git a/files/wp-content/uploads/20150205190502.jpg b/content/wp-content/uploads/20150205190502.jpg
similarity index 100%
rename from files/wp-content/uploads/20150205190502.jpg
rename to content/wp-content/uploads/20150205190502.jpg
diff --git a/files/wp-content/uploads/2018/12/20181112114249.jpg b/content/wp-content/uploads/2018/12/20181112114249.jpg
similarity index 100%
rename from files/wp-content/uploads/2018/12/20181112114249.jpg
rename to content/wp-content/uploads/2018/12/20181112114249.jpg
diff --git a/files/wp-content/uploads/2018/12/20181209182208.jpg b/content/wp-content/uploads/2018/12/20181209182208.jpg
similarity index 100%
rename from files/wp-content/uploads/2018/12/20181209182208.jpg
rename to content/wp-content/uploads/2018/12/20181209182208.jpg
diff --git a/files/wp-content/uploads/2019/01/20190101182342.jpg b/content/wp-content/uploads/2019/01/20190101182342.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/01/20190101182342.jpg
rename to content/wp-content/uploads/2019/01/20190101182342.jpg
diff --git a/files/wp-content/uploads/2019/01/20190109065804.jpg b/content/wp-content/uploads/2019/01/20190109065804.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/01/20190109065804.jpg
rename to content/wp-content/uploads/2019/01/20190109065804.jpg
diff --git a/files/wp-content/uploads/2019/01/20190117074054.jpg b/content/wp-content/uploads/2019/01/20190117074054.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/01/20190117074054.jpg
rename to content/wp-content/uploads/2019/01/20190117074054.jpg
diff --git a/files/wp-content/uploads/2019/01/20190125075731.jpg b/content/wp-content/uploads/2019/01/20190125075731.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/01/20190125075731.jpg
rename to content/wp-content/uploads/2019/01/20190125075731.jpg
diff --git a/files/wp-content/uploads/2019/02/20190126141820.jpg b/content/wp-content/uploads/2019/02/20190126141820.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/02/20190126141820.jpg
rename to content/wp-content/uploads/2019/02/20190126141820.jpg
diff --git a/files/wp-content/uploads/2019/02/20190202144335.jpg b/content/wp-content/uploads/2019/02/20190202144335.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/02/20190202144335.jpg
rename to content/wp-content/uploads/2019/02/20190202144335.jpg
diff --git a/files/wp-content/uploads/2019/02/20190210154207.jpg b/content/wp-content/uploads/2019/02/20190210154207.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/02/20190210154207.jpg
rename to content/wp-content/uploads/2019/02/20190210154207.jpg
diff --git a/files/wp-content/uploads/2019/02/20190221154455.jpg b/content/wp-content/uploads/2019/02/20190221154455.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/02/20190221154455.jpg
rename to content/wp-content/uploads/2019/02/20190221154455.jpg
diff --git a/files/wp-content/uploads/2019/03/20190228184848.jpg b/content/wp-content/uploads/2019/03/20190228184848.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/03/20190228184848.jpg
rename to content/wp-content/uploads/2019/03/20190228184848.jpg
diff --git a/files/wp-content/uploads/2019/03/20190307075921.jpg b/content/wp-content/uploads/2019/03/20190307075921.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/03/20190307075921.jpg
rename to content/wp-content/uploads/2019/03/20190307075921.jpg
diff --git a/files/wp-content/uploads/2019/03/20190312085038.jpg b/content/wp-content/uploads/2019/03/20190312085038.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/03/20190312085038.jpg
rename to content/wp-content/uploads/2019/03/20190312085038.jpg
diff --git a/files/wp-content/uploads/2019/03/20190316160220.jpg b/content/wp-content/uploads/2019/03/20190316160220.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/03/20190316160220.jpg
rename to content/wp-content/uploads/2019/03/20190316160220.jpg
diff --git a/files/wp-content/uploads/2019/03/20190323155127218.jpg b/content/wp-content/uploads/2019/03/20190323155127218.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/03/20190323155127218.jpg
rename to content/wp-content/uploads/2019/03/20190323155127218.jpg
diff --git a/files/wp-content/uploads/2019/04/20190404114452.jpg b/content/wp-content/uploads/2019/04/20190404114452.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/04/20190404114452.jpg
rename to content/wp-content/uploads/2019/04/20190404114452.jpg
diff --git a/files/wp-content/uploads/2019/04/20190412150030.jpg b/content/wp-content/uploads/2019/04/20190412150030.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/04/20190412150030.jpg
rename to content/wp-content/uploads/2019/04/20190412150030.jpg
diff --git a/files/wp-content/uploads/2019/04/20190414070453.jpg b/content/wp-content/uploads/2019/04/20190414070453.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/04/20190414070453.jpg
rename to content/wp-content/uploads/2019/04/20190414070453.jpg
diff --git a/files/wp-content/uploads/2019/04/20190421083848.jpg b/content/wp-content/uploads/2019/04/20190421083848.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/04/20190421083848.jpg
rename to content/wp-content/uploads/2019/04/20190421083848.jpg
diff --git a/files/wp-content/uploads/2019/05/20190430074526.jpg b/content/wp-content/uploads/2019/05/20190430074526.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190430074526.jpg
rename to content/wp-content/uploads/2019/05/20190430074526.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505183341.jpg b/content/wp-content/uploads/2019/05/20190505183341.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505183341.jpg
rename to content/wp-content/uploads/2019/05/20190505183341.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505183410.jpg b/content/wp-content/uploads/2019/05/20190505183410.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505183410.jpg
rename to content/wp-content/uploads/2019/05/20190505183410.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505183632.jpg b/content/wp-content/uploads/2019/05/20190505183632.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505183632.jpg
rename to content/wp-content/uploads/2019/05/20190505183632.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505183856.jpg b/content/wp-content/uploads/2019/05/20190505183856.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505183856.jpg
rename to content/wp-content/uploads/2019/05/20190505183856.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505183906.jpg b/content/wp-content/uploads/2019/05/20190505183906.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505183906.jpg
rename to content/wp-content/uploads/2019/05/20190505183906.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505183926.jpg b/content/wp-content/uploads/2019/05/20190505183926.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505183926.jpg
rename to content/wp-content/uploads/2019/05/20190505183926.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505183957.jpg b/content/wp-content/uploads/2019/05/20190505183957.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505183957.jpg
rename to content/wp-content/uploads/2019/05/20190505183957.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505184051.jpg b/content/wp-content/uploads/2019/05/20190505184051.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505184051.jpg
rename to content/wp-content/uploads/2019/05/20190505184051.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505184302.jpg b/content/wp-content/uploads/2019/05/20190505184302.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505184302.jpg
rename to content/wp-content/uploads/2019/05/20190505184302.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505184333.jpg b/content/wp-content/uploads/2019/05/20190505184333.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505184333.jpg
rename to content/wp-content/uploads/2019/05/20190505184333.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505184438.jpg b/content/wp-content/uploads/2019/05/20190505184438.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505184438.jpg
rename to content/wp-content/uploads/2019/05/20190505184438.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505184556.jpg b/content/wp-content/uploads/2019/05/20190505184556.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505184556.jpg
rename to content/wp-content/uploads/2019/05/20190505184556.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505184616.jpg b/content/wp-content/uploads/2019/05/20190505184616.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505184616.jpg
rename to content/wp-content/uploads/2019/05/20190505184616.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505184748.jpg b/content/wp-content/uploads/2019/05/20190505184748.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505184748.jpg
rename to content/wp-content/uploads/2019/05/20190505184748.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505184944.jpg b/content/wp-content/uploads/2019/05/20190505184944.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505184944.jpg
rename to content/wp-content/uploads/2019/05/20190505184944.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505185109.jpg b/content/wp-content/uploads/2019/05/20190505185109.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505185109.jpg
rename to content/wp-content/uploads/2019/05/20190505185109.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505185146.jpg b/content/wp-content/uploads/2019/05/20190505185146.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505185146.jpg
rename to content/wp-content/uploads/2019/05/20190505185146.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505185213.jpg b/content/wp-content/uploads/2019/05/20190505185213.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505185213.jpg
rename to content/wp-content/uploads/2019/05/20190505185213.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505185223.jpg b/content/wp-content/uploads/2019/05/20190505185223.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505185223.jpg
rename to content/wp-content/uploads/2019/05/20190505185223.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505185243.jpg b/content/wp-content/uploads/2019/05/20190505185243.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505185243.jpg
rename to content/wp-content/uploads/2019/05/20190505185243.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505185632.jpg b/content/wp-content/uploads/2019/05/20190505185632.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505185632.jpg
rename to content/wp-content/uploads/2019/05/20190505185632.jpg
diff --git a/files/wp-content/uploads/2019/05/20190505185801.jpg b/content/wp-content/uploads/2019/05/20190505185801.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190505185801.jpg
rename to content/wp-content/uploads/2019/05/20190505185801.jpg
diff --git a/files/wp-content/uploads/2019/05/20190510143759.jpg b/content/wp-content/uploads/2019/05/20190510143759.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190510143759.jpg
rename to content/wp-content/uploads/2019/05/20190510143759.jpg
diff --git a/files/wp-content/uploads/2019/05/20190511110636.jpg b/content/wp-content/uploads/2019/05/20190511110636.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190511110636.jpg
rename to content/wp-content/uploads/2019/05/20190511110636.jpg
diff --git a/files/wp-content/uploads/2019/05/20190518120737.jpg b/content/wp-content/uploads/2019/05/20190518120737.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190518120737.jpg
rename to content/wp-content/uploads/2019/05/20190518120737.jpg
diff --git a/files/wp-content/uploads/2019/05/20190531072716106561.jpg b/content/wp-content/uploads/2019/05/20190531072716106561.jpg
similarity index 100%
rename from files/wp-content/uploads/2019/05/20190531072716106561.jpg
rename to content/wp-content/uploads/2019/05/20190531072716106561.jpg
diff --git a/files/wp-content/uploads/IMG_1717.jpg b/content/wp-content/uploads/IMG_1717.jpg
similarity index 100%
rename from files/wp-content/uploads/IMG_1717.jpg
rename to content/wp-content/uploads/IMG_1717.jpg
diff --git a/files/wp-content/uploads/IMG_1726.jpg b/content/wp-content/uploads/IMG_1726.jpg
similarity index 100%
rename from files/wp-content/uploads/IMG_1726.jpg
rename to content/wp-content/uploads/IMG_1726.jpg
diff --git a/import_feed/README.md b/import_feed/README.md
deleted file mode 100644
index f5e1fa06..00000000
--- a/import_feed/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-This plugin will do a quick and dirty import of any RSS or Atom feed into Nikola
-
-To use it:
-
-```
-$ nikola plugin -i import_feed
-$ nikola import_feed feed_url
-```
-
diff --git a/import_feed/import_feed.plugin b/import_feed/import_feed.plugin
deleted file mode 100644
index 26e570a5..00000000
--- a/import_feed/import_feed.plugin
+++ /dev/null
@@ -1,10 +0,0 @@
-[Core]
-Name = import_feed
-Module = import_feed
-
-[Documentation]
-Author = Grzegorz Śliwiński
-Version = 0.1
-Website = http://www.fizyk.net.pl/
-Description = Import a blog posts from a RSS/Atom dump
-
diff --git a/import_feed/import_feed.py b/import_feed/import_feed.py
deleted file mode 100644
index ee592771..00000000
--- a/import_feed/import_feed.py
+++ /dev/null
@@ -1,200 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Copyright © 2012-2014 Roberto Alsina and others.
-
-# Permission is hereby granted, free of charge, to any
-# person obtaining a copy of this software and associated
-# documentation files (the "Software"), to deal in the
-# Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish,
-# distribute, sublicense, and/or sell copies of the
-# Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice
-# shall be included in all copies or substantial portions of
-# the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
-# PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
-# OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
-# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
-# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-from __future__ import unicode_literals, print_function
-import datetime
-import os
-import time
-
-try:
- from urlparse import urlparse
-except ImportError:
- from urllib.parse import urlparse # NOQA
-
-try:
- import feedparser
-except ImportError:
- feedparser = None # NOQA
-
-from nikola.plugin_categories import Command
-from nikola import utils
-from nikola.utils import req_missing
-from nikola.plugins.basic_import import ImportMixin
-from nikola.plugins.command.init import SAMPLE_CONF, prepare_config
-
-LOGGER = utils.get_logger('import_feed', utils.STDERR_HANDLER)
-
-
-class CommandImportFeed(Command, ImportMixin):
- """Import a feed dump."""
-
- name = "import_feed"
- needs_config = False
- doc_usage = "[options] feed_file"
- doc_purpose = "import a RSS/Atom dump"
- cmd_options = ImportMixin.cmd_options
-
- def _execute(self, options, args):
- '''
- Import Atom/RSS feed
- '''
- if feedparser is None:
- req_missing(['feedparser'], 'import feeds')
- return
-
- if not args:
- print(self.help())
- return
-
- options['filename'] = args[0]
- self.feed_export_file = options['filename']
- self.output_folder = options['output_folder']
- self.import_into_existing_site = False
- self.url_map = {}
- channel = self.get_channel_from_file(self.feed_export_file)
- self.context = self.populate_context(channel)
- conf_template = self.generate_base_site()
- self.context['REDIRECTIONS'] = self.configure_redirections(
- self.url_map)
-
- self.import_posts(channel)
-
- self.write_configuration(self.get_configuration_output_path(
- ), conf_template.render(**prepare_config(self.context)))
-
- @classmethod
- def get_channel_from_file(cls, filename):
- return feedparser.parse(filename)
-
- @staticmethod
- def populate_context(channel):
- context = SAMPLE_CONF.copy()
- context['DEFAULT_LANG'] = channel.feed.title_detail.language \
- if channel.feed.title_detail.language else 'en'
- context['BLOG_TITLE'] = channel.feed.title
-
- context['BLOG_DESCRIPTION'] = channel.feed.get('subtitle', '')
- context['SITE_URL'] = channel.feed.get('link', '').rstrip('/')
- context['BLOG_EMAIL'] = channel.feed.author_detail.get('email', '') if 'author_detail' in channel.feed else ''
- context['BLOG_AUTHOR'] = channel.feed.author_detail.get('name', '') if 'author_detail' in channel.feed else ''
-
- context['POSTS'] = '''(
- ("posts/*.html", "posts", "post.tmpl"),
- )'''
- context['PAGES'] = '''(
- ("stories/*.html", "stories", "story.tmpl"),
- )'''
- context['COMPILERS'] = '''{
- "rest": ('.txt', '.rst'),
- "markdown": ('.md', '.mdown', '.markdown', '.wp'),
- "html": ('.html', '.htm')
- }
- '''
-
- return context
-
- def import_posts(self, channel):
- for item in channel.entries:
- self.process_item(item)
-
- def process_item(self, item):
- self.import_item(item, 'posts')
-
- def import_item(self, item, out_folder=None):
- """Takes an item from the feed and creates a post file."""
- if out_folder is None:
- out_folder = 'posts'
-
- # link is something like http://foo.com/2012/09/01/hello-world/
- # So, take the path, utils.slugify it, and that's our slug
- link = item.link
- link_path = urlparse(link).path
-
- title = item.title
-
- # blogger supports empty titles, which Nikola doesn't
- if not title:
- LOGGER.warn("Empty title in post with URL {0}. Using NO_TITLE "
- "as placeholder, please fix.".format(link))
- title = "NO_TITLE"
-
- if link_path.lower().endswith('.html'):
- link_path = link_path[:-5]
-
- slug = utils.slugify(link_path)
-
- if not slug: # should never happen
- LOGGER.error("Error converting post:", title)
- return
-
- description = ''
- post_date = datetime.datetime.fromtimestamp(time.mktime(
- item.published_parsed))
- if item.get('content'):
- for candidate in item.get('content', []):
- content = candidate.value
- break
- # FIXME: handle attachments
- elif item.get('summary'):
- content = item.get('summary')
-
- tags = []
- for tag in item.get('tags', []):
- tags.append(tag.term)
-
- if item.get('app_draft'):
- tags.append('draft')
- is_draft = True
- else:
- is_draft = False
-
- self.url_map[link] = self.context['SITE_URL'] + '/' + \
- out_folder + '/' + slug + '.html'
-
- if is_draft and self.exclude_drafts:
- LOGGER.notice('Draft "{0}" will not be imported.'.format(title))
- elif content.strip():
- # If no content is found, no files are written.
- content = self.transform_content(content)
-
- self.write_metadata(os.path.join(self.output_folder, out_folder,
- slug + '.meta'),
- title, slug, post_date, description, tags)
- self.write_content(
- os.path.join(self.output_folder, out_folder, slug + '.html'),
- content)
- else:
- LOGGER.warn('Not going to import "{0}" because it seems to contain'
- ' no content.'.format(title))
-
- @staticmethod
- def write_metadata(filename, title, slug, post_date, description, tags):
- ImportMixin.write_metadata(filename,
- title,
- slug,
- post_date.strftime(r'%Y/%m/%d %H:%m:%S'),
- description,
- tags)
diff --git a/import_feed/requiremets.txt b/import_feed/requiremets.txt
deleted file mode 100644
index 1b25361f..00000000
--- a/import_feed/requiremets.txt
+++ /dev/null
@@ -1 +0,0 @@
-feedparser
diff --git a/plugins/__init__.py b/plugins/__init__.py
deleted file mode 100644
index fd7e25d7..00000000
--- a/plugins/__init__.py
+++ /dev/null
@@ -1 +0,0 @@
-# Plugin modules go here.
\ No newline at end of file
diff --git a/plugins/upgrade_metadata/upgrade_metadata.plugin b/plugins/upgrade_metadata/upgrade_metadata.plugin
deleted file mode 100644
index 0c38e635..00000000
--- a/plugins/upgrade_metadata/upgrade_metadata.plugin
+++ /dev/null
@@ -1,12 +0,0 @@
-[Core]
-Name = upgrade_metadata
-Module = upgrade_metadata
-
-[Nikola]
-MinVersion = 7.4.0
-
-[Documentation]
-Author = Chris Warrick
-Version = 0.1.2
-Website = http://plugins.getnikola.com/#upgrade_metadata
-Description = Upgrade old-style metadata
diff --git a/plugins/upgrade_metadata/upgrade_metadata.py b/plugins/upgrade_metadata/upgrade_metadata.py
deleted file mode 100644
index d9065893..00000000
--- a/plugins/upgrade_metadata/upgrade_metadata.py
+++ /dev/null
@@ -1,94 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Copyright © 2014–2015, Chris Warrick.
-
-# Permission is hereby granted, free of charge, to any
-# person obtaining a copy of this software and associated
-# documentation files (the "Software"), to deal in the
-# Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish,
-# distribute, sublicense, and/or sell copies of the
-# Software, and to permit persons to whom the Software is
-# furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice
-# shall be included in all copies or substantial portions of
-# the Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
-# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
-# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
-# PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS
-# OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
-# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
-# OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-from __future__ import unicode_literals
-import io
-import os
-import nikola.post
-from nikola.plugin_categories import Command
-from nikola import utils
-
-
-class UpgradeMetadata(Command):
- """Upgrade metadata from the old no-descriptions format to the new reST-esque format."""
-
- name = 'upgrade_metadata'
- doc_purpose = 'upgrade old-style metadata'
- cmd_options = [
- {
- 'name': 'yes',
- 'short': 'y',
- 'long': 'yes',
- 'type': bool,
- 'default': False,
- 'help': 'Proceed without confirmation',
- },
- ]
- fields = ('title', 'slug', 'date', 'tags', 'link', 'description', 'type')
-
- def _execute(self, options, args):
- L = utils.get_logger('upgrade_metadata', self.site.loghandlers)
- nikola.post._UPGRADE_METADATA_ADVERTISED = True
-
- # scan posts
- self.site.scan_posts()
- flagged = []
- for post in self.site.timeline:
- if not post.newstylemeta:
- flagged.append(post)
- if flagged:
- if len(flagged) == 1:
- L.info('1 post (and/or its translations) contains old-style metadata:')
- else:
- L.info('{0} posts (and/or their translations) contain old-style metadata:'.format(len(flagged)))
- for post in flagged:
- L.info(' ' + post.metadata_path)
- if not options['yes']:
- yesno = utils.ask_yesno("Proceed with metadata upgrade?")
- if options['yes'] or yesno:
- for post in flagged:
- for lang in post.translated_to:
- if lang == post.default_lang:
- fname = post.metadata_path
- else:
- meta_path = os.path.splitext(post.source_path)[0] + '.meta'
- fname = utils.get_translation_candidate(post.config, meta_path, lang)
-
- with io.open(fname, 'r', encoding='utf-8') as fh:
- meta = fh.readlines()
-
- if not meta[1].startswith('.. '):
- # check if we’re dealing with old style metadata
- with io.open(fname, 'w', encoding='utf-8') as fh:
- for k, v in zip(self.fields, meta):
- fh.write('.. {0}: {1}'.format(k, v))
- L.debug(fname)
-
- L.info('{0} posts upgraded.'.format(len(flagged)))
- else:
- L.info('Metadata not upgraded.')
- else:
- L.info('No old-style metadata posts found. No action is required.')
diff --git a/posts/.html b/posts/.html
new file mode 100644
index 00000000..03a116cd
--- /dev/null
+++ b/posts/.html
@@ -0,0 +1 @@
+
diff --git a/posts/.meta b/posts/.meta
new file mode 100644
index 00000000..685044ed
--- /dev/null
+++ b/posts/.meta
@@ -0,0 +1,3 @@
+
+
+ 04:00
diff --git a/posts/2007/01/31/welcome.md b/posts/2007/01/31/welcome.md
deleted file mode 100644
index a761ad6b..00000000
--- a/posts/2007/01/31/welcome.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-Welcome...I hope to be posting some picture here. I also will need to
-work on the look and feel of the site. Hope you like it. Enjoy. I am
-sorry if you want to leave a comment on this site, but I do not want to
-deal with them.
diff --git a/posts/2007/02/01/pretty-sunset.md b/posts/2007/02/01/pretty-sunset.md
deleted file mode 100644
index 9ec84f85..00000000
--- a/posts/2007/02/01/pretty-sunset.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-Taken with the camera in the phone:
-[](http://www.flickr.com/photos/duckunix/365222193)
-
-peace out.
diff --git a/posts/2007/02/03/devil-toy.md b/posts/2007/02/03/devil-toy.md
deleted file mode 100644
index 2161b012..00000000
--- a/posts/2007/02/03/devil-toy.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/378040420)
-
diff --git a/posts/2007/02/03/expermiment-with-gimp.md b/posts/2007/02/03/expermiment-with-gimp.md
deleted file mode 100644
index 2be83ce6..00000000
--- a/posts/2007/02/03/expermiment-with-gimp.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/378040425)
-
diff --git a/posts/2007/02/05/un-devil-toy.md b/posts/2007/02/05/un-devil-toy.md
deleted file mode 100644
index 8840d44f..00000000
--- a/posts/2007/02/05/un-devil-toy.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://picasaweb.google.com/duckunix/Test/photo#5027897239852347762)
-From [Test](http://picasaweb.google.com/duckunix/Test) This is from
-Picasa web vs. Flickr.
diff --git a/posts/2007/02/11/study-in-repetition.md b/posts/2007/02/11/study-in-repetition.md
deleted file mode 100644
index 3250915c..00000000
--- a/posts/2007/02/11/study-in-repetition.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://picasaweb.google.com/duckunix/Test/photo#5030382489692700562)
-From [Test](http://picasaweb.google.com/duckunix/Test)
diff --git a/posts/2007/02/15/color-or-the-lack-of.md b/posts/2007/02/15/color-or-the-lack-of.md
deleted file mode 100644
index 56c612b1..00000000
--- a/posts/2007/02/15/color-or-the-lack-of.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[](http://picasaweb.google.com/duckunix/Test/photo#5031737538989686706)
-From [Test](http://picasaweb.google.com/duckunix/Test)
-[](http://picasaweb.google.com/duckunix/Test/photo#5031781463620222914)
-From [Test](http://picasaweb.google.com/duckunix/Test)
diff --git a/posts/2007/02/23/birds.md b/posts/2007/02/23/birds.md
deleted file mode 100644
index f6fd96b8..00000000
--- a/posts/2007/02/23/birds.md
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-There are some really cool birds near the house. Here is a visitor who
-was only about 1.5 miles from the house...nice to know they are doing
-well enough to be caught in suburban-hell....
-
-[](http://picasaweb.google.com/duckunix/Birds/photo#5034596556984713266)
-From [Birds](http://picasaweb.google.com/duckunix/Birds)
diff --git a/posts/2007/03/15/storm-clouds.md b/posts/2007/03/15/storm-clouds.md
deleted file mode 100644
index c6408105..00000000
--- a/posts/2007/03/15/storm-clouds.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-A storm was blowing through tonight.....
-
-[](http://picasaweb.google.com/duckunix/Landscape/photo#5042004638185404242)
-From [Landscape](http://picasaweb.google.com/duckunix/Landscape)
diff --git a/posts/2007/03/21/new-files.md b/posts/2007/03/21/new-files.md
deleted file mode 100644
index 21db8596..00000000
--- a/posts/2007/03/21/new-files.md
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-So, I have been slow putting files up because the three sites I have
-photos up on (Flickr, Zooomr, and Picasa, links to the right) have not
-really had a good Linux client. Until now. Enter
-[jUploadr](http://juploadr.sourceforge.net/)! It talks to Flickr and
-Zooomr, and I can upload the exact same thing to both, with the exact
-same tags and public/private settings. About as future proof as I can
-get. So, my pictures now live on my laptop hard drive, my server hard
-drive, and my removable hard drive. And soon, they will also live on
-Flickr and Zooomr. Once Picasa fixes its lack of Linux love, I will
-probably start using it more, although it will cost some $$ there.
-
-**Edit 2018-12-26** Yeah, me and words. zooomr is gone, and so is Picasa. Well, Picasa moved to [Google Photos](https://photos.google.com) a while back. And the link to jUploader points to Source Forge. 11 years is a long time. Some pictures are broken, and I may or may not be able to fix the links.
diff --git a/posts/2007/03/21/texas-state-flower.md b/posts/2007/03/21/texas-state-flower.md
deleted file mode 100644
index 6cc5f5b9..00000000
--- a/posts/2007/03/21/texas-state-flower.md
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-[{width="240"
-height="180"}](http://beta.zooomr.com/photos/duckunix/842911/ "Zooomr Photo Sharing :: Photo Sharing")
-
-
diff --git a/posts/2007/03/22/sunflowers.md b/posts/2007/03/22/sunflowers.md
deleted file mode 100644
index b65b8db1..00000000
--- a/posts/2007/03/22/sunflowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/337721819/ "photo sharing")\
-Shot at Dewberry Farms, west of town.
diff --git a/posts/2007/03/23/mutli-colored-sunflowers.md b/posts/2007/03/23/mutli-colored-sunflowers.md
deleted file mode 100644
index 28f2f632..00000000
--- a/posts/2007/03/23/mutli-colored-sunflowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/431378513/ "photo sharing")\
-More from Dewberry Farms.
diff --git a/posts/2007/03/24/reaching-for-the-sun.md b/posts/2007/03/24/reaching-for-the-sun.md
deleted file mode 100644
index 9c3bad8b..00000000
--- a/posts/2007/03/24/reaching-for-the-sun.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/431389541/ "photo sharing")\
-More from Dewberry Farm.
diff --git a/posts/2007/03/25/big-and-orange.md b/posts/2007/03/25/big-and-orange.md
deleted file mode 100644
index d4680e6e..00000000
--- a/posts/2007/03/25/big-and-orange.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/431380749/ "photo sharing")\
-More from Dewberry Farms
diff --git a/posts/2007/03/26/flowers-and-sky.md b/posts/2007/03/26/flowers-and-sky.md
deleted file mode 100644
index 620eece5..00000000
--- a/posts/2007/03/26/flowers-and-sky.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/431391898/ "photo sharing")\
-Final shot from Dewberry farms for now.
diff --git a/posts/2007/03/28/sunset.md b/posts/2007/03/28/sunset.md
deleted file mode 100644
index ab06b303..00000000
--- a/posts/2007/03/28/sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/337713741/ "photo sharing")\
-
diff --git a/posts/2007/03/29/ray-of-lights.md b/posts/2007/03/29/ray-of-lights.md
deleted file mode 100644
index 1861492e..00000000
--- a/posts/2007/03/29/ray-of-lights.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/435895300/ "photo sharing")\
-This was taken out of the window of my car as I was driving one evening.
diff --git a/posts/2007/03/30/windmill.md b/posts/2007/03/30/windmill.md
deleted file mode 100644
index 8c3f4878..00000000
--- a/posts/2007/03/30/windmill.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/435972144/ "photo sharing")\
-
diff --git a/posts/2007/03/31/old-car.md b/posts/2007/03/31/old-car.md
deleted file mode 100644
index 95ac7b78..00000000
--- a/posts/2007/03/31/old-car.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/440373693/ "photo sharing")\
-I found this when I was looking for an old building to shot. I only took
-a few shots because it was on the side of a very busy road, and I did
-not want to take too many chances.
diff --git a/posts/2007/04/01/i-am-not-a-rambler-no-more.md b/posts/2007/04/01/i-am-not-a-rambler-no-more.md
deleted file mode 100644
index cd6f48db..00000000
--- a/posts/2007/04/01/i-am-not-a-rambler-no-more.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/440374035/ "photo sharing")\
-Detail on the grill, and the grass.
diff --git a/posts/2007/04/02/no-more-good-times.md b/posts/2007/04/02/no-more-good-times.md
deleted file mode 100644
index 1975ec86..00000000
--- a/posts/2007/04/02/no-more-good-times.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/440374411/ "photo sharing")\
-
diff --git a/posts/2007/04/03/lizard-2.md b/posts/2007/04/03/lizard-2.md
deleted file mode 100644
index 929cd569..00000000
--- a/posts/2007/04/03/lizard-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/444815275/ "photo sharing")\
-He was checking me out while I was checking him out.
diff --git a/posts/2007/04/04/lizard.md b/posts/2007/04/04/lizard.md
deleted file mode 100644
index 7e7f705a..00000000
--- a/posts/2007/04/04/lizard.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/444815019/ "photo sharing")\
-I do not think he liked me.
diff --git a/posts/2007/04/05/don-juan.md b/posts/2007/04/05/don-juan.md
deleted file mode 100644
index e78c76dd..00000000
--- a/posts/2007/04/05/don-juan.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/444809796/ "photo sharing")\
-This is the rose on the front of the house...more to come
diff --git a/posts/2007/04/06/sunflower.md b/posts/2007/04/06/sunflower.md
deleted file mode 100644
index 4655c6bb..00000000
--- a/posts/2007/04/06/sunflower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/435938240/ "photo sharing")\
-
diff --git a/posts/2007/04/07/purple-flower.md b/posts/2007/04/07/purple-flower.md
deleted file mode 100644
index 00c3bca6..00000000
--- a/posts/2007/04/07/purple-flower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/435933066/ "photo sharing")\
-
diff --git a/posts/2007/04/08/two-purple-flowers.md b/posts/2007/04/08/two-purple-flowers.md
deleted file mode 100644
index 39ba8b64..00000000
--- a/posts/2007/04/08/two-purple-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/435934937/ "photo sharing")\
-
diff --git a/posts/2007/04/09/paper-whites.md b/posts/2007/04/09/paper-whites.md
deleted file mode 100644
index 58394d22..00000000
--- a/posts/2007/04/09/paper-whites.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/430634957/ "photo sharing")\
-
diff --git a/posts/2007/04/10/5-flowers.md b/posts/2007/04/10/5-flowers.md
deleted file mode 100644
index b26eda97..00000000
--- a/posts/2007/04/10/5-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/429719834/ "photo sharing")\
-
diff --git a/posts/2007/04/11/rose-bud-1.md b/posts/2007/04/11/rose-bud-1.md
deleted file mode 100644
index 8381000f..00000000
--- a/posts/2007/04/11/rose-bud-1.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/59322292/ "photo sharing")\
-
diff --git a/posts/2007/04/12/pansy.md b/posts/2007/04/12/pansy.md
deleted file mode 100644
index 217d4e8b..00000000
--- a/posts/2007/04/12/pansy.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/448463590/ "photo sharing")\
-This is from a walk around the property last week. The flowers were in
-full bloom, and I wanted to see what I could get. This was taken with my
-Sigma 55-200/4f.
diff --git a/posts/2007/04/13/new-growthand-a-visitor.md b/posts/2007/04/13/new-growthand-a-visitor.md
deleted file mode 100644
index 62ab7fc3..00000000
--- a/posts/2007/04/13/new-growthand-a-visitor.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/448463842/ "photo sharing")\
-The bug was a nice addition to shot. This was taken with my Sigma
-55-200/4f.
diff --git a/posts/2007/04/14/volunteers.md b/posts/2007/04/14/volunteers.md
deleted file mode 100644
index 7ba69009..00000000
--- a/posts/2007/04/14/volunteers.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/448467597/ "photo sharing")\
-These blue bonnets are in the middle of my front lawn. They seeded from
-the plants we had last year. This was taken with my Sigma 55-200/4f.
diff --git a/posts/2007/04/15/aurora.md b/posts/2007/04/15/aurora.md
deleted file mode 100644
index 9e372220..00000000
--- a/posts/2007/04/15/aurora.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/448467843/ "photo sharing")\
-This is one of the three beautiful flowers from this bulb. This was
-taken with my Sigma 55-200/4f.
diff --git a/posts/2007/04/16/blue-iris.md b/posts/2007/04/16/blue-iris.md
deleted file mode 100644
index 681eaf4d..00000000
--- a/posts/2007/04/16/blue-iris.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/448468137/ "photo sharing")\
-This lovely is coming up by our deck. It also has some yellow and pink
-friends. This was taken with my Sigma 55-200/4f.
diff --git a/posts/2007/04/17/new-beginings.md b/posts/2007/04/17/new-beginings.md
deleted file mode 100644
index 35cf0177..00000000
--- a/posts/2007/04/17/new-beginings.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/448468531/ "photo sharing")\
-This will be a yellow iris, growing on the other side of the deck from
-[the blue one](http://www.donaldharper.com/2007/04/16/blue-iris). This
-was taken with my Sigma 55-200/4f.
diff --git a/posts/2007/04/18/wild-oninon.md b/posts/2007/04/18/wild-oninon.md
deleted file mode 100644
index 1db809a0..00000000
--- a/posts/2007/04/18/wild-oninon.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/448469459/ "photo sharing")\
-I think they have very nice flowers, when you can see them. This was
-taken with my Sigma 55-200/4f.
diff --git a/posts/2007/04/19/yellow-flowers.md b/posts/2007/04/19/yellow-flowers.md
deleted file mode 100644
index 95c29ea4..00000000
--- a/posts/2007/04/19/yellow-flowers.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/448466112/ "photo sharing")\
-I did no color correction on this one...this is the real color. This was
-taken with my Sigma 55-200/4f.
diff --git a/posts/2007/04/20/last-bloom.md b/posts/2007/04/20/last-bloom.md
deleted file mode 100644
index d4df2765..00000000
--- a/posts/2007/04/20/last-bloom.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/448466318/ "photo sharing")\
-This is the last is this series. I forget which these are. Wild
-Hawthorn, I think...This was taken with my Sigma 55-200/4f.
diff --git a/posts/2007/04/21/pretty-windows.md b/posts/2007/04/21/pretty-windows.md
deleted file mode 100644
index 29f643d6..00000000
--- a/posts/2007/04/21/pretty-windows.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/440376511/ "photo sharing")\
-This is the now Chase Bank lobby in downtown Houston. I do not remember
-all the banks names, but it is one of the older bank lobbies in Houston.
diff --git a/posts/2007/04/22/gilded-ceiling.md b/posts/2007/04/22/gilded-ceiling.md
deleted file mode 100644
index e23d38d8..00000000
--- a/posts/2007/04/22/gilded-ceiling.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/440376209/ "photo sharing")\
-This is the now Chase Bank lobby in downtown Houston. I do not remember
-all the banks names, but it is one of the older bank lobbies in Houston.
diff --git a/posts/2007/04/23/beach-view.md b/posts/2007/04/23/beach-view.md
deleted file mode 100644
index 7a8dab7d..00000000
--- a/posts/2007/04/23/beach-view.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/75283426/ "photo sharing")\
-
diff --git a/posts/2007/04/24/rock-out-crop.md b/posts/2007/04/24/rock-out-crop.md
deleted file mode 100644
index 6172627b..00000000
--- a/posts/2007/04/24/rock-out-crop.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/75282996/ "photo sharing")\
-
diff --git a/posts/2007/04/25/long-rocky-beach-view.md b/posts/2007/04/25/long-rocky-beach-view.md
deleted file mode 100644
index f491b63f..00000000
--- a/posts/2007/04/25/long-rocky-beach-view.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/75283105/ "photo sharing")\
-
diff --git a/posts/2007/04/26/don-juan-revisited.md b/posts/2007/04/26/don-juan-revisited.md
deleted file mode 100644
index 7cadee06..00000000
--- a/posts/2007/04/26/don-juan-revisited.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/445647148/ "photo sharing")\
-So far, this has been the biggest hit on my Flickr account.
diff --git a/posts/2007/04/27/mutablis-reaching.md b/posts/2007/04/27/mutablis-reaching.md
deleted file mode 100644
index 2d935076..00000000
--- a/posts/2007/04/27/mutablis-reaching.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/435817195/ "photo sharing")\
-
diff --git a/posts/2007/04/28/single-rose.md b/posts/2007/04/28/single-rose.md
deleted file mode 100644
index 6d58e954..00000000
--- a/posts/2007/04/28/single-rose.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/445647422/ "photo sharing")\
-
diff --git a/posts/2007/04/29/two-roses.md b/posts/2007/04/29/two-roses.md
deleted file mode 100644
index 33602d1f..00000000
--- a/posts/2007/04/29/two-roses.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/445647042/ "photo sharing")\
-
diff --git a/posts/2007/04/30/cluster-blooms.md b/posts/2007/04/30/cluster-blooms.md
deleted file mode 100644
index 975c5647..00000000
--- a/posts/2007/04/30/cluster-blooms.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/445650593/ "photo sharing")\
-
diff --git a/posts/2007/05/01/mutablis-and-sky.md b/posts/2007/05/01/mutablis-and-sky.md
deleted file mode 100644
index 26045bfd..00000000
--- a/posts/2007/05/01/mutablis-and-sky.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[](http://www.flickr.com/photos/duckunix/435817664/ "photo sharing")\
-
diff --git a/posts/2007/05/02/enter-the-duck.md b/posts/2007/05/02/enter-the-duck.md
deleted file mode 100644
index 67046aeb..00000000
--- a/posts/2007/05/02/enter-the-duck.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/430622717/ "Photo Sharing")
diff --git a/posts/2007/05/03/thinking-cap.md b/posts/2007/05/03/thinking-cap.md
deleted file mode 100644
index f4df6137..00000000
--- a/posts/2007/05/03/thinking-cap.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/430620172/ "Photo Sharing")
-He kinda looks like he has a hat on....
diff --git a/posts/2007/05/04/duck.md b/posts/2007/05/04/duck.md
deleted file mode 100644
index e6acd571..00000000
--- a/posts/2007/05/04/duck.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/430587887/ "Photo Sharing")
-
-One of my favorites from the outing...
diff --git a/posts/2007/05/04/make-way-for-the-duck.md b/posts/2007/05/04/make-way-for-the-duck.md
deleted file mode 100644
index 15b71556..00000000
--- a/posts/2007/05/04/make-way-for-the-duck.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/430586238/ "Photo Sharing")
diff --git a/posts/2007/05/05/pretty-malard.md b/posts/2007/05/05/pretty-malard.md
deleted file mode 100644
index f04c8d17..00000000
--- a/posts/2007/05/05/pretty-malard.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/430626784/ "Photo Sharing")
diff --git a/posts/2007/05/06/goose-coming-through.md b/posts/2007/05/06/goose-coming-through.md
deleted file mode 100644
index 70cb3907..00000000
--- a/posts/2007/05/06/goose-coming-through.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431372014/ "Photo Sharing")
diff --git a/posts/2007/05/07/views-from-colorado.md b/posts/2007/05/07/views-from-colorado.md
deleted file mode 100644
index c900518b..00000000
--- a/posts/2007/05/07/views-from-colorado.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429814072/ "Photo Sharing")
diff --git a/posts/2007/05/08/rocky-mountain-sky.md b/posts/2007/05/08/rocky-mountain-sky.md
deleted file mode 100644
index e11073a5..00000000
--- a/posts/2007/05/08/rocky-mountain-sky.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429797408/ "Photo Sharing")
diff --git a/posts/2007/05/09/mountain-lake.md b/posts/2007/05/09/mountain-lake.md
deleted file mode 100644
index f9a78d18..00000000
--- a/posts/2007/05/09/mountain-lake.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/429793638/ "Photo Sharing")
-Not your normal view
diff --git a/posts/2007/05/10/waterfall.md b/posts/2007/05/10/waterfall.md
deleted file mode 100644
index e96fe6a7..00000000
--- a/posts/2007/05/10/waterfall.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/429775006/ "Photo Sharing")
diff --git a/posts/2007/05/11/rocky-peak.md b/posts/2007/05/11/rocky-peak.md
deleted file mode 100644
index 617e291c..00000000
--- a/posts/2007/05/11/rocky-peak.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/429779010/ "Photo Sharing")
-This could be one reason why they are called the Rockies!
diff --git a/posts/2007/05/12/stop.md b/posts/2007/05/12/stop.md
deleted file mode 100644
index 049c902b..00000000
--- a/posts/2007/05/12/stop.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429744092/ "Photo Sharing")
-I just like it. :)
diff --git a/posts/2007/05/13/paper-whites-2.md b/posts/2007/05/13/paper-whites-2.md
deleted file mode 100644
index 9f31b734..00000000
--- a/posts/2007/05/13/paper-whites-2.md
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/430634255/ "Photo Sharing")
-I love the color on these flowers, and I also love the way the depth of
-field worked out. This is my most viewed photo on
-[flickr](http://www.flickr.com/photos/duckuix).
diff --git a/posts/2007/05/14/field-of-sunflowers.md b/posts/2007/05/14/field-of-sunflowers.md
deleted file mode 100644
index 40e6f777..00000000
--- a/posts/2007/05/14/field-of-sunflowers.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431379692/ "Photo Sharing")
-I really love the multi-colored sunflowers. These are from Dewberry
-Farms, just west of Houston, TX.
diff --git a/posts/2007/05/15/rose-bud.md b/posts/2007/05/15/rose-bud.md
deleted file mode 100644
index 21ead12a..00000000
--- a/posts/2007/05/15/rose-bud.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435845479/ "Photo Sharing")
diff --git a/posts/2007/05/16/red-rose.md b/posts/2007/05/16/red-rose.md
deleted file mode 100644
index e3faa675..00000000
--- a/posts/2007/05/16/red-rose.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/445647422/ "Photo Sharing")
-More of the Don Juan rose.
diff --git a/posts/2007/05/17/triple-don.md b/posts/2007/05/17/triple-don.md
deleted file mode 100644
index 1cfd37a6..00000000
--- a/posts/2007/05/17/triple-don.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/445647148/ "Photo Sharing")
-This rose bush was fantastic. It just stays like this.
diff --git a/posts/2007/05/18/field-of-flowers-or-cool-sky.md b/posts/2007/05/18/field-of-flowers-or-cool-sky.md
deleted file mode 100644
index 5b57726c..00000000
--- a/posts/2007/05/18/field-of-flowers-or-cool-sky.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/337723575/ "Photo Sharing")
-Both elements compete in this picture, but I think that they work
-together very nicely.
diff --git a/posts/2007/05/19/sunflowers-2.md b/posts/2007/05/19/sunflowers-2.md
deleted file mode 100644
index 786f098f..00000000
--- a/posts/2007/05/19/sunflowers-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431376403/ "Photo Sharing")
-Lots of sunflowers from Dewberry Farms.
diff --git a/posts/2007/05/20/end-of-the-day.md b/posts/2007/05/20/end-of-the-day.md
deleted file mode 100644
index 8033601c..00000000
--- a/posts/2007/05/20/end-of-the-day.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431378878/ "Photo Sharing")
-And the flowers all look sad.....from Dewberry Farms.
diff --git a/posts/2007/05/21/yellow-orange-yellow.md b/posts/2007/05/21/yellow-orange-yellow.md
deleted file mode 100644
index b69fa17b..00000000
--- a/posts/2007/05/21/yellow-orange-yellow.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431380417/ "Photo Sharing")
-Can you guess? Yup, Dewberry Farms.
diff --git a/posts/2007/05/22/pretty-face.md b/posts/2007/05/22/pretty-face.md
deleted file mode 100644
index aafff459..00000000
--- a/posts/2007/05/22/pretty-face.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431381076/ "Photo Sharing")
-And you thought I was talking about something else? From Dewberry Farms.
diff --git a/posts/2007/05/23/duck-race.md b/posts/2007/05/23/duck-race.md
deleted file mode 100644
index 7f3a5006..00000000
--- a/posts/2007/05/23/duck-race.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/432029768/ "Photo Sharing")
diff --git a/posts/2007/05/24/horns-anyone.md b/posts/2007/05/24/horns-anyone.md
deleted file mode 100644
index 98b886a8..00000000
--- a/posts/2007/05/24/horns-anyone.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/337716986/ "Photo Sharing")
-
-Taken at the Ft. Worth Stock Yards
diff --git a/posts/2007/05/25/sky-at-lady-birds-place.md b/posts/2007/05/25/sky-at-lady-birds-place.md
deleted file mode 100644
index 557c699c..00000000
--- a/posts/2007/05/25/sky-at-lady-birds-place.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/59065355/ "Photo Sharing")
diff --git a/posts/2007/05/26/rails-at-sunset.md b/posts/2007/05/26/rails-at-sunset.md
deleted file mode 100644
index e1118d12..00000000
--- a/posts/2007/05/26/rails-at-sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429717906/ "Photo Sharing")
diff --git a/posts/2007/05/27/tall-building.md b/posts/2007/05/27/tall-building.md
deleted file mode 100644
index 4c0a9106..00000000
--- a/posts/2007/05/27/tall-building.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/469891235/ "Photo Sharing")
-This is the Exxon Building in down-town Houston
diff --git a/posts/2007/05/28/stop-2.md b/posts/2007/05/28/stop-2.md
deleted file mode 100644
index d614bde8..00000000
--- a/posts/2007/05/28/stop-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429744511/ "Photo Sharing")
diff --git a/posts/2007/05/29/water-foutain.md b/posts/2007/05/29/water-foutain.md
deleted file mode 100644
index 97ca377a..00000000
--- a/posts/2007/05/29/water-foutain.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435928768/ "Photo Sharing")
diff --git a/posts/2007/05/30/end-of-play.md b/posts/2007/05/30/end-of-play.md
deleted file mode 100644
index f22d9165..00000000
--- a/posts/2007/05/30/end-of-play.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/469882961/ "Photo Sharing")
diff --git a/posts/2007/05/31/steel-gate.md b/posts/2007/05/31/steel-gate.md
deleted file mode 100644
index 4fef5342..00000000
--- a/posts/2007/05/31/steel-gate.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/440375923/ "Photo Sharing")
diff --git a/posts/2007/06/01/beach-flower.md b/posts/2007/06/01/beach-flower.md
deleted file mode 100644
index 2af66b5c..00000000
--- a/posts/2007/06/01/beach-flower.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/486482414/ "Photo Sharing")
-From just in front of the Seawall in Galveston, TX.
diff --git a/posts/2007/06/02/beach-flower-and-rope.md b/posts/2007/06/02/beach-flower-and-rope.md
deleted file mode 100644
index 55ef4c83..00000000
--- a/posts/2007/06/02/beach-flower-and-rope.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/486478850/ "Photo Sharing")
diff --git a/posts/2007/06/03/happy-dog-at-beach.md b/posts/2007/06/03/happy-dog-at-beach.md
deleted file mode 100644
index 98e79ab6..00000000
--- a/posts/2007/06/03/happy-dog-at-beach.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/486456030/ "Photo Sharing")
diff --git a/posts/2007/06/04/sailboats-off-the-beach.md b/posts/2007/06/04/sailboats-off-the-beach.md
deleted file mode 100644
index 0855a7dc..00000000
--- a/posts/2007/06/04/sailboats-off-the-beach.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/486480849/ "Photo Sharing")
diff --git a/posts/2007/06/05/a-rose-is-still-a-rose.md b/posts/2007/06/05/a-rose-is-still-a-rose.md
deleted file mode 100644
index eb34abfa..00000000
--- a/posts/2007/06/05/a-rose-is-still-a-rose.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/445650593/ "Photo Sharing")
diff --git a/posts/2007/06/08/coral-bean.md b/posts/2007/06/08/coral-bean.md
deleted file mode 100644
index dea5aed4..00000000
--- a/posts/2007/06/08/coral-bean.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/534973278/ "Photo Sharing")
-Sorry I have not posted in a few days...we put our house on the market
-yesterday, and it has been a little crazy.
diff --git a/posts/2007/06/09/coral-beans.md b/posts/2007/06/09/coral-beans.md
deleted file mode 100644
index 8faf2574..00000000
--- a/posts/2007/06/09/coral-beans.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/534965240/ "Photo Sharing")
diff --git a/posts/2007/06/10/last-coral-bean.md b/posts/2007/06/10/last-coral-bean.md
deleted file mode 100644
index cf47830e..00000000
--- a/posts/2007/06/10/last-coral-bean.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/534969200/ "Photo Sharing")
diff --git a/posts/2007/06/11/childs-bench.md b/posts/2007/06/11/childs-bench.md
deleted file mode 100644
index 4eda7e93..00000000
--- a/posts/2007/06/11/childs-bench.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536682401/ "Photo Sharing")
diff --git a/posts/2007/06/12/reaching-for-sunset.md b/posts/2007/06/12/reaching-for-sunset.md
deleted file mode 100644
index 308dfce9..00000000
--- a/posts/2007/06/12/reaching-for-sunset.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536567000/ "Photo Sharing")
-The flare was intentional....
diff --git a/posts/2007/06/13/not-painted-rose.md b/posts/2007/06/13/not-painted-rose.md
deleted file mode 100644
index c3a8e7af..00000000
--- a/posts/2007/06/13/not-painted-rose.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536565196/ "Photo Sharing")
-
-This is just one of the ways this rose's blooms change colors...
diff --git a/posts/2007/06/14/detail-of-not-painted-rose.md b/posts/2007/06/14/detail-of-not-painted-rose.md
deleted file mode 100644
index f2d1a046..00000000
--- a/posts/2007/06/14/detail-of-not-painted-rose.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536676729/ "Photo Sharing")
diff --git a/posts/2007/06/15/sunset-lit-rose.md b/posts/2007/06/15/sunset-lit-rose.md
deleted file mode 100644
index 9ce04930..00000000
--- a/posts/2007/06/15/sunset-lit-rose.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536559004/ "Photo Sharing")
diff --git a/posts/2007/06/16/mother-of-the-don.md b/posts/2007/06/16/mother-of-the-don.md
deleted file mode 100644
index 75d9627c..00000000
--- a/posts/2007/06/16/mother-of-the-don.md
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536556716/ "Photo Sharing")
-
-This rose, called a *New Dawn* , is the parent to the *Don Juan* seen
-here before. And, it smells wonderful.
diff --git a/posts/2007/06/17/seeds-on-the-rail.md b/posts/2007/06/17/seeds-on-the-rail.md
deleted file mode 100644
index 2018d2e7..00000000
--- a/posts/2007/06/17/seeds-on-the-rail.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/536554096/ "Photo Sharing")
diff --git a/posts/2007/06/18/you-say-tomato-i-say-tomato.md b/posts/2007/06/18/you-say-tomato-i-say-tomato.md
deleted file mode 100644
index 7f483bbb..00000000
--- a/posts/2007/06/18/you-say-tomato-i-say-tomato.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536665477/ "Photo Sharing")
-
-Well, the bloom, anyway...
diff --git a/posts/2007/06/19/we-are-all-just-dust-er-dandelions-in-the-wind.md b/posts/2007/06/19/we-are-all-just-dust-er-dandelions-in-the-wind.md
deleted file mode 100644
index ab500353..00000000
--- a/posts/2007/06/19/we-are-all-just-dust-er-dandelions-in-the-wind.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536547924/ "Photo Sharing")
diff --git a/posts/2007/06/20/sunflower-from-the-birds.md b/posts/2007/06/20/sunflower-from-the-birds.md
deleted file mode 100644
index 2b3e1634..00000000
--- a/posts/2007/06/20/sunflower-from-the-birds.md
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536544080/ "Photo Sharing")
-
-I do not know what type of sunflower this is, as it was a volunteer from
-the bird seed we feed the birds.
diff --git a/posts/2007/06/21/long-and-winding-path.md b/posts/2007/06/21/long-and-winding-path.md
deleted file mode 100644
index b4fb7437..00000000
--- a/posts/2007/06/21/long-and-winding-path.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536653199/ "Photo Sharing")
diff --git a/posts/2007/06/22/face-in-the-flowers.md b/posts/2007/06/22/face-in-the-flowers.md
deleted file mode 100644
index 9f3e46ae..00000000
--- a/posts/2007/06/22/face-in-the-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536641649/ "Photo Sharing")
diff --git a/posts/2007/06/23/little-flowers.md b/posts/2007/06/23/little-flowers.md
deleted file mode 100644
index 682f545a..00000000
--- a/posts/2007/06/23/little-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536517164/ "Photo Sharing")
diff --git a/posts/2007/06/24/windmill-at-sunset.md b/posts/2007/06/24/windmill-at-sunset.md
deleted file mode 100644
index a480bc77..00000000
--- a/posts/2007/06/24/windmill-at-sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435972045/ "Photo Sharing")
diff --git a/posts/2007/06/25/sunflower-at-sunset.md b/posts/2007/06/25/sunflower-at-sunset.md
deleted file mode 100644
index b0b4b12e..00000000
--- a/posts/2007/06/25/sunflower-at-sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435938643/ "Photo Sharing")
diff --git a/posts/2007/06/26/white-flower.md b/posts/2007/06/26/white-flower.md
deleted file mode 100644
index 5b4448bd..00000000
--- a/posts/2007/06/26/white-flower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435934493/ "Photo Sharing")
diff --git a/posts/2007/06/27/windmill-2.md b/posts/2007/06/27/windmill-2.md
deleted file mode 100644
index d9718053..00000000
--- a/posts/2007/06/27/windmill-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431369477/ "Photo Sharing")
diff --git a/posts/2007/06/28/old-steam-shovel.md b/posts/2007/06/28/old-steam-shovel.md
deleted file mode 100644
index 5b6e23f1..00000000
--- a/posts/2007/06/28/old-steam-shovel.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429794299/ "Photo Sharing")
-This was on the side of the road in the middle of the Rockies.
diff --git a/posts/2007/06/29/spanish-dagger.md b/posts/2007/06/29/spanish-dagger.md
deleted file mode 100644
index 5d751384..00000000
--- a/posts/2007/06/29/spanish-dagger.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429721423/ "Photo Sharing")
diff --git a/posts/2007/06/30/business-end-of-the-spanish-dagger.md b/posts/2007/06/30/business-end-of-the-spanish-dagger.md
deleted file mode 100644
index 2debefcb..00000000
--- a/posts/2007/06/30/business-end-of-the-spanish-dagger.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429721323/ "Photo Sharing")
diff --git a/posts/2007/07/01/long-horns.md b/posts/2007/07/01/long-horns.md
deleted file mode 100644
index a0e7f204..00000000
--- a/posts/2007/07/01/long-horns.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/337716478/ "Photo Sharing")
diff --git a/posts/2007/07/02/swing.md b/posts/2007/07/02/swing.md
deleted file mode 100644
index 034f2e68..00000000
--- a/posts/2007/07/02/swing.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/143530457/ "Photo Sharing")
diff --git a/posts/2007/07/03/sunset-at-local-park.md b/posts/2007/07/03/sunset-at-local-park.md
deleted file mode 100644
index 3f4efca6..00000000
--- a/posts/2007/07/03/sunset-at-local-park.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435961703/ "Photo Sharing")
diff --git a/posts/2007/07/04/happy-231st-birthday-america.md b/posts/2007/07/04/happy-231st-birthday-america.md
deleted file mode 100644
index f3d56606..00000000
--- a/posts/2007/07/04/happy-231st-birthday-america.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/435857824/ "Photo Sharing")
diff --git a/posts/2007/07/05/flowers-in-the-rocks.md b/posts/2007/07/05/flowers-in-the-rocks.md
deleted file mode 100644
index e3aafe2f..00000000
--- a/posts/2007/07/05/flowers-in-the-rocks.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/59065356/ "Photo Sharing")
diff --git a/posts/2007/07/06/flowers-from-behind.md b/posts/2007/07/06/flowers-from-behind.md
deleted file mode 100644
index 0ae32222..00000000
--- a/posts/2007/07/06/flowers-from-behind.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/337726324/ "Photo Sharing")
diff --git a/posts/2007/07/07/field-o-puprle-flowers.md b/posts/2007/07/07/field-o-puprle-flowers.md
deleted file mode 100644
index 1b4ba0c7..00000000
--- a/posts/2007/07/07/field-o-puprle-flowers.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/337724739/ "Photo Sharing")Field
-o Purople
diff --git a/posts/2007/07/08/children-on-the-beach.md b/posts/2007/07/08/children-on-the-beach.md
deleted file mode 100644
index 22ffe4e0..00000000
--- a/posts/2007/07/08/children-on-the-beach.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/337719276/ "Photo Sharing")
diff --git a/posts/2007/07/09/art-deco-building-at-night.md b/posts/2007/07/09/art-deco-building-at-night.md
deleted file mode 100644
index cab38f65..00000000
--- a/posts/2007/07/09/art-deco-building-at-night.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/337715285/ "Photo Sharing")
-Taken in downtown Ft. Worth, TX.
diff --git a/posts/2007/07/10/hotel-galvez.md b/posts/2007/07/10/hotel-galvez.md
deleted file mode 100644
index 57bce3b0..00000000
--- a/posts/2007/07/10/hotel-galvez.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/337718710/ "Photo Sharing")
-This is our current favorite vacation spot.
diff --git a/posts/2007/07/11/coast-of-san-deigo.md b/posts/2007/07/11/coast-of-san-deigo.md
deleted file mode 100644
index d0d4e5d6..00000000
--- a/posts/2007/07/11/coast-of-san-deigo.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/75283048/ "Photo Sharing")
diff --git a/posts/2007/07/12/ligth-poll-and-clouds.md b/posts/2007/07/12/ligth-poll-and-clouds.md
deleted file mode 100644
index d8acc2b8..00000000
--- a/posts/2007/07/12/ligth-poll-and-clouds.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/64231698/ "Photo Sharing")
diff --git a/posts/2007/07/13/waterspout.md b/posts/2007/07/13/waterspout.md
deleted file mode 100644
index af8400ea..00000000
--- a/posts/2007/07/13/waterspout.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/59322297/ "Photo Sharing")
-This has been my computer's background for a while now
diff --git a/posts/2007/07/14/butterfly-on-flowers.md b/posts/2007/07/14/butterfly-on-flowers.md
deleted file mode 100644
index ea27131c..00000000
--- a/posts/2007/07/14/butterfly-on-flowers.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/59065362/ "Photo Sharing")
diff --git a/posts/2007/07/15/water-flowers.md b/posts/2007/07/15/water-flowers.md
deleted file mode 100644
index d440a856..00000000
--- a/posts/2007/07/15/water-flowers.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/59065360/ "Photo Sharing")
diff --git a/posts/2007/07/16/alright-who-called-this-meeting.md b/posts/2007/07/16/alright-who-called-this-meeting.md
deleted file mode 100644
index e9c28ade..00000000
--- a/posts/2007/07/16/alright-who-called-this-meeting.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/430589003/ "Photo Sharing")
diff --git a/posts/2007/07/17/lines-again.md b/posts/2007/07/17/lines-again.md
deleted file mode 100644
index dd67e40f..00000000
--- a/posts/2007/07/17/lines-again.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/430642734/ "Photo Sharing")
diff --git a/posts/2007/07/18/red-red-don.md b/posts/2007/07/18/red-red-don.md
deleted file mode 100644
index 00a30035..00000000
--- a/posts/2007/07/18/red-red-don.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/448463484/ "Photo Sharing")
-This is one of the pictures my wife chose for staging the house.
diff --git a/posts/2007/07/19/what-is-going-on-here.md b/posts/2007/07/19/what-is-going-on-here.md
deleted file mode 100644
index 8c375026..00000000
--- a/posts/2007/07/19/what-is-going-on-here.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/448463842/ "Photo Sharing")
-This is another picture my wife used to stage the house.
diff --git a/posts/2007/07/20/dawn-in-full-bloom.md b/posts/2007/07/20/dawn-in-full-bloom.md
deleted file mode 100644
index 13f02ec8..00000000
--- a/posts/2007/07/20/dawn-in-full-bloom.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/469916045/ "Photo Sharing")
diff --git a/posts/2007/07/21/green-and-white-paperwhites.md b/posts/2007/07/21/green-and-white-paperwhites.md
deleted file mode 100644
index 2b0d1276..00000000
--- a/posts/2007/07/21/green-and-white-paperwhites.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435824667/ "Photo Sharing")
diff --git a/posts/2007/07/22/sun-rays.md b/posts/2007/07/22/sun-rays.md
deleted file mode 100644
index 4c6f85e2..00000000
--- a/posts/2007/07/22/sun-rays.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435892783/ "Photo Sharing")
diff --git a/posts/2007/07/23/flutter-by-butterfly.md b/posts/2007/07/23/flutter-by-butterfly.md
deleted file mode 100644
index 09be24cc..00000000
--- a/posts/2007/07/23/flutter-by-butterfly.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435892783/ "Photo Sharing")
diff --git a/posts/2007/07/24/run-water-run.md b/posts/2007/07/24/run-water-run.md
deleted file mode 100644
index c62f4c7f..00000000
--- a/posts/2007/07/24/run-water-run.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435928768/ "Photo Sharing")
diff --git a/posts/2007/07/25/pine-flowers.md b/posts/2007/07/25/pine-flowers.md
deleted file mode 100644
index e4b358dc..00000000
--- a/posts/2007/07/25/pine-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429721512/ "Photo Sharing")
diff --git a/posts/2007/07/26/girl-in-field-of-sunflowers.md b/posts/2007/07/26/girl-in-field-of-sunflowers.md
deleted file mode 100644
index 0d5e76e7..00000000
--- a/posts/2007/07/26/girl-in-field-of-sunflowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/337722471/ "Photo Sharing")
diff --git a/posts/2007/07/27/sunset-2.md b/posts/2007/07/27/sunset-2.md
deleted file mode 100644
index 21448739..00000000
--- a/posts/2007/07/27/sunset-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/750706649/ "Photo Sharing")
diff --git a/posts/2007/07/28/sunset-after-storm.md b/posts/2007/07/28/sunset-after-storm.md
deleted file mode 100644
index 24af7a9e..00000000
--- a/posts/2007/07/28/sunset-after-storm.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/751557696/ "Photo Sharing")
diff --git a/posts/2007/07/29/sunset-before-storm.md b/posts/2007/07/29/sunset-before-storm.md
deleted file mode 100644
index ee1e682c..00000000
--- a/posts/2007/07/29/sunset-before-storm.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435812603/ "Photo Sharing")
diff --git a/posts/2007/07/30/rose-in-the-sky.md b/posts/2007/07/30/rose-in-the-sky.md
deleted file mode 100644
index df7944db..00000000
--- a/posts/2007/07/30/rose-in-the-sky.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435816649/ "Photo Sharing")
diff --git a/posts/2007/07/31/fluffy-white-clouds.md b/posts/2007/07/31/fluffy-white-clouds.md
deleted file mode 100644
index 9fe231cb..00000000
--- a/posts/2007/07/31/fluffy-white-clouds.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429721786/ "Photo Sharing")
diff --git a/posts/2007/08/01/wispy-white-clouds.md b/posts/2007/08/01/wispy-white-clouds.md
deleted file mode 100644
index f9d03ded..00000000
--- a/posts/2007/08/01/wispy-white-clouds.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435934736/ "Photo Sharing")
diff --git a/posts/2007/08/02/downspout-and-clouds.md b/posts/2007/08/02/downspout-and-clouds.md
deleted file mode 100644
index 692aa041..00000000
--- a/posts/2007/08/02/downspout-and-clouds.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431374534/ "Photo Sharing")
diff --git a/posts/2007/08/03/boy-on-beach.md b/posts/2007/08/03/boy-on-beach.md
deleted file mode 100644
index de37c992..00000000
--- a/posts/2007/08/03/boy-on-beach.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/486484985/ "Photo Sharing")
diff --git a/posts/2007/08/04/sailing-away.md b/posts/2007/08/04/sailing-away.md
deleted file mode 100644
index f773f15b..00000000
--- a/posts/2007/08/04/sailing-away.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/486479153/ "Photo Sharing")
diff --git a/posts/2007/08/05/boy-looking-out-window.md b/posts/2007/08/05/boy-looking-out-window.md
deleted file mode 100644
index 8e29c400..00000000
--- a/posts/2007/08/05/boy-looking-out-window.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="400"
-height="500"}](http://www.flickr.com/photos/duckunix/900318506/ "Photo Sharing")
diff --git a/posts/2007/08/06/sunset-from-phone-camera.md b/posts/2007/08/06/sunset-from-phone-camera.md
deleted file mode 100644
index dc05c1c2..00000000
--- a/posts/2007/08/06/sunset-from-phone-camera.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="400"
-height="500"}](http://www.flickr.com/photos/duckunix/841319577/ "Photo Sharing")
-Sometime, these silly cameras do work. Taken from my Motorola V3xx.
diff --git a/posts/2007/08/07/new-dawn-cluster.md b/posts/2007/08/07/new-dawn-cluster.md
deleted file mode 100644
index b7c3f3b2..00000000
--- a/posts/2007/08/07/new-dawn-cluster.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536670323/ "Photo Sharing")
diff --git a/posts/2007/08/08/small-blue-flowers.md b/posts/2007/08/08/small-blue-flowers.md
deleted file mode 100644
index 08be95ad..00000000
--- a/posts/2007/08/08/small-blue-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/469908133/ "Photo Sharing")
diff --git a/posts/2007/08/09/sunflower-2.md b/posts/2007/08/09/sunflower-2.md
deleted file mode 100644
index 2cab88a2..00000000
--- a/posts/2007/08/09/sunflower-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/486484985/ "Photo Sharing")
diff --git a/posts/2007/08/10/lots-of-sunflowers.md b/posts/2007/08/10/lots-of-sunflowers.md
deleted file mode 100644
index a5d6ec6f..00000000
--- a/posts/2007/08/10/lots-of-sunflowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431378124/ "Photo Sharing")
diff --git a/posts/2007/08/11/duck-butt.md b/posts/2007/08/11/duck-butt.md
deleted file mode 100644
index aefbf2fd..00000000
--- a/posts/2007/08/11/duck-butt.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/431370604/ "Photo Sharing")
diff --git a/posts/2007/08/12/marching-duck.md b/posts/2007/08/12/marching-duck.md
deleted file mode 100644
index 2474ce8a..00000000
--- a/posts/2007/08/12/marching-duck.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/430622444/ "Photo Sharing")
diff --git a/posts/2007/08/13/you-looking-at-me.md b/posts/2007/08/13/you-looking-at-me.md
deleted file mode 100644
index 6b8f5a55..00000000
--- a/posts/2007/08/13/you-looking-at-me.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/430586846/ "Photo Sharing")
diff --git a/posts/2007/08/14/bluebonnets.md b/posts/2007/08/14/bluebonnets.md
deleted file mode 100644
index f4eab804..00000000
--- a/posts/2007/08/14/bluebonnets.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429721180/ "Photo Sharing")
diff --git a/posts/2007/08/15/more-bluebonnets.md b/posts/2007/08/15/more-bluebonnets.md
deleted file mode 100644
index 169849db..00000000
--- a/posts/2007/08/15/more-bluebonnets.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/429721034/ "Photo Sharing")
diff --git a/posts/2007/08/16/proud-birds.md b/posts/2007/08/16/proud-birds.md
deleted file mode 100644
index 1e31b6c4..00000000
--- a/posts/2007/08/16/proud-birds.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1125353397/ "Photo Sharing")
diff --git a/posts/2007/08/17/deer-deer.md b/posts/2007/08/17/deer-deer.md
deleted file mode 100644
index e62a720f..00000000
--- a/posts/2007/08/17/deer-deer.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1126192584/ "Photo Sharing")
diff --git a/posts/2007/08/18/hey.md b/posts/2007/08/18/hey.md
deleted file mode 100644
index 8b252a2a..00000000
--- a/posts/2007/08/18/hey.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1126190906/ "Photo Sharing")
diff --git a/posts/2007/08/19/who-are-you-looking-at.md b/posts/2007/08/19/who-are-you-looking-at.md
deleted file mode 100644
index 4ea11b57..00000000
--- a/posts/2007/08/19/who-are-you-looking-at.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1125348083/ "Photo Sharing")
diff --git a/posts/2007/08/20/big-kitty.md b/posts/2007/08/20/big-kitty.md
deleted file mode 100644
index 81924ba5..00000000
--- a/posts/2007/08/20/big-kitty.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1126187898/ "Photo Sharing")
diff --git a/posts/2007/08/21/nice-stripes.md b/posts/2007/08/21/nice-stripes.md
deleted file mode 100644
index ca826151..00000000
--- a/posts/2007/08/21/nice-stripes.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1125344219/ "Photo Sharing")
diff --git a/posts/2007/08/22/turtle-well-tortes.md b/posts/2007/08/22/turtle-well-tortes.md
deleted file mode 100644
index 19efc73e..00000000
--- a/posts/2007/08/22/turtle-well-tortes.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1126183404/ "Photo Sharing")
diff --git a/posts/2007/08/23/same-thing-every-night-pinky.md b/posts/2007/08/23/same-thing-every-night-pinky.md
deleted file mode 100644
index fe5f67df..00000000
--- a/posts/2007/08/23/same-thing-every-night-pinky.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1125337939/ "Photo Sharing")
diff --git a/posts/2007/08/24/sitting-pretty.md b/posts/2007/08/24/sitting-pretty.md
deleted file mode 100644
index 8c096b54..00000000
--- a/posts/2007/08/24/sitting-pretty.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1126178392/ "Photo Sharing")
diff --git a/posts/2007/08/25/sing-a-song.md b/posts/2007/08/25/sing-a-song.md
deleted file mode 100644
index c8678e67..00000000
--- a/posts/2007/08/25/sing-a-song.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212314943/ "Photo Sharing")
diff --git a/posts/2007/08/26/is-this-my-baaaaad-side.md b/posts/2007/08/26/is-this-my-baaaaad-side.md
deleted file mode 100644
index ac969eda..00000000
--- a/posts/2007/08/26/is-this-my-baaaaad-side.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212315797/ "Photo Sharing")
diff --git a/posts/2007/08/27/pondering.md b/posts/2007/08/27/pondering.md
deleted file mode 100644
index 13f5ccc0..00000000
--- a/posts/2007/08/27/pondering.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212339783/ "Photo Sharing")
diff --git a/posts/2007/08/28/reach-for-the-sky.md b/posts/2007/08/28/reach-for-the-sky.md
deleted file mode 100644
index f5a55710..00000000
--- a/posts/2007/08/28/reach-for-the-sky.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212338297/ "Photo Sharing")
diff --git a/posts/2007/08/29/lots-of-flowers.md b/posts/2007/08/29/lots-of-flowers.md
deleted file mode 100644
index 111a97da..00000000
--- a/posts/2007/08/29/lots-of-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1213202030/ "Photo Sharing")
diff --git a/posts/2007/08/30/blue-flowers.md b/posts/2007/08/30/blue-flowers.md
deleted file mode 100644
index 9e30766e..00000000
--- a/posts/2007/08/30/blue-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1213201068/ "Photo Sharing")
diff --git a/posts/2007/08/31/bet-you-cannot-guess.md b/posts/2007/08/31/bet-you-cannot-guess.md
deleted file mode 100644
index 9aa8e5b5..00000000
--- a/posts/2007/08/31/bet-you-cannot-guess.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1213199652/ "Photo Sharing")
diff --git a/posts/2007/09/01/dragonfly.md b/posts/2007/09/01/dragonfly.md
deleted file mode 100644
index 7b4329da..00000000
--- a/posts/2007/09/01/dragonfly.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1213198856/ "Photo Sharing")
-This was the best I got this outing...these guess are shy.
diff --git a/posts/2007/09/02/a-rose-is-still-a-rose-2.md b/posts/2007/09/02/a-rose-is-still-a-rose-2.md
deleted file mode 100644
index ea580281..00000000
--- a/posts/2007/09/02/a-rose-is-still-a-rose-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212333559/ "Photo Sharing")
diff --git a/posts/2007/09/03/oh-bee-have.md b/posts/2007/09/03/oh-bee-have.md
deleted file mode 100644
index e823983d..00000000
--- a/posts/2007/09/03/oh-bee-have.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212332881/ "Photo Sharing")
diff --git a/posts/2007/09/04/contemplation.md b/posts/2007/09/04/contemplation.md
deleted file mode 100644
index fbbf3e9d..00000000
--- a/posts/2007/09/04/contemplation.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212332235/ "Photo Sharing")
diff --git a/posts/2007/09/05/brown-butterfly-on-flowers.md b/posts/2007/09/05/brown-butterfly-on-flowers.md
deleted file mode 100644
index 1bcbaef6..00000000
--- a/posts/2007/09/05/brown-butterfly-on-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1213196130/ "Photo Sharing")
diff --git a/posts/2007/09/06/windmill-3.md b/posts/2007/09/06/windmill-3.md
deleted file mode 100644
index a11c5bac..00000000
--- a/posts/2007/09/06/windmill-3.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1213195128/ "Photo Sharing")
diff --git a/posts/2007/09/07/purple.md b/posts/2007/09/07/purple.md
deleted file mode 100644
index 6838dde0..00000000
--- a/posts/2007/09/07/purple.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212329705/ "Photo Sharing")
diff --git a/posts/2007/09/08/passion-of-the-flower.md b/posts/2007/09/08/passion-of-the-flower.md
deleted file mode 100644
index a2af94f4..00000000
--- a/posts/2007/09/08/passion-of-the-flower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1213193660/ "Photo Sharing")
diff --git a/posts/2007/09/09/a-lone-star.md b/posts/2007/09/09/a-lone-star.md
deleted file mode 100644
index 79045a48..00000000
--- a/posts/2007/09/09/a-lone-star.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1213189110/ "Photo Sharing")
diff --git a/posts/2007/09/10/holy-bantam-batman.md b/posts/2007/09/10/holy-bantam-batman.md
deleted file mode 100644
index 2d03cc3e..00000000
--- a/posts/2007/09/10/holy-bantam-batman.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1212323049/ "Photo Sharing")
-This is the first in a series of a very interesting planter I found at
-the Richmod Farmers Market.
diff --git a/posts/2007/09/11/cracked-window.md b/posts/2007/09/11/cracked-window.md
deleted file mode 100644
index e658c3fd..00000000
--- a/posts/2007/09/11/cracked-window.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212319967/ "Photo Sharing")
diff --git a/posts/2007/09/12/0299gal.md b/posts/2007/09/12/0299gal.md
deleted file mode 100644
index 7723b9d5..00000000
--- a/posts/2007/09/12/0299gal.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212327493/ "Photo Sharing")
diff --git a/posts/2007/09/13/truckin-with-the-plants.md b/posts/2007/09/13/truckin-with-the-plants.md
deleted file mode 100644
index da4c5353..00000000
--- a/posts/2007/09/13/truckin-with-the-plants.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1213185990/ "Photo Sharing")
diff --git a/posts/2007/09/14/tea-er-plant-time.md b/posts/2007/09/14/tea-er-plant-time.md
deleted file mode 100644
index 24b9fbeb..00000000
--- a/posts/2007/09/14/tea-er-plant-time.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1212317537/ "Photo Sharing")
diff --git a/posts/2007/09/15/that-truck-has-a-big-horn.md b/posts/2007/09/15/that-truck-has-a-big-horn.md
deleted file mode 100644
index 21d79999..00000000
--- a/posts/2007/09/15/that-truck-has-a-big-horn.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/1365852259/ "photo sharing")
-
-
-[p8263408](http://www.flickr.com/photos/duckunix/1365852259/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-From the Richmond Farmers Market...
diff --git a/posts/2007/09/16/pink-rose.md b/posts/2007/09/16/pink-rose.md
deleted file mode 100644
index 78246594..00000000
--- a/posts/2007/09/16/pink-rose.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/1366516652/ "photo sharing")
-
- Random Rose Picture!
diff --git a/posts/2007/09/17/horny-cow.md b/posts/2007/09/17/horny-cow.md
deleted file mode 100644
index ccfb79b1..00000000
--- a/posts/2007/09/17/horny-cow.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1366748298/ "Photo Sharing")
diff --git a/posts/2007/09/18/wood-star.md b/posts/2007/09/18/wood-star.md
deleted file mode 100644
index daa02af2..00000000
--- a/posts/2007/09/18/wood-star.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1365854849/ "Photo Sharing")
diff --git a/posts/2007/09/19/the-door-to.md b/posts/2007/09/19/the-door-to.md
deleted file mode 100644
index 9ee37fa0..00000000
--- a/posts/2007/09/19/the-door-to.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1365854011/ "Photo Sharing")
diff --git a/posts/2007/09/20/windmill-small.md b/posts/2007/09/20/windmill-small.md
deleted file mode 100644
index f9bd45fa..00000000
--- a/posts/2007/09/20/windmill-small.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1365853157/ "Photo Sharing")
diff --git a/posts/2007/09/21/air-plant.md b/posts/2007/09/21/air-plant.md
deleted file mode 100644
index 2271e3be..00000000
--- a/posts/2007/09/21/air-plant.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1366751498/ "Photo Sharing")
diff --git a/posts/2007/09/22/small-flowers.md b/posts/2007/09/22/small-flowers.md
deleted file mode 100644
index 70743507..00000000
--- a/posts/2007/09/22/small-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1366750392/ "Photo Sharing")
diff --git a/posts/2007/09/23/small-flowers-different-view.md b/posts/2007/09/23/small-flowers-different-view.md
deleted file mode 100644
index dd6d0946..00000000
--- a/posts/2007/09/23/small-flowers-different-view.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1365856321/ "Photo Sharing")
diff --git a/posts/2007/09/24/bw-dragonfly.md b/posts/2007/09/24/bw-dragonfly.md
deleted file mode 100644
index 026c1173..00000000
--- a/posts/2007/09/24/bw-dragonfly.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="333"}](http://www.flickr.com/photos/duckunix/1366522138/ "Photo Sharing")
-First a small group of Dragonflies from the backyard.
diff --git a/posts/2007/09/25/rust-dragonfly.md b/posts/2007/09/25/rust-dragonfly.md
deleted file mode 100644
index 3962fa97..00000000
--- a/posts/2007/09/25/rust-dragonfly.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1366523178/ "Photo Sharing")
diff --git a/posts/2007/09/26/green-dragonfly-on-a-rose.md b/posts/2007/09/26/green-dragonfly-on-a-rose.md
deleted file mode 100644
index c7fa391a..00000000
--- a/posts/2007/09/26/green-dragonfly-on-a-rose.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1366523912/ "Photo Sharing")
diff --git a/posts/2007/09/27/brown-dragonfly.md b/posts/2007/09/27/brown-dragonfly.md
deleted file mode 100644
index 5a2bf734..00000000
--- a/posts/2007/09/27/brown-dragonfly.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1366524300/ "Photo Sharing")
diff --git a/posts/2007/09/28/sunset-from-the-phone.md b/posts/2007/09/28/sunset-from-the-phone.md
deleted file mode 100644
index 44608d6b..00000000
--- a/posts/2007/09/28/sunset-from-the-phone.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{width="500"
-height="400"}](http://www.flickr.com/photos/duckunix/1333331850/ "Photo Sharing")
-Taken with the camera on my phone...not bad, eh?
diff --git a/posts/2007/09/29/corner-of-americana.md b/posts/2007/09/29/corner-of-americana.md
deleted file mode 100644
index 64ef080a..00000000
--- a/posts/2007/09/29/corner-of-americana.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="400"
-height="500"}](http://www.flickr.com/photos/duckunix/1393340697/ "Photo Sharing")
diff --git a/posts/2007/09/30/pretty-annuals.md b/posts/2007/09/30/pretty-annuals.md
deleted file mode 100644
index dc335747..00000000
--- a/posts/2007/09/30/pretty-annuals.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/429720812/ "Photo Sharing")
diff --git a/posts/2007/10/01/lilies-of-the-deck.md b/posts/2007/10/01/lilies-of-the-deck.md
deleted file mode 100644
index 4dff4870..00000000
--- a/posts/2007/10/01/lilies-of-the-deck.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/469894795/ "Photo Sharing")
diff --git a/posts/2007/10/02/mooo.md b/posts/2007/10/02/mooo.md
deleted file mode 100644
index e2f3cb99..00000000
--- a/posts/2007/10/02/mooo.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435962667/ "Photo Sharing")
diff --git a/posts/2007/10/03/sunflow-in-sun-flare.md b/posts/2007/10/03/sunflow-in-sun-flare.md
deleted file mode 100644
index b7084bf4..00000000
--- a/posts/2007/10/03/sunflow-in-sun-flare.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/435939866/ "Photo Sharing")
-Sorry this is late
diff --git a/posts/2007/10/04/pretty-purple.md b/posts/2007/10/04/pretty-purple.md
deleted file mode 100644
index 9d988b4d..00000000
--- a/posts/2007/10/04/pretty-purple.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/536630141/ "Photo Sharing")
diff --git a/posts/2007/10/05/more-purple-flowers.md b/posts/2007/10/05/more-purple-flowers.md
deleted file mode 100644
index b3609b22..00000000
--- a/posts/2007/10/05/more-purple-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/469895656/ "Photo Sharing")
diff --git a/posts/2007/10/06/again-with-the-purple-flowers.md b/posts/2007/10/06/again-with-the-purple-flowers.md
deleted file mode 100644
index 9400975d..00000000
--- a/posts/2007/10/06/again-with-the-purple-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/469896720/ "Photo Sharing")
diff --git a/posts/2007/10/08/rose-pt-i.md b/posts/2007/10/08/rose-pt-i.md
deleted file mode 100644
index fc5ff424..00000000
--- a/posts/2007/10/08/rose-pt-i.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1366514154/ "Photo Sharing")
diff --git a/posts/2007/10/09/rose-pt-ii.md b/posts/2007/10/09/rose-pt-ii.md
deleted file mode 100644
index be27a35c..00000000
--- a/posts/2007/10/09/rose-pt-ii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1365623025/ "Photo Sharing")
diff --git a/posts/2007/10/10/rose-pt-iii.md b/posts/2007/10/10/rose-pt-iii.md
deleted file mode 100644
index 4ade54b7..00000000
--- a/posts/2007/10/10/rose-pt-iii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1366515892/ "Photo Sharing")
diff --git a/posts/2007/10/11/rose-pt-iv.md b/posts/2007/10/11/rose-pt-iv.md
deleted file mode 100644
index 4483bff8..00000000
--- a/posts/2007/10/11/rose-pt-iv.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1366516652/ "Photo Sharing")
diff --git a/posts/2007/10/13/southwest-side-of-downtown.md b/posts/2007/10/13/southwest-side-of-downtown.md
deleted file mode 100644
index f161739c..00000000
--- a/posts/2007/10/13/southwest-side-of-downtown.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1523658916/ "Photo Sharing")
-From a experiential shot I did decently.
diff --git a/posts/2007/10/14/downtown-behind-a-field.md b/posts/2007/10/14/downtown-behind-a-field.md
deleted file mode 100644
index 15b9be2b..00000000
--- a/posts/2007/10/14/downtown-behind-a-field.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1522792791/ "Photo Sharing")
diff --git a/posts/2007/10/15/sunset-from-campus.md b/posts/2007/10/15/sunset-from-campus.md
deleted file mode 100644
index 8ed18f8c..00000000
--- a/posts/2007/10/15/sunset-from-campus.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1522792029/ "Photo Sharing")
diff --git a/posts/2007/10/16/moody-towers-at-sunset.md b/posts/2007/10/16/moody-towers-at-sunset.md
deleted file mode 100644
index 6422e0f3..00000000
--- a/posts/2007/10/16/moody-towers-at-sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1523656688/ "Photo Sharing")
diff --git a/posts/2007/10/17/channel-8-at-sunset.md b/posts/2007/10/17/channel-8-at-sunset.md
deleted file mode 100644
index fff72ed6..00000000
--- a/posts/2007/10/17/channel-8-at-sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1523656076/ "Photo Sharing")
diff --git a/posts/2007/10/18/southeast-side-of-downtown.md b/posts/2007/10/18/southeast-side-of-downtown.md
deleted file mode 100644
index 63360fc8..00000000
--- a/posts/2007/10/18/southeast-side-of-downtown.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1522790077/ "Photo Sharing")
diff --git a/posts/2007/10/19/downtown-at-sunset.md b/posts/2007/10/19/downtown-at-sunset.md
deleted file mode 100644
index 40676e83..00000000
--- a/posts/2007/10/19/downtown-at-sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1522788987/ "Photo Sharing")
diff --git a/posts/2007/10/20/i-10-at-sunset.md b/posts/2007/10/20/i-10-at-sunset.md
deleted file mode 100644
index c0b76390..00000000
--- a/posts/2007/10/20/i-10-at-sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1523653606/ "Photo Sharing")
diff --git a/posts/2007/10/21/building-and-cranes-at-sunset.md b/posts/2007/10/21/building-and-cranes-at-sunset.md
deleted file mode 100644
index 3a2079d1..00000000
--- a/posts/2007/10/21/building-and-cranes-at-sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1522787389/ "Photo Sharing")
diff --git a/posts/2007/10/22/fairies.md b/posts/2007/10/22/fairies.md
deleted file mode 100644
index af503176..00000000
--- a/posts/2007/10/22/fairies.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1632814209/ "Photo Sharing")
-Fairy weekend at TRF 2007
diff --git a/posts/2007/10/23/fairy-wings-pt-i.md b/posts/2007/10/23/fairy-wings-pt-i.md
deleted file mode 100644
index 1fa11bfa..00000000
--- a/posts/2007/10/23/fairy-wings-pt-i.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="448"
-height="500"}](http://www.flickr.com/photos/duckunix/1632817093/ "Photo Sharing")
diff --git a/posts/2007/10/24/fairy-wings-pt-ii.md b/posts/2007/10/24/fairy-wings-pt-ii.md
deleted file mode 100644
index 57807ff3..00000000
--- a/posts/2007/10/24/fairy-wings-pt-ii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1632795243/ "Photo Sharing")
diff --git a/posts/2007/10/25/fairy-wings-pt-iii.md b/posts/2007/10/25/fairy-wings-pt-iii.md
deleted file mode 100644
index 5a9911a2..00000000
--- a/posts/2007/10/25/fairy-wings-pt-iii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="396"
-height="500"}](http://www.flickr.com/photos/duckunix/1632790165/ "Photo Sharing")
diff --git a/posts/2007/10/26/fairy-wings-pt-iv.md b/posts/2007/10/26/fairy-wings-pt-iv.md
deleted file mode 100644
index f1ce031d..00000000
--- a/posts/2007/10/26/fairy-wings-pt-iv.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="465"}](http://www.flickr.com/photos/duckunix/1633669242/ "Photo Sharing")
diff --git a/posts/2007/10/27/fairy-wings-pt-v.md b/posts/2007/10/27/fairy-wings-pt-v.md
deleted file mode 100644
index f4e41a66..00000000
--- a/posts/2007/10/27/fairy-wings-pt-v.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1633667748/ "Photo Sharing")
diff --git a/posts/2007/10/28/fairy-wings-pt-vi.md b/posts/2007/10/28/fairy-wings-pt-vi.md
deleted file mode 100644
index 5f8334bc..00000000
--- a/posts/2007/10/28/fairy-wings-pt-vi.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1632783979/ "Photo Sharing")
diff --git a/posts/2007/10/29/fairy-wings-pt-vii.md b/posts/2007/10/29/fairy-wings-pt-vii.md
deleted file mode 100644
index 506949fc..00000000
--- a/posts/2007/10/29/fairy-wings-pt-vii.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1633664218/ "Photo Sharing")
-These are my favorite from this year. Last of the wings...
diff --git a/posts/2007/10/30/dancing-nymph.md b/posts/2007/10/30/dancing-nymph.md
deleted file mode 100644
index 2efc2b5b..00000000
--- a/posts/2007/10/30/dancing-nymph.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1633686982/ "Photo Sharing")
diff --git a/posts/2007/10/31/happy-halloween.md b/posts/2007/10/31/happy-halloween.md
deleted file mode 100644
index dccda8ce..00000000
--- a/posts/2007/10/31/happy-halloween.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802751353/ "Photo Sharing")
diff --git a/posts/2007/11/01/row-of-saddles.md b/posts/2007/11/01/row-of-saddles.md
deleted file mode 100644
index 2b650f7e..00000000
--- a/posts/2007/11/01/row-of-saddles.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1633671014/ "Photo Sharing")
diff --git a/posts/2007/11/02/parasols-in-the-sun.md b/posts/2007/11/02/parasols-in-the-sun.md
deleted file mode 100644
index bf80134b..00000000
--- a/posts/2007/11/02/parasols-in-the-sun.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1633674504/ "Photo Sharing")
diff --git a/posts/2007/11/03/clock-tower-at-trf.md b/posts/2007/11/03/clock-tower-at-trf.md
deleted file mode 100644
index e2cf7f75..00000000
--- a/posts/2007/11/03/clock-tower-at-trf.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1633676392/ "Photo Sharing")
diff --git a/posts/2007/11/04/castle-walls-at-trf.md b/posts/2007/11/04/castle-walls-at-trf.md
deleted file mode 100644
index a7e0175a..00000000
--- a/posts/2007/11/04/castle-walls-at-trf.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1632796939/ "Photo Sharing")
diff --git a/posts/2007/11/05/chapel-cross-at-trf-i.md b/posts/2007/11/05/chapel-cross-at-trf-i.md
deleted file mode 100644
index 137c1d80..00000000
--- a/posts/2007/11/05/chapel-cross-at-trf-i.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1632798383/ "Photo Sharing")
diff --git a/posts/2007/11/06/chapel-cross-at-trf-ii.md b/posts/2007/11/06/chapel-cross-at-trf-ii.md
deleted file mode 100644
index 4d454f50..00000000
--- a/posts/2007/11/06/chapel-cross-at-trf-ii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1632799673/ "Photo Sharing")
diff --git a/posts/2007/11/07/chapel-cross-at-trf-iii.md b/posts/2007/11/07/chapel-cross-at-trf-iii.md
deleted file mode 100644
index fa3112ae..00000000
--- a/posts/2007/11/07/chapel-cross-at-trf-iii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1633684392/ "Photo Sharing")
diff --git a/posts/2007/11/08/fairy-artist.md b/posts/2007/11/08/fairy-artist.md
deleted file mode 100644
index f454c0d2..00000000
--- a/posts/2007/11/08/fairy-artist.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1633688628/ "Photo Sharing")
diff --git a/posts/2007/11/09/pretty-light-catcher-at-trf.md b/posts/2007/11/09/pretty-light-catcher-at-trf.md
deleted file mode 100644
index 06d272f3..00000000
--- a/posts/2007/11/09/pretty-light-catcher-at-trf.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1632812837/ "Photo Sharing")
diff --git a/posts/2007/11/10/guard-tower-at-trf.md b/posts/2007/11/10/guard-tower-at-trf.md
deleted file mode 100644
index cb61ae99..00000000
--- a/posts/2007/11/10/guard-tower-at-trf.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1633701256/ "Photo Sharing")
diff --git a/posts/2007/11/11/suit-of-armor.md b/posts/2007/11/11/suit-of-armor.md
deleted file mode 100644
index c3d4f17a..00000000
--- a/posts/2007/11/11/suit-of-armor.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1632811565/ "Photo Sharing")
diff --git a/posts/2007/11/12/evil-armor-at-trf.md b/posts/2007/11/12/evil-armor-at-trf.md
deleted file mode 100644
index 8cc5decc..00000000
--- a/posts/2007/11/12/evil-armor-at-trf.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1632807513/ "Photo Sharing")
diff --git a/posts/2007/11/13/still-life-at-the-farm.md b/posts/2007/11/13/still-life-at-the-farm.md
deleted file mode 100644
index a0e27977..00000000
--- a/posts/2007/11/13/still-life-at-the-farm.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802766049/ "Photo Sharing")
diff --git a/posts/2007/11/14/still-life-at-dewberry-farms.md b/posts/2007/11/14/still-life-at-dewberry-farms.md
deleted file mode 100644
index 59143acb..00000000
--- a/posts/2007/11/14/still-life-at-dewberry-farms.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1803625490/ "Photo Sharing")
diff --git a/posts/2007/11/15/man-made-water-fall.md b/posts/2007/11/15/man-made-water-fall.md
deleted file mode 100644
index 4cd15a0e..00000000
--- a/posts/2007/11/15/man-made-water-fall.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802778279/ "Photo Sharing")
diff --git a/posts/2007/11/16/field-of-flowers.md b/posts/2007/11/16/field-of-flowers.md
deleted file mode 100644
index cbad7bbd..00000000
--- a/posts/2007/11/16/field-of-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1803622206/ "Photo Sharing")
diff --git a/posts/2007/11/17/large-orange-sunflower.md b/posts/2007/11/17/large-orange-sunflower.md
deleted file mode 100644
index fb4d8afb..00000000
--- a/posts/2007/11/17/large-orange-sunflower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802776571/ "Photo Sharing")
diff --git a/posts/2007/11/18/flower-and-bee.md b/posts/2007/11/18/flower-and-bee.md
deleted file mode 100644
index 050739ee..00000000
--- a/posts/2007/11/18/flower-and-bee.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802775865/ "Photo Sharing")
diff --git a/posts/2007/11/19/detail-of-flower.md b/posts/2007/11/19/detail-of-flower.md
deleted file mode 100644
index 21f65985..00000000
--- a/posts/2007/11/19/detail-of-flower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802774883/ "Photo Sharing")
diff --git a/posts/2007/11/20/detail-of-orange-sunflower.md b/posts/2007/11/20/detail-of-orange-sunflower.md
deleted file mode 100644
index 34a90a6f..00000000
--- a/posts/2007/11/20/detail-of-orange-sunflower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1803618366/ "Photo Sharing")
diff --git a/posts/2007/11/21/detail-of-flower-ii.md b/posts/2007/11/21/detail-of-flower-ii.md
deleted file mode 100644
index d2be280b..00000000
--- a/posts/2007/11/21/detail-of-flower-ii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802774049/ "Photo Sharing")
diff --git a/posts/2007/11/22/detail-of-flower-iii.md b/posts/2007/11/22/detail-of-flower-iii.md
deleted file mode 100644
index 87a00826..00000000
--- a/posts/2007/11/22/detail-of-flower-iii.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1803617818/ "Photo Sharing")
-Happy Thanksgiving in the US!
diff --git a/posts/2007/11/23/backlite-sunflower.md b/posts/2007/11/23/backlite-sunflower.md
deleted file mode 100644
index e7abb76b..00000000
--- a/posts/2007/11/23/backlite-sunflower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/1803617220/ "Photo Sharing")
diff --git a/posts/2007/11/24/sad-sunflower.md b/posts/2007/11/24/sad-sunflower.md
deleted file mode 100644
index 888383b9..00000000
--- a/posts/2007/11/24/sad-sunflower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802768615/ "Photo Sharing")
diff --git a/posts/2007/11/25/red-flower.md b/posts/2007/11/25/red-flower.md
deleted file mode 100644
index b6fea9f2..00000000
--- a/posts/2007/11/25/red-flower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802771079/ "Photo Sharing")
diff --git a/posts/2007/11/26/purple-flower-and-butterfly.md b/posts/2007/11/26/purple-flower-and-butterfly.md
deleted file mode 100644
index bfc41d74..00000000
--- a/posts/2007/11/26/purple-flower-and-butterfly.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802769075/ "Photo Sharing")
diff --git a/posts/2007/11/27/yellow-sunflower-and-bug.md b/posts/2007/11/27/yellow-sunflower-and-bug.md
deleted file mode 100644
index 3f390180..00000000
--- a/posts/2007/11/27/yellow-sunflower-and-bug.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802768067/ "Photo Sharing")
diff --git a/posts/2007/11/28/purple-flower-and-monach-butterfly.md b/posts/2007/11/28/purple-flower-and-monach-butterfly.md
deleted file mode 100644
index 8b93f0d1..00000000
--- a/posts/2007/11/28/purple-flower-and-monach-butterfly.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802767509/ "Photo Sharing")
diff --git a/posts/2007/11/29/sunflower-3.md b/posts/2007/11/29/sunflower-3.md
deleted file mode 100644
index 1d610102..00000000
--- a/posts/2007/11/29/sunflower-3.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1803610608/ "Photo Sharing")
diff --git a/posts/2007/11/30/low-purple-flower.md b/posts/2007/11/30/low-purple-flower.md
deleted file mode 100644
index dbd700f7..00000000
--- a/posts/2007/11/30/low-purple-flower.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1803608858/ "Photo Sharing")
-Happy Birthday, Wife!
diff --git a/posts/2007/12/01/chinese-lanterns.md b/posts/2007/12/01/chinese-lanterns.md
deleted file mode 100644
index 5185b81b..00000000
--- a/posts/2007/12/01/chinese-lanterns.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802765083/ "Photo Sharing")
diff --git a/posts/2007/12/02/waiting-to-go.md b/posts/2007/12/02/waiting-to-go.md
deleted file mode 100644
index e441a6a3..00000000
--- a/posts/2007/12/02/waiting-to-go.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/1802764319/ "Photo Sharing")
diff --git a/posts/2007/12/03/waterlilly-and-bee.md b/posts/2007/12/03/waterlilly-and-bee.md
deleted file mode 100644
index 80b8db13..00000000
--- a/posts/2007/12/03/waterlilly-and-bee.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2075508783/ "pb106427 by duckunix, on Flickr")
diff --git a/posts/2007/12/04/waterlilly-and-bee-ii.md b/posts/2007/12/04/waterlilly-and-bee-ii.md
deleted file mode 100644
index 0ee644e8..00000000
--- a/posts/2007/12/04/waterlilly-and-bee-ii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2075508895/ "pb106425 by duckunix, on Flickr")
diff --git a/posts/2007/12/05/very-detail-view-of-sunflower.md b/posts/2007/12/05/very-detail-view-of-sunflower.md
deleted file mode 100644
index 0efe86ad..00000000
--- a/posts/2007/12/05/very-detail-view-of-sunflower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2075507999/ "pb236759 by duckunix, on Flickr")
diff --git a/posts/2007/12/06/detail-view-of-sunflower.md b/posts/2007/12/06/detail-view-of-sunflower.md
deleted file mode 100644
index eeaf010d..00000000
--- a/posts/2007/12/06/detail-view-of-sunflower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2076294710/ "pb236758 by duckunix, on Flickr")
diff --git a/posts/2007/12/07/sunflowers-impressionist-view.md b/posts/2007/12/07/sunflowers-impressionist-view.md
deleted file mode 100644
index d255b501..00000000
--- a/posts/2007/12/07/sunflowers-impressionist-view.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="394"
-height="500"}](http://www.flickr.com/photos/duckunix/2076294458/ "pb236767 by duckunix, on Flickr")
diff --git a/posts/2007/12/08/details-of-a-whiskey-bottle.md b/posts/2007/12/08/details-of-a-whiskey-bottle.md
deleted file mode 100644
index c8651efc..00000000
--- a/posts/2007/12/08/details-of-a-whiskey-bottle.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2075507781/ "pb236775 by duckunix, on Flickr")
diff --git a/posts/2007/12/09/monkey-bars.md b/posts/2007/12/09/monkey-bars.md
deleted file mode 100644
index 06cc398c..00000000
--- a/posts/2007/12/09/monkey-bars.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2075509109/ "pb076377 by duckunix, on Flickr")
diff --git a/posts/2007/12/10/stand-of-trees.md b/posts/2007/12/10/stand-of-trees.md
deleted file mode 100644
index edcd3050..00000000
--- a/posts/2007/12/10/stand-of-trees.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/2075509231/ "pb076366 by duckunix, on Flickr")
diff --git a/posts/2007/12/11/detail-of-playhouse.md b/posts/2007/12/11/detail-of-playhouse.md
deleted file mode 100644
index 273532fb..00000000
--- a/posts/2007/12/11/detail-of-playhouse.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="375"
-height="500"}](http://www.flickr.com/photos/duckunix/2076296062/ "pa275764 by duckunix, on Flickr")
diff --git a/posts/2007/12/12/foggy-morning.md b/posts/2007/12/12/foggy-morning.md
deleted file mode 100644
index 71bbaec3..00000000
--- a/posts/2007/12/12/foggy-morning.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2075508991/ "pb015988 by duckunix, on Flickr")
diff --git a/posts/2007/12/13/sunset-at-columbus-ohio-airport.md b/posts/2007/12/13/sunset-at-columbus-ohio-airport.md
deleted file mode 100644
index 423623be..00000000
--- a/posts/2007/12/13/sunset-at-columbus-ohio-airport.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2076295924/ "pa245689 by duckunix, on Flickr")
diff --git a/posts/2007/12/14/oilwell-at-sunset.md b/posts/2007/12/14/oilwell-at-sunset.md
deleted file mode 100644
index 2d86f14d..00000000
--- a/posts/2007/12/14/oilwell-at-sunset.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2076294864/ "pb216661 by duckunix, on Flickr")
diff --git a/posts/2007/12/15/oilwell-at-sunset-ii.md b/posts/2007/12/15/oilwell-at-sunset-ii.md
deleted file mode 100644
index c9038cbf..00000000
--- a/posts/2007/12/15/oilwell-at-sunset-ii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2075508279/ "pb216665 by duckunix, on Flickr")
diff --git a/posts/2007/12/16/sunset-from-a-walk-in-the-neighborhood.md b/posts/2007/12/16/sunset-from-a-walk-in-the-neighborhood.md
deleted file mode 100644
index 90198d01..00000000
--- a/posts/2007/12/16/sunset-from-a-walk-in-the-neighborhood.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2076295022/ "pb176593 by duckunix, on Flickr")
diff --git a/posts/2007/12/17/sunset-and-clouds-from-a-walk-in-the-neighborhood.md b/posts/2007/12/17/sunset-and-clouds-from-a-walk-in-the-neighborhood.md
deleted file mode 100644
index 65468add..00000000
--- a/posts/2007/12/17/sunset-and-clouds-from-a-walk-in-the-neighborhood.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{width="500"
-height="375"}](http://www.flickr.com/photos/duckunix/2075508677/ "pb176591 by duckunix, on Flickr")
diff --git a/posts/2007/12/18/lion-fountain.md b/posts/2007/12/18/lion-fountain.md
deleted file mode 100644
index f4a4bd11..00000000
--- a/posts/2007/12/18/lion-fountain.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2112213179/ "photo sharing")
-
-[pc026873](http://www.flickr.com/photos/duckunix/2112213179/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/19/stone-bird-drinking.md b/posts/2007/12/19/stone-bird-drinking.md
deleted file mode 100644
index e5bd7b08..00000000
--- a/posts/2007/12/19/stone-bird-drinking.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2112213021/ "photo sharing")
-
-[pc026875](http://www.flickr.com/photos/duckunix/2112213021/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/20/thinking-about-some-books.md b/posts/2007/12/20/thinking-about-some-books.md
deleted file mode 100644
index eee32af0..00000000
--- a/posts/2007/12/20/thinking-about-some-books.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2112212709/ "photo sharing")
-
-[PB236771](http://www.flickr.com/photos/duckunix/2112212709/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/21/grasshopper.md b/posts/2007/12/21/grasshopper.md
deleted file mode 100644
index 20567b10..00000000
--- a/posts/2007/12/21/grasshopper.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2112990280/ "photo sharing")
-
-[PB236770](http://www.flickr.com/photos/duckunix/2112990280/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/22/something-is-in-the-air.md b/posts/2007/12/22/something-is-in-the-air.md
deleted file mode 100644
index 942d9e1c..00000000
--- a/posts/2007/12/22/something-is-in-the-air.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126810094/ "photo sharing")
-
-[pc087056](http://www.flickr.com/photos/duckunix/2126810094/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/23/it-is-beginning-to-look-a-little-like.md b/posts/2007/12/23/it-is-beginning-to-look-a-little-like.md
deleted file mode 100644
index 25fc74e9..00000000
--- a/posts/2007/12/23/it-is-beginning-to-look-a-little-like.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126810398/ "photo sharing")
-
-[pc087053](http://www.flickr.com/photos/duckunix/2126810398/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/24/day-before-christmas.md b/posts/2007/12/24/day-before-christmas.md
deleted file mode 100644
index 1f87e21e..00000000
--- a/posts/2007/12/24/day-before-christmas.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126033309/ "photo sharing")
-
-[pc167091](http://www.flickr.com/photos/duckunix/2126033309/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/25/santa-checking-the-book.md b/posts/2007/12/25/santa-checking-the-book.md
deleted file mode 100644
index 74dd0805..00000000
--- a/posts/2007/12/25/santa-checking-the-book.md
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126809240/ "photo sharing")
-
-[pc207183](http://www.flickr.com/photos/duckunix/2126809240/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-For those who celebrate it, Happy Christmas!
-
-Peace on Earth, and goodwill to all of mankind.
diff --git a/posts/2007/12/26/red-palms.md b/posts/2007/12/26/red-palms.md
deleted file mode 100644
index e62538bb..00000000
--- a/posts/2007/12/26/red-palms.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126809298/ "photo sharing")
-
-[pc1671031](http://www.flickr.com/photos/duckunix/2126809298/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/27/post-processing-experiment.md b/posts/2007/12/27/post-processing-experiment.md
deleted file mode 100644
index b15e2b2d..00000000
--- a/posts/2007/12/27/post-processing-experiment.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126033087/ "photo sharing")
-
-[pc1670941](http://www.flickr.com/photos/duckunix/2126033087/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/28/deep-sky.md b/posts/2007/12/28/deep-sky.md
deleted file mode 100644
index 78152145..00000000
--- a/posts/2007/12/28/deep-sky.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126809588/ "photo sharing")
-
-[pc167094](http://www.flickr.com/photos/duckunix/2126809588/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-From a recent walk, great sky.
diff --git a/posts/2007/12/29/more-sky.md b/posts/2007/12/29/more-sky.md
deleted file mode 100644
index 0365d519..00000000
--- a/posts/2007/12/29/more-sky.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126809742/ "photo sharing")
-
-[pc167089](http://www.flickr.com/photos/duckunix/2126809742/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/30/sky-and-moon.md b/posts/2007/12/30/sky-and-moon.md
deleted file mode 100644
index 4feec001..00000000
--- a/posts/2007/12/30/sky-and-moon.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126809882/ "photo sharing")
-
-[pc167077](http://www.flickr.com/photos/duckunix/2126809882/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2007/12/31/walking-into-the-new-year.md b/posts/2007/12/31/walking-into-the-new-year.md
deleted file mode 100644
index 8f6bc89b..00000000
--- a/posts/2007/12/31/walking-into-the-new-year.md
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126033649/ "photo sharing")
-
-[pc167075](http://www.flickr.com/photos/duckunix/2126033649/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-Happy new years.
-
-May your worse day in the new year be better than your best day of this
-year. Be safe.
diff --git a/posts/2008/01/01/open-gazebo.md b/posts/2008/01/01/open-gazebo.md
deleted file mode 100644
index fcb60bce..00000000
--- a/posts/2008/01/01/open-gazebo.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126033525/ "photo sharing")
-
-[pc167078](http://www.flickr.com/photos/duckunix/2126033525/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/02/oleander-flower.md b/posts/2008/01/02/oleander-flower.md
deleted file mode 100644
index 9498f0c5..00000000
--- a/posts/2008/01/02/oleander-flower.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126033143/ "photo sharing")
-
-
-[pc167096](http://www.flickr.com/photos/duckunix/2126033143/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/03/playground-repetition.md b/posts/2008/01/03/playground-repetition.md
deleted file mode 100644
index 2186512c..00000000
--- a/posts/2008/01/03/playground-repetition.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126809792/ "photo sharing")
-
-[pc167080](http://www.flickr.com/photos/duckunix/2126809792/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/04/whatcha-looking-at.md b/posts/2008/01/04/whatcha-looking-at.md
deleted file mode 100644
index 23d8d49b..00000000
--- a/posts/2008/01/04/whatcha-looking-at.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/1803623464/ "photo sharing")
-
-[pa205241](http://www.flickr.com/photos/duckunix/1803623464/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/05/candlestick-plant.md b/posts/2008/01/05/candlestick-plant.md
deleted file mode 100644
index 8622a3e0..00000000
--- a/posts/2008/01/05/candlestick-plant.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/1803624434/ "photo sharing")
-
-
-[pa205235](http://www.flickr.com/photos/duckunix/1803624434/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/05/p1127694.md b/posts/2008/01/05/p1127694.md
deleted file mode 100644
index 0ae646e0..00000000
--- a/posts/2008/01/05/p1127694.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2213908969/ "photo sharing")
-
-[p1127694](http://www.flickr.com/photos/duckunix/2213908969/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/06/fog-in-the-morning.md b/posts/2008/01/06/fog-in-the-morning.md
deleted file mode 100644
index 240b3401..00000000
--- a/posts/2008/01/06/fog-in-the-morning.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2075508991/ "photo sharing")
-
-[pb015988](http://www.flickr.com/photos/duckunix/2075508991/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/07/deep-blue-sky-behind-sleeping-tree.md b/posts/2008/01/07/deep-blue-sky-behind-sleeping-tree.md
deleted file mode 100644
index 193ac209..00000000
--- a/posts/2008/01/07/deep-blue-sky-behind-sleeping-tree.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126809588/ "photo sharing")
-
-[pc167094](http://www.flickr.com/photos/duckunix/2126809588/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/08/clouds-just-before-sunset.md b/posts/2008/01/08/clouds-just-before-sunset.md
deleted file mode 100644
index 09fa612c..00000000
--- a/posts/2008/01/08/clouds-just-before-sunset.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2075508677/ "photo sharing")
-
-[pb176591](http://www.flickr.com/photos/duckunix/2075508677/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/09/sunset-over-columbus-airport.md b/posts/2008/01/09/sunset-over-columbus-airport.md
deleted file mode 100644
index 1de53324..00000000
--- a/posts/2008/01/09/sunset-over-columbus-airport.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2076295924/ "photo sharing")
-
-[pa245689](http://www.flickr.com/photos/duckunix/2076295924/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-Yes, I was driving.
diff --git a/posts/2008/01/10/sunset-in-texas.md b/posts/2008/01/10/sunset-in-texas.md
deleted file mode 100644
index f50d82eb..00000000
--- a/posts/2008/01/10/sunset-in-texas.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2076294864/ "photo sharing")
-
-[pb216661](http://www.flickr.com/photos/duckunix/2076294864/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-Outside of Fayetteville
diff --git a/posts/2008/01/11/poinsettia.md b/posts/2008/01/11/poinsettia.md
deleted file mode 100644
index 3aae63da..00000000
--- a/posts/2008/01/11/poinsettia.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126033911/ "photo sharing")
-
-
-[pc087054](http://www.flickr.com/photos/duckunix/2126033911/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/12/the-star.md b/posts/2008/01/12/the-star.md
deleted file mode 100644
index 02ee14f2..00000000
--- a/posts/2008/01/12/the-star.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2126033735/ "photo sharing")
-
-
-[pc087057](http://www.flickr.com/photos/duckunix/2126033735/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/13/unsuspecting-spider-web.md b/posts/2008/01/13/unsuspecting-spider-web.md
deleted file mode 100644
index cbaf7887..00000000
--- a/posts/2008/01/13/unsuspecting-spider-web.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2184602953/ "photo sharing")
-
-[p9163698](http://www.flickr.com/photos/duckunix/2184602953/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-Did not know the paparazzi was moving in.
diff --git a/posts/2008/01/14/the-spider.md b/posts/2008/01/14/the-spider.md
deleted file mode 100644
index be0fcba3..00000000
--- a/posts/2008/01/14/the-spider.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2185387906/ "photo sharing")
-
-
-[p9163699](http://www.flickr.com/photos/duckunix/2185387906/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/15/hiden-on-the-boxwood.md b/posts/2008/01/15/hiden-on-the-boxwood.md
deleted file mode 100644
index 01c6eee2..00000000
--- a/posts/2008/01/15/hiden-on-the-boxwood.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2185387778/ "photo sharing")
-
-[p9163700](http://www.flickr.com/photos/duckunix/2185387778/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/16/what-a-web-we-weave.md b/posts/2008/01/16/what-a-web-we-weave.md
deleted file mode 100644
index b2c3c844..00000000
--- a/posts/2008/01/16/what-a-web-we-weave.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2185387706/ "photo sharing")
-
-[p9163701](http://www.flickr.com/photos/duckunix/2185387706/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/17/perfect-trap.md b/posts/2008/01/17/perfect-trap.md
deleted file mode 100644
index 6c4e6893..00000000
--- a/posts/2008/01/17/perfect-trap.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2185387606/ "photo sharing")
-
-[p9163702](http://www.flickr.com/photos/duckunix/2185387606/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/18/details-of-the-web.md b/posts/2008/01/18/details-of-the-web.md
deleted file mode 100644
index e873d615..00000000
--- a/posts/2008/01/18/details-of-the-web.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2185387534/ "photo sharing")
-
-[p9163703](http://www.flickr.com/photos/duckunix/2185387534/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/19/happy-home-maker-and-home.md b/posts/2008/01/19/happy-home-maker-and-home.md
deleted file mode 100644
index d736427d..00000000
--- a/posts/2008/01/19/happy-home-maker-and-home.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2185387426/ "photo sharing")
-
-[p9163704](http://www.flickr.com/photos/duckunix/2185387426/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/20/details-of-the-web-ii.md b/posts/2008/01/20/details-of-the-web-ii.md
deleted file mode 100644
index 9c604923..00000000
--- a/posts/2008/01/20/details-of-the-web-ii.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2185387354/ "photo sharing")
-
-[p9163705](http://www.flickr.com/photos/duckunix/2185387354/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/21/details-of-the-web-iii-this-time-with-highlights.md b/posts/2008/01/21/details-of-the-web-iii-this-time-with-highlights.md
deleted file mode 100644
index 1075d0a4..00000000
--- a/posts/2008/01/21/details-of-the-web-iii-this-time-with-highlights.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2185387258/ "photo sharing")
-
-[p9163706](http://www.flickr.com/photos/duckunix/2185387258/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/22/radial-patterns.md b/posts/2008/01/22/radial-patterns.md
deleted file mode 100644
index dd2cfb98..00000000
--- a/posts/2008/01/22/radial-patterns.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2185387084/ "photo sharing")
-
-[p9163708](http://www.flickr.com/photos/duckunix/2185387084/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/23/the-edge.md b/posts/2008/01/23/the-edge.md
deleted file mode 100644
index 5308511d..00000000
--- a/posts/2008/01/23/the-edge.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2184602225/ "photo sharing")
-
-[p9163707](http://www.flickr.com/photos/duckunix/2184602225/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/24/paperwhites.md b/posts/2008/01/24/paperwhites.md
deleted file mode 100644
index 46cf055c..00000000
--- a/posts/2008/01/24/paperwhites.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[](http://picasaweb.google.com/duckunix/FlowersAtTheHarrisCountyMasterGardenersGarden/photo#5158672715043392754)
-From [Flowers at
-th...](http://picasaweb.google.com/duckunix/FlowersAtTheHarrisCountyMasterGardenersGarden)
-Uploaded at google for now.
diff --git a/posts/2008/01/25/p1127733.md b/posts/2008/01/25/p1127733.md
deleted file mode 100644
index 360f07cc..00000000
--- a/posts/2008/01/25/p1127733.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2213908433/ "photo sharing")
-
-[p1127733](http://www.flickr.com/photos/duckunix/2213908433/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/26/p1127746.md b/posts/2008/01/26/p1127746.md
deleted file mode 100644
index 60ed8d63..00000000
--- a/posts/2008/01/26/p1127746.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214701548/ "photo sharing")
-
-[p1127746](http://www.flickr.com/photos/duckunix/2214701548/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/27/p1127741.md b/posts/2008/01/27/p1127741.md
deleted file mode 100644
index 68de34e6..00000000
--- a/posts/2008/01/27/p1127741.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2213908293/ "photo sharing")
-
-[p1127741](http://www.flickr.com/photos/duckunix/2213908293/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/28/p1127736.md b/posts/2008/01/28/p1127736.md
deleted file mode 100644
index 3ab25223..00000000
--- a/posts/2008/01/28/p1127736.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214701702/ "photo sharing")
-
-[p1127736](http://www.flickr.com/photos/duckunix/2214701702/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/29/p1127727.md b/posts/2008/01/29/p1127727.md
deleted file mode 100644
index 584f5193..00000000
--- a/posts/2008/01/29/p1127727.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214701884/ "photo sharing")
-
-[p1127727](http://www.flickr.com/photos/duckunix/2214701884/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/30/p1127718.md b/posts/2008/01/30/p1127718.md
deleted file mode 100644
index 3ff1f22b..00000000
--- a/posts/2008/01/30/p1127718.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214701916/ "photo sharing")
-
-[p1127718](http://www.flickr.com/photos/duckunix/2214701916/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/01/31/p1127668.md b/posts/2008/01/31/p1127668.md
deleted file mode 100644
index 2324fc83..00000000
--- a/posts/2008/01/31/p1127668.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214703020/ "photo sharing")
-
-
-[p1127668](http://www.flickr.com/photos/duckunix/2214703020/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/01/p1127712.md b/posts/2008/02/01/p1127712.md
deleted file mode 100644
index da73eaed..00000000
--- a/posts/2008/02/01/p1127712.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2213908615/ "photo sharing")
-
-[p1127712](http://www.flickr.com/photos/duckunix/2213908615/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/02/p1127709.md b/posts/2008/02/02/p1127709.md
deleted file mode 100644
index 9da7ff99..00000000
--- a/posts/2008/02/02/p1127709.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2213908699/ "photo sharing")
-
-[p1127709](http://www.flickr.com/photos/duckunix/2213908699/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/03/p1127705.md b/posts/2008/02/03/p1127705.md
deleted file mode 100644
index e2040101..00000000
--- a/posts/2008/02/03/p1127705.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214702172/ "photo sharing")
-
-[p1127705](http://www.flickr.com/photos/duckunix/2214702172/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/04/p1127695.md b/posts/2008/02/04/p1127695.md
deleted file mode 100644
index 7ea773c3..00000000
--- a/posts/2008/02/04/p1127695.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2213908883/ "photo sharing")
-
-[p1127695](http://www.flickr.com/photos/duckunix/2213908883/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/05/p1127662.md b/posts/2008/02/05/p1127662.md
deleted file mode 100644
index 5f7a13f4..00000000
--- a/posts/2008/02/05/p1127662.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214703134/ "photo sharing")
-
-
-[p1127662](http://www.flickr.com/photos/duckunix/2214703134/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/06/p1127688.md b/posts/2008/02/06/p1127688.md
deleted file mode 100644
index 846053c1..00000000
--- a/posts/2008/02/06/p1127688.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214702572/ "photo sharing")
-
-[p1127688](http://www.flickr.com/photos/duckunix/2214702572/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/07/p1127693.md b/posts/2008/02/07/p1127693.md
deleted file mode 100644
index 5fc880a0..00000000
--- a/posts/2008/02/07/p1127693.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2213909091/ "photo sharing")
-
-[p1127693](http://www.flickr.com/photos/duckunix/2213909091/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/08/p1127687.md b/posts/2008/02/08/p1127687.md
deleted file mode 100644
index 92eec177..00000000
--- a/posts/2008/02/08/p1127687.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214702670/ "photo sharing")
-
-[p1127687](http://www.flickr.com/photos/duckunix/2214702670/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/09/p1127685.md b/posts/2008/02/09/p1127685.md
deleted file mode 100644
index f4046e28..00000000
--- a/posts/2008/02/09/p1127685.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2213909419/ "photo sharing")
-
-[p1127685](http://www.flickr.com/photos/duckunix/2213909419/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/10/p1127682.md b/posts/2008/02/10/p1127682.md
deleted file mode 100644
index feda0661..00000000
--- a/posts/2008/02/10/p1127682.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2214702932/ "photo sharing")
-
-[p1127682](http://www.flickr.com/photos/duckunix/2214702932/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/11/male-cardinal.md b/posts/2008/02/11/male-cardinal.md
deleted file mode 100644
index 7935e06e..00000000
--- a/posts/2008/02/11/male-cardinal.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2250658994/ "photo sharing")
-
-[p2027947](http://www.flickr.com/photos/duckunix/2250658994/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-Hanging out at our bird feeder
diff --git a/posts/2008/02/12/female-cardinal.md b/posts/2008/02/12/female-cardinal.md
deleted file mode 100644
index 5725ed34..00000000
--- a/posts/2008/02/12/female-cardinal.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2250658860/ "photo sharing")
-
-[p2027948](http://www.flickr.com/photos/duckunix/2250658860/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/13/a-raider.md b/posts/2008/02/13/a-raider.md
deleted file mode 100644
index c97d5b16..00000000
--- a/posts/2008/02/13/a-raider.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2249859993/ "photo sharing")
-
-[p2078023](http://www.flickr.com/photos/duckunix/2249859993/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/14/did-he-see-me.md b/posts/2008/02/14/did-he-see-me.md
deleted file mode 100644
index 1733c8da..00000000
--- a/posts/2008/02/14/did-he-see-me.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2250658336/ "photo sharing")
-
-[p2078028](http://www.flickr.com/photos/duckunix/2250658336/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/15/no-really-i-am-done.md b/posts/2008/02/15/no-really-i-am-done.md
deleted file mode 100644
index d8afe163..00000000
--- a/posts/2008/02/15/no-really-i-am-done.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2250658212/ "photo sharing")
-
-[p2078034](http://www.flickr.com/photos/duckunix/2250658212/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/16/maybe-not.md b/posts/2008/02/16/maybe-not.md
deleted file mode 100644
index 062213b2..00000000
--- a/posts/2008/02/16/maybe-not.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2250658064/ "photo sharing")
-
-[p2078039](http://www.flickr.com/photos/duckunix/2250658064/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/17/when-is-mi-4-filming.md b/posts/2008/02/17/when-is-mi-4-filming.md
deleted file mode 100644
index fa06a3b0..00000000
--- a/posts/2008/02/17/when-is-mi-4-filming.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2249859417/ "photo sharing")
-
-[p2078041](http://www.flickr.com/photos/duckunix/2249859417/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/18/gotta-go.md b/posts/2008/02/18/gotta-go.md
deleted file mode 100644
index 12384bc8..00000000
--- a/posts/2008/02/18/gotta-go.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2249859197/ "photo sharing")
-
-[p2078045](http://www.flickr.com/photos/duckunix/2249859197/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/19/going-home.md b/posts/2008/02/19/going-home.md
deleted file mode 100644
index a25e2b38..00000000
--- a/posts/2008/02/19/going-home.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2249858985/ "photo sharing")
-
-[p2078052](http://www.flickr.com/photos/duckunix/2249858985/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/20/what-you-looking-at.md b/posts/2008/02/20/what-you-looking-at.md
deleted file mode 100644
index 9f8a8b54..00000000
--- a/posts/2008/02/20/what-you-looking-at.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280033327/ "photo sharing")
-
-[p2037954](http://www.flickr.com/photos/duckunix/2280033327/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-My dog....
diff --git a/posts/2008/02/21/an-old-rose.md b/posts/2008/02/21/an-old-rose.md
deleted file mode 100644
index 0a8edb22..00000000
--- a/posts/2008/02/21/an-old-rose.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280823410/ "photo sharing")
-
-[p2037957](http://www.flickr.com/photos/duckunix/2280823410/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/22/still-blue.md b/posts/2008/02/22/still-blue.md
deleted file mode 100644
index 218eb43e..00000000
--- a/posts/2008/02/22/still-blue.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280823292/ "photo sharing")
-
-[p2037962](http://www.flickr.com/photos/duckunix/2280823292/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/23/red-mother.md b/posts/2008/02/23/red-mother.md
deleted file mode 100644
index 74216341..00000000
--- a/posts/2008/02/23/red-mother.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280033023/ "photo sharing")
-
-[p2037963](http://www.flickr.com/photos/duckunix/2280033023/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-This is the flower of a plant know as The Mother of Millions.
diff --git a/posts/2008/02/24/more-red-mother.md b/posts/2008/02/24/more-red-mother.md
deleted file mode 100644
index 541bd609..00000000
--- a/posts/2008/02/24/more-red-mother.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280823028/ "photo sharing")
-
-[p2037964](http://www.flickr.com/photos/duckunix/2280823028/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/25/jasmin-anyone.md b/posts/2008/02/25/jasmin-anyone.md
deleted file mode 100644
index 3fdd3db3..00000000
--- a/posts/2008/02/25/jasmin-anyone.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280822928/ "photo sharing")
-
-[p2037969](http://www.flickr.com/photos/duckunix/2280822928/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/26/jasmin-again.md b/posts/2008/02/26/jasmin-again.md
deleted file mode 100644
index 1553ab36..00000000
--- a/posts/2008/02/26/jasmin-again.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280032765/ "photo sharing")
-
-[p2037971](http://www.flickr.com/photos/duckunix/2280032765/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/27/trapped-and-out-of-place.md b/posts/2008/02/27/trapped-and-out-of-place.md
deleted file mode 100644
index 7c2db180..00000000
--- a/posts/2008/02/27/trapped-and-out-of-place.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280822752/ "photo sharing")
-
-[p2098143](http://www.flickr.com/photos/duckunix/2280822752/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/28/yellow-in-the-woods.md b/posts/2008/02/28/yellow-in-the-woods.md
deleted file mode 100644
index 8da00129..00000000
--- a/posts/2008/02/28/yellow-in-the-woods.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280032545/ "photo sharing")
-
-[p2098236](http://www.flickr.com/photos/duckunix/2280032545/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/02/29/berries.md b/posts/2008/02/29/berries.md
deleted file mode 100644
index 13c09271..00000000
--- a/posts/2008/02/29/berries.md
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280032411/ "photo sharing")
-
-[p2098240](http://www.flickr.com/photos/duckunix/2280032411/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
-
-Happy Leap-Day!
-
-
diff --git a/posts/2008/03/01/grass-tuft-in-the-woods.md b/posts/2008/03/01/grass-tuft-in-the-woods.md
deleted file mode 100644
index 67b50af6..00000000
--- a/posts/2008/03/01/grass-tuft-in-the-woods.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280032297/ "photo sharing")
-
-[p2098241](http://www.flickr.com/photos/duckunix/2280032297/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/03/02/colors-of-winter.md b/posts/2008/03/02/colors-of-winter.md
deleted file mode 100644
index c9318964..00000000
--- a/posts/2008/03/02/colors-of-winter.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280032171/ "photo sharing")
-
-[p2098242](http://www.flickr.com/photos/duckunix/2280032171/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-Hey, I live in south Texas...this is ya'lls fall temps here. :)
diff --git a/posts/2008/03/03/the-march-of-man.md b/posts/2008/03/03/the-march-of-man.md
deleted file mode 100644
index d9fad913..00000000
--- a/posts/2008/03/03/the-march-of-man.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280032053/ "photo sharing")
-
-[p2098253](http://www.flickr.com/photos/duckunix/2280032053/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-
diff --git a/posts/2008/03/04/tusk.md b/posts/2008/03/04/tusk.md
deleted file mode 100644
index af4a94c1..00000000
--- a/posts/2008/03/04/tusk.md
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280031893/ "photo sharing")
-
-
-[p2098288](http://www.flickr.com/photos/duckunix/2280031893/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-Queue Fleetwood Mac.
diff --git a/posts/2008/03/05/do-you-have-anything.md b/posts/2008/03/05/do-you-have-anything.md
deleted file mode 100644
index 364294c1..00000000
--- a/posts/2008/03/05/do-you-have-anything.md
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-[{.flickr-photo}](http://www.flickr.com/photos/duckunix/2280031623/ "photo sharing")
-
-[p2148849](http://www.flickr.com/photos/duckunix/2280031623/),
-originally uploaded by
-[duckunix](http://www.flickr.com/people/duckunix/).
-
-These guys on campus are still beggars after all these years.
diff --git a/posts/2008/03/06/streetlights.md b/posts/2008/03/06/streetlights.md
deleted file mode 100644
index 28824245..00000000
--- a/posts/2008/03/06/streetlights.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2008/03/07/old-vs-new.md b/posts/2008/03/07/old-vs-new.md
deleted file mode 100644
index 47c5b078..00000000
--- a/posts/2008/03/07/old-vs-new.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2008/03/08/why-do-i-like-purple-flowers.md b/posts/2008/03/08/why-do-i-like-purple-flowers.md
deleted file mode 100644
index 15010fb6..00000000
--- a/posts/2008/03/08/why-do-i-like-purple-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
diff --git a/posts/2008/03/09/old-school-building.md b/posts/2008/03/09/old-school-building.md
deleted file mode 100644
index 339fbb61..00000000
--- a/posts/2008/03/09/old-school-building.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2008/03/10/new-influenced-by-old.md b/posts/2008/03/10/new-influenced-by-old.md
deleted file mode 100644
index e70dc47f..00000000
--- a/posts/2008/03/10/new-influenced-by-old.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
diff --git a/posts/2008/03/11/line-lines-lines.md b/posts/2008/03/11/line-lines-lines.md
deleted file mode 100644
index e5a6169f..00000000
--- a/posts/2008/03/11/line-lines-lines.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2008/03/12/scary-cow.md b/posts/2008/03/12/scary-cow.md
deleted file mode 100644
index de1808aa..00000000
--- a/posts/2008/03/12/scary-cow.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2008/03/13/the-niels-esperson-building.md b/posts/2008/03/13/the-niels-esperson-building.md
deleted file mode 100644
index c4348733..00000000
--- a/posts/2008/03/13/the-niels-esperson-building.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/14/presidents.md b/posts/2008/03/14/presidents.md
deleted file mode 100644
index f1288eba..00000000
--- a/posts/2008/03/14/presidents.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/15/blue-house.md b/posts/2008/03/15/blue-house.md
deleted file mode 100644
index 76464832..00000000
--- a/posts/2008/03/15/blue-house.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/16/bell-tower.md b/posts/2008/03/16/bell-tower.md
deleted file mode 100644
index 1f4a4122..00000000
--- a/posts/2008/03/16/bell-tower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/17/wire-cross.md b/posts/2008/03/17/wire-cross.md
deleted file mode 100644
index abdaa510..00000000
--- a/posts/2008/03/17/wire-cross.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/18/old-tree.md b/posts/2008/03/18/old-tree.md
deleted file mode 100644
index be37752c..00000000
--- a/posts/2008/03/18/old-tree.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2008/03/19/new-beginnings.md b/posts/2008/03/19/new-beginnings.md
deleted file mode 100644
index 05353ce8..00000000
--- a/posts/2008/03/19/new-beginnings.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/20/jasmin.md b/posts/2008/03/20/jasmin.md
deleted file mode 100644
index 30409889..00000000
--- a/posts/2008/03/20/jasmin.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/21/pretty-blue.md b/posts/2008/03/21/pretty-blue.md
deleted file mode 100644
index 34552476..00000000
--- a/posts/2008/03/21/pretty-blue.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/22/it-is-almost-here.md b/posts/2008/03/22/it-is-almost-here.md
deleted file mode 100644
index f630e221..00000000
--- a/posts/2008/03/22/it-is-almost-here.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/23/happy-easter.md b/posts/2008/03/23/happy-easter.md
deleted file mode 100644
index 7f6fb408..00000000
--- a/posts/2008/03/23/happy-easter.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
-
-Peace and joy.
diff --git a/posts/2008/03/24/texas.md b/posts/2008/03/24/texas.md
deleted file mode 100644
index 493351e7..00000000
--- a/posts/2008/03/24/texas.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/25/texas-means-bluebonnets.md b/posts/2008/03/25/texas-means-bluebonnets.md
deleted file mode 100644
index 444102af..00000000
--- a/posts/2008/03/25/texas-means-bluebonnets.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/26/texas-means-bluebonnets-and-old-houses.md b/posts/2008/03/26/texas-means-bluebonnets-and-old-houses.md
deleted file mode 100644
index 7a1bdceb..00000000
--- a/posts/2008/03/26/texas-means-bluebonnets-and-old-houses.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/27/texas-means-spring-wildflowers.md b/posts/2008/03/27/texas-means-spring-wildflowers.md
deleted file mode 100644
index 96ebc512..00000000
--- a/posts/2008/03/27/texas-means-spring-wildflowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/28/texas-means-cows.md b/posts/2008/03/28/texas-means-cows.md
deleted file mode 100644
index 2d1d968b..00000000
--- a/posts/2008/03/28/texas-means-cows.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/29/eagle-on-courthouse.md b/posts/2008/03/29/eagle-on-courthouse.md
deleted file mode 100644
index 1837cab5..00000000
--- a/posts/2008/03/29/eagle-on-courthouse.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/30/old-theater.md b/posts/2008/03/30/old-theater.md
deleted file mode 100644
index 5fca8d45..00000000
--- a/posts/2008/03/30/old-theater.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/03/31/old-paint-on-old-building.md b/posts/2008/03/31/old-paint-on-old-building.md
deleted file mode 100644
index ccd96842..00000000
--- a/posts/2008/03/31/old-paint-on-old-building.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/01/ruins-of-baylor-college-for-women.md b/posts/2008/04/01/ruins-of-baylor-college-for-women.md
deleted file mode 100644
index 8f8a6953..00000000
--- a/posts/2008/04/01/ruins-of-baylor-college-for-women.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/02/more-ruins-of-baylor-college-for-women.md b/posts/2008/04/02/more-ruins-of-baylor-college-for-women.md
deleted file mode 100644
index fd71177d..00000000
--- a/posts/2008/04/02/more-ruins-of-baylor-college-for-women.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/03/column-ruins-of-baylor-college-for-women.md b/posts/2008/04/03/column-ruins-of-baylor-college-for-women.md
deleted file mode 100644
index d350af28..00000000
--- a/posts/2008/04/03/column-ruins-of-baylor-college-for-women.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/04/all-i-want-is-my-heart.md b/posts/2008/04/04/all-i-want-is-my-heart.md
deleted file mode 100644
index 4aede44a..00000000
--- a/posts/2008/04/04/all-i-want-is-my-heart.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/05/grace.md b/posts/2008/04/05/grace.md
deleted file mode 100644
index 710b127c..00000000
--- a/posts/2008/04/05/grace.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/06/timeless.md b/posts/2008/04/06/timeless.md
deleted file mode 100644
index 90dc05a1..00000000
--- a/posts/2008/04/06/timeless.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/07/small-red-flower.md b/posts/2008/04/07/small-red-flower.md
deleted file mode 100644
index c8cfbf89..00000000
--- a/posts/2008/04/07/small-red-flower.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/08/purple-happy-face.md b/posts/2008/04/08/purple-happy-face.md
deleted file mode 100644
index ebd50663..00000000
--- a/posts/2008/04/08/purple-happy-face.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/09/sad-yellow-flower.md b/posts/2008/04/09/sad-yellow-flower.md
deleted file mode 100644
index 20775f14..00000000
--- a/posts/2008/04/09/sad-yellow-flower.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/10/small-red-flowers.md b/posts/2008/04/10/small-red-flowers.md
deleted file mode 100644
index 796c48a0..00000000
--- a/posts/2008/04/10/small-red-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/11/big-flower.md b/posts/2008/04/11/big-flower.md
deleted file mode 100644
index 2fd9a946..00000000
--- a/posts/2008/04/11/big-flower.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/12/hogg-place.md b/posts/2008/04/12/hogg-place.md
deleted file mode 100644
index cd0ab93a..00000000
--- a/posts/2008/04/12/hogg-place.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/13/lines-all-the-way-up.md b/posts/2008/04/13/lines-all-the-way-up.md
deleted file mode 100644
index dd2a98fc..00000000
--- a/posts/2008/04/13/lines-all-the-way-up.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/14/spider-webs-redux.md b/posts/2008/04/14/spider-webs-redux.md
deleted file mode 100644
index 6317f193..00000000
--- a/posts/2008/04/14/spider-webs-redux.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/15/spider-web-5.md b/posts/2008/04/15/spider-web-5.md
deleted file mode 100644
index 3e64318b..00000000
--- a/posts/2008/04/15/spider-web-5.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/16/spider-web-6.md b/posts/2008/04/16/spider-web-6.md
deleted file mode 100644
index 70236cce..00000000
--- a/posts/2008/04/16/spider-web-6.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/17/2008-04-12-1.md b/posts/2008/04/17/2008-04-12-1.md
deleted file mode 100644
index 41852f8f..00000000
--- a/posts/2008/04/17/2008-04-12-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-12/P4121956.jpg)
diff --git a/posts/2008/04/17/foutains-on-main.md b/posts/2008/04/17/foutains-on-main.md
deleted file mode 100644
index 2bb26397..00000000
--- a/posts/2008/04/17/foutains-on-main.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/04/18/2008-04-12-2.md b/posts/2008/04/18/2008-04-12-2.md
deleted file mode 100644
index 60614fde..00000000
--- a/posts/2008/04/18/2008-04-12-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-12/P4121957.jpg)
diff --git a/posts/2008/04/19/2008-04-12-3.md b/posts/2008/04/19/2008-04-12-3.md
deleted file mode 100644
index d0b94f14..00000000
--- a/posts/2008/04/19/2008-04-12-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-12/P4121961.jpg)
diff --git a/posts/2008/04/20/2008-04-12-4.md b/posts/2008/04/20/2008-04-12-4.md
deleted file mode 100644
index 4114fdf1..00000000
--- a/posts/2008/04/20/2008-04-12-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-12/P4121972.jpg)
diff --git a/posts/2008/04/21/2008-04-12-5.md b/posts/2008/04/21/2008-04-12-5.md
deleted file mode 100644
index 122cb9b3..00000000
--- a/posts/2008/04/21/2008-04-12-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-12/P4121975.jpg)
diff --git a/posts/2008/04/22/2008-04-12-6.md b/posts/2008/04/22/2008-04-12-6.md
deleted file mode 100644
index 1f63fa24..00000000
--- a/posts/2008/04/22/2008-04-12-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-12/P4121996.jpg)
diff --git a/posts/2008/04/23/2008-04-14-photowalk-downtown-1.md b/posts/2008/04/23/2008-04-14-photowalk-downtown-1.md
deleted file mode 100644
index c514b4fa..00000000
--- a/posts/2008/04/23/2008-04-14-photowalk-downtown-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142218.jpg)
diff --git a/posts/2008/04/24/2008-04-14-photowalk-downtown-2.md b/posts/2008/04/24/2008-04-14-photowalk-downtown-2.md
deleted file mode 100644
index 09f7548a..00000000
--- a/posts/2008/04/24/2008-04-14-photowalk-downtown-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142219.jpg)
diff --git a/posts/2008/04/25/2008-04-14-photowalk-downtown-3.md b/posts/2008/04/25/2008-04-14-photowalk-downtown-3.md
deleted file mode 100644
index 66af0f45..00000000
--- a/posts/2008/04/25/2008-04-14-photowalk-downtown-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142220.jpg)
diff --git a/posts/2008/04/26/2008-04-14-photowalk-downtown-4.md b/posts/2008/04/26/2008-04-14-photowalk-downtown-4.md
deleted file mode 100644
index 207ca1e0..00000000
--- a/posts/2008/04/26/2008-04-14-photowalk-downtown-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142221.jpg)
diff --git a/posts/2008/04/27/2008-04-14-photowalk-downtown-5.md b/posts/2008/04/27/2008-04-14-photowalk-downtown-5.md
deleted file mode 100644
index 9b193ae3..00000000
--- a/posts/2008/04/27/2008-04-14-photowalk-downtown-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142222.jpg)
diff --git a/posts/2008/04/28/2008-04-14-photowalk-downtown-6.md b/posts/2008/04/28/2008-04-14-photowalk-downtown-6.md
deleted file mode 100644
index b29fa873..00000000
--- a/posts/2008/04/28/2008-04-14-photowalk-downtown-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142223.jpg)
diff --git a/posts/2008/04/29/2008-04-14-photowalk-downtown-7.md b/posts/2008/04/29/2008-04-14-photowalk-downtown-7.md
deleted file mode 100644
index eee6ee61..00000000
--- a/posts/2008/04/29/2008-04-14-photowalk-downtown-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142224.jpg)
diff --git a/posts/2008/04/30/2008-04-14-photowalk-downtown-8.md b/posts/2008/04/30/2008-04-14-photowalk-downtown-8.md
deleted file mode 100644
index 4e2bb810..00000000
--- a/posts/2008/04/30/2008-04-14-photowalk-downtown-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142225.jpg)
diff --git a/posts/2008/05/01/2008-04-14-photowalk-downtown-9.md b/posts/2008/05/01/2008-04-14-photowalk-downtown-9.md
deleted file mode 100644
index 6300b3c4..00000000
--- a/posts/2008/05/01/2008-04-14-photowalk-downtown-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142226.jpg)
diff --git a/posts/2008/05/02/2008-04-14-photowalk-downtown-10.md b/posts/2008/05/02/2008-04-14-photowalk-downtown-10.md
deleted file mode 100644
index f70b0163..00000000
--- a/posts/2008/05/02/2008-04-14-photowalk-downtown-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-14%20Photowalk%20Downtown/P4142229.jpg)
diff --git a/posts/2008/05/03/2008-04-12-7.md b/posts/2008/05/03/2008-04-12-7.md
deleted file mode 100644
index a7668f63..00000000
--- a/posts/2008/05/03/2008-04-12-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2008-04-12/P4122051.jpg)
diff --git a/posts/2008/05/04/more_for_the_blog-1.md b/posts/2008/05/04/more_for_the_blog-1.md
deleted file mode 100644
index 3c511bc1..00000000
--- a/posts/2008/05/04/more_for_the_blog-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P3241620.jpg)
diff --git a/posts/2008/05/05/more_for_the_blog-2.md b/posts/2008/05/05/more_for_the_blog-2.md
deleted file mode 100644
index 9d0c0bf1..00000000
--- a/posts/2008/05/05/more_for_the_blog-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4051793.jpg)
diff --git a/posts/2008/05/06/more_for_the_blog-3.md b/posts/2008/05/06/more_for_the_blog-3.md
deleted file mode 100644
index 0db7b31c..00000000
--- a/posts/2008/05/06/more_for_the_blog-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4152245.jpg)
diff --git a/posts/2008/05/07/more_for_the_blog-4.md b/posts/2008/05/07/more_for_the_blog-4.md
deleted file mode 100644
index f51be1e7..00000000
--- a/posts/2008/05/07/more_for_the_blog-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4192268.jpg)
diff --git a/posts/2008/05/08/more_for_the_blog-5.md b/posts/2008/05/08/more_for_the_blog-5.md
deleted file mode 100644
index 767c95b6..00000000
--- a/posts/2008/05/08/more_for_the_blog-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4192331.jpg)
diff --git a/posts/2008/05/09/more_for_the_blog-6.md b/posts/2008/05/09/more_for_the_blog-6.md
deleted file mode 100644
index 97463edd..00000000
--- a/posts/2008/05/09/more_for_the_blog-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4192423.jpg)
diff --git a/posts/2008/05/10/more_for_the_blog-7.md b/posts/2008/05/10/more_for_the_blog-7.md
deleted file mode 100644
index f23cb7e6..00000000
--- a/posts/2008/05/10/more_for_the_blog-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4202501.jpg)
diff --git a/posts/2008/05/11/more_for_the_blog-8.md b/posts/2008/05/11/more_for_the_blog-8.md
deleted file mode 100644
index c743b5f1..00000000
--- a/posts/2008/05/11/more_for_the_blog-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4202517.jpg)
diff --git a/posts/2008/05/12/more_for_the_blog-9.md b/posts/2008/05/12/more_for_the_blog-9.md
deleted file mode 100644
index 20c82cd9..00000000
--- a/posts/2008/05/12/more_for_the_blog-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4222698.jpg)
diff --git a/posts/2008/05/13/more_for_the_blog-10.md b/posts/2008/05/13/more_for_the_blog-10.md
deleted file mode 100644
index 00147a03..00000000
--- a/posts/2008/05/13/more_for_the_blog-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4282865.jpg)
diff --git a/posts/2008/05/14/more_for_the_blog-11.md b/posts/2008/05/14/more_for_the_blog-11.md
deleted file mode 100644
index a3ad972c..00000000
--- a/posts/2008/05/14/more_for_the_blog-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More_For_The_Blog/P4282866.jpg)
diff --git a/posts/2008/05/15/hammon-ranch-nature-1.md b/posts/2008/05/15/hammon-ranch-nature-1.md
deleted file mode 100644
index 106fa09f..00000000
--- a/posts/2008/05/15/hammon-ranch-nature-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192297.jpg)
diff --git a/posts/2008/05/16/hammon-ranch-nature-2.md b/posts/2008/05/16/hammon-ranch-nature-2.md
deleted file mode 100644
index 0b6349a8..00000000
--- a/posts/2008/05/16/hammon-ranch-nature-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192302.jpg)
diff --git a/posts/2008/05/17/hammon-ranch-nature-3.md b/posts/2008/05/17/hammon-ranch-nature-3.md
deleted file mode 100644
index 4b70b49a..00000000
--- a/posts/2008/05/17/hammon-ranch-nature-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192320.jpg)
diff --git a/posts/2008/05/18/hammon-ranch-nature-4.md b/posts/2008/05/18/hammon-ranch-nature-4.md
deleted file mode 100644
index 6780dbba..00000000
--- a/posts/2008/05/18/hammon-ranch-nature-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192324.jpg)
diff --git a/posts/2008/05/19/hammon-ranch-nature-5.md b/posts/2008/05/19/hammon-ranch-nature-5.md
deleted file mode 100644
index 4c1d62b6..00000000
--- a/posts/2008/05/19/hammon-ranch-nature-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192339.jpg)
diff --git a/posts/2008/05/20/hammon-ranch-nature-6.md b/posts/2008/05/20/hammon-ranch-nature-6.md
deleted file mode 100644
index 51f673b7..00000000
--- a/posts/2008/05/20/hammon-ranch-nature-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192410.jpg)
diff --git a/posts/2008/05/21/hammon-ranch-nature-7.md b/posts/2008/05/21/hammon-ranch-nature-7.md
deleted file mode 100644
index 8f0a181c..00000000
--- a/posts/2008/05/21/hammon-ranch-nature-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192418.jpg)
diff --git a/posts/2008/05/22/hammon-ranch-nature-8.md b/posts/2008/05/22/hammon-ranch-nature-8.md
deleted file mode 100644
index 0f8d779a..00000000
--- a/posts/2008/05/22/hammon-ranch-nature-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192464.jpg)
diff --git a/posts/2008/05/23/hammon-ranch-nature-9.md b/posts/2008/05/23/hammon-ranch-nature-9.md
deleted file mode 100644
index a68fd2ca..00000000
--- a/posts/2008/05/23/hammon-ranch-nature-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192478.jpg)
diff --git a/posts/2008/05/24/hammon-ranch-nature-10.md b/posts/2008/05/24/hammon-ranch-nature-10.md
deleted file mode 100644
index 43394ec1..00000000
--- a/posts/2008/05/24/hammon-ranch-nature-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192496.jpg)
diff --git a/posts/2008/05/25/hammon-ranch-nature-11.md b/posts/2008/05/25/hammon-ranch-nature-11.md
deleted file mode 100644
index 5c1c7cf2..00000000
--- a/posts/2008/05/25/hammon-ranch-nature-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192498.jpg)
diff --git a/posts/2008/05/26/hammon-ranch-nature-12.md b/posts/2008/05/26/hammon-ranch-nature-12.md
deleted file mode 100644
index d7d25f16..00000000
--- a/posts/2008/05/26/hammon-ranch-nature-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hammon%20Ranch%20Nature/P4192499.jpg)
diff --git a/posts/2008/05/27/random-for-june-1.md b/posts/2008/05/27/random-for-june-1.md
deleted file mode 100644
index 75996032..00000000
--- a/posts/2008/05/27/random-for-june-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P4021697.jpg)
diff --git a/posts/2008/05/28/random-for-june-2.md b/posts/2008/05/28/random-for-june-2.md
deleted file mode 100644
index e2d156b1..00000000
--- a/posts/2008/05/28/random-for-june-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P4051719.jpg)
diff --git a/posts/2008/05/29/random-for-june-3.md b/posts/2008/05/29/random-for-june-3.md
deleted file mode 100644
index e68d43e0..00000000
--- a/posts/2008/05/29/random-for-june-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P4051723.jpg)
diff --git a/posts/2008/05/30/random-for-june-4.md b/posts/2008/05/30/random-for-june-4.md
deleted file mode 100644
index a4db4e85..00000000
--- a/posts/2008/05/30/random-for-june-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P4051724.jpg)
diff --git a/posts/2008/05/31/random-for-june-5.md b/posts/2008/05/31/random-for-june-5.md
deleted file mode 100644
index e8ae49c1..00000000
--- a/posts/2008/05/31/random-for-june-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P4051735.jpg)
diff --git a/posts/2008/06/01/random-for-june-6.md b/posts/2008/06/01/random-for-june-6.md
deleted file mode 100644
index 18ccb2cb..00000000
--- a/posts/2008/06/01/random-for-june-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P4121968.jpg)
diff --git a/posts/2008/06/02/random-for-june-7.md b/posts/2008/06/02/random-for-june-7.md
deleted file mode 100644
index 1ff29848..00000000
--- a/posts/2008/06/02/random-for-june-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P5012876.jpg)
diff --git a/posts/2008/06/03/random-for-june-8.md b/posts/2008/06/03/random-for-june-8.md
deleted file mode 100644
index 60fadf87..00000000
--- a/posts/2008/06/03/random-for-june-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P5022890.jpg)
diff --git a/posts/2008/06/04/random-for-june-9.md b/posts/2008/06/04/random-for-june-9.md
deleted file mode 100644
index 0a83b561..00000000
--- a/posts/2008/06/04/random-for-june-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P5102960.jpg)
diff --git a/posts/2008/06/05/random-for-june-10.md b/posts/2008/06/05/random-for-june-10.md
deleted file mode 100644
index ef411144..00000000
--- a/posts/2008/06/05/random-for-june-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P5112995.jpg)
diff --git a/posts/2008/06/06/random-for-june-11.md b/posts/2008/06/06/random-for-june-11.md
deleted file mode 100644
index 23596c02..00000000
--- a/posts/2008/06/06/random-for-june-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P5113002.jpg)
diff --git a/posts/2008/06/07/random-for-june-12.md b/posts/2008/06/07/random-for-june-12.md
deleted file mode 100644
index ce14c685..00000000
--- a/posts/2008/06/07/random-for-june-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P5113062.jpg)
diff --git a/posts/2008/06/08/random-for-june-13.md b/posts/2008/06/08/random-for-june-13.md
deleted file mode 100644
index 1ab33050..00000000
--- a/posts/2008/06/08/random-for-june-13.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P5113109.jpg)
diff --git a/posts/2008/06/09/random-for-june-14.md b/posts/2008/06/09/random-for-june-14.md
deleted file mode 100644
index 7f5aada7..00000000
--- a/posts/2008/06/09/random-for-june-14.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20For%20June/P5183151.jpg)
diff --git a/posts/2008/06/10/random-for-end-of-june-1.md b/posts/2008/06/10/random-for-end-of-june-1.md
deleted file mode 100644
index 448f50f7..00000000
--- a/posts/2008/06/10/random-for-end-of-june-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P5273153.jpg)
diff --git a/posts/2008/06/11/random-for-end-of-june-2.md b/posts/2008/06/11/random-for-end-of-june-2.md
deleted file mode 100644
index 3d313932..00000000
--- a/posts/2008/06/11/random-for-end-of-june-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P5273156.jpg)
diff --git a/posts/2008/06/12/random-for-end-of-june-3.md b/posts/2008/06/12/random-for-end-of-june-3.md
deleted file mode 100644
index b77c831c..00000000
--- a/posts/2008/06/12/random-for-end-of-june-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P5313158.jpg)
diff --git a/posts/2008/06/13/random-for-end-of-june-4.md b/posts/2008/06/13/random-for-end-of-june-4.md
deleted file mode 100644
index 5f1c0593..00000000
--- a/posts/2008/06/13/random-for-end-of-june-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P5313167.jpg)
diff --git a/posts/2008/06/14/random-for-end-of-june-5.md b/posts/2008/06/14/random-for-end-of-june-5.md
deleted file mode 100644
index 0c22afce..00000000
--- a/posts/2008/06/14/random-for-end-of-june-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P6033198.jpg)
diff --git a/posts/2008/06/15/random-for-end-of-june-6.md b/posts/2008/06/15/random-for-end-of-june-6.md
deleted file mode 100644
index d529f2d7..00000000
--- a/posts/2008/06/15/random-for-end-of-june-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P6033199.jpg)
diff --git a/posts/2008/06/16/random-for-end-of-june-7.md b/posts/2008/06/16/random-for-end-of-june-7.md
deleted file mode 100644
index bf8a91ce..00000000
--- a/posts/2008/06/16/random-for-end-of-june-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P6033214.jpg)
diff --git a/posts/2008/06/17/random-for-end-of-june-8.md b/posts/2008/06/17/random-for-end-of-june-8.md
deleted file mode 100644
index 5e05e4a5..00000000
--- a/posts/2008/06/17/random-for-end-of-june-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P6053232.jpg)
diff --git a/posts/2008/06/18/random-for-end-of-june-9.md b/posts/2008/06/18/random-for-end-of-june-9.md
deleted file mode 100644
index b8347aac..00000000
--- a/posts/2008/06/18/random-for-end-of-june-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P6053234.jpg)
diff --git a/posts/2008/06/19/random-for-end-of-june-10.md b/posts/2008/06/19/random-for-end-of-june-10.md
deleted file mode 100644
index 368fa03f..00000000
--- a/posts/2008/06/19/random-for-end-of-june-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P6053239.jpg)
diff --git a/posts/2008/06/20/random-for-end-of-june-11.md b/posts/2008/06/20/random-for-end-of-june-11.md
deleted file mode 100644
index 9ba20646..00000000
--- a/posts/2008/06/20/random-for-end-of-june-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P7072936.jpg)
diff --git a/posts/2008/06/21/random-for-end-of-june-12.md b/posts/2008/06/21/random-for-end-of-june-12.md
deleted file mode 100644
index 5ae232ff..00000000
--- a/posts/2008/06/21/random-for-end-of-june-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P7183013.jpg)
diff --git a/posts/2008/06/22/random-for-end-of-june-13.md b/posts/2008/06/22/random-for-end-of-june-13.md
deleted file mode 100644
index f2ea5080..00000000
--- a/posts/2008/06/22/random-for-end-of-june-13.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P7183016.jpg)
diff --git a/posts/2008/06/23/random-for-end-of-june-14.md b/posts/2008/06/23/random-for-end-of-june-14.md
deleted file mode 100644
index ddd38e1c..00000000
--- a/posts/2008/06/23/random-for-end-of-june-14.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P7183021.jpg)
diff --git a/posts/2008/06/24/random-for-end-of-june-15.md b/posts/2008/06/24/random-for-end-of-june-15.md
deleted file mode 100644
index f790ce9f..00000000
--- a/posts/2008/06/24/random-for-end-of-june-15.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20for%20end%20of%20June/P7183025.jpg)
diff --git a/posts/2008/06/25/end-of-june-1.md b/posts/2008/06/25/end-of-june-1.md
deleted file mode 100644
index 2e7dcb0f..00000000
--- a/posts/2008/06/25/end-of-june-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P4202515.jpg)
diff --git a/posts/2008/06/26/end-of-june-2.md b/posts/2008/06/26/end-of-june-2.md
deleted file mode 100644
index 933377f1..00000000
--- a/posts/2008/06/26/end-of-june-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P4202518.jpg)
diff --git a/posts/2008/06/27/end-of-june-3.md b/posts/2008/06/27/end-of-june-3.md
deleted file mode 100644
index 906eae8e..00000000
--- a/posts/2008/06/27/end-of-june-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P6053224.jpg)
diff --git a/posts/2008/06/28/end-of-june-4.md b/posts/2008/06/28/end-of-june-4.md
deleted file mode 100644
index 0b86396c..00000000
--- a/posts/2008/06/28/end-of-june-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P6193439.jpg)
diff --git a/posts/2008/06/29/end-of-june-5.md b/posts/2008/06/29/end-of-june-5.md
deleted file mode 100644
index 2313a4d2..00000000
--- a/posts/2008/06/29/end-of-june-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P6193441.jpg)
diff --git a/posts/2008/06/30/end-of-june-6.md b/posts/2008/06/30/end-of-june-6.md
deleted file mode 100644
index bd5ae2df..00000000
--- a/posts/2008/06/30/end-of-june-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P6193447.jpg)
diff --git a/posts/2008/07/01/end-of-june-7.md b/posts/2008/07/01/end-of-june-7.md
deleted file mode 100644
index 3711af4d..00000000
--- a/posts/2008/07/01/end-of-june-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P6193449.jpg)
diff --git a/posts/2008/07/02/end-of-june-8.md b/posts/2008/07/02/end-of-june-8.md
deleted file mode 100644
index 02b80be2..00000000
--- a/posts/2008/07/02/end-of-june-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P6193451.jpg)
diff --git a/posts/2008/07/03/end-of-june-9.md b/posts/2008/07/03/end-of-june-9.md
deleted file mode 100644
index 6bd5791d..00000000
--- a/posts/2008/07/03/end-of-june-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P6193474.jpg)
diff --git a/posts/2008/07/04/end-of-june-10.md b/posts/2008/07/04/end-of-june-10.md
deleted file mode 100644
index 00b2ce3f..00000000
--- a/posts/2008/07/04/end-of-june-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20June/P6193483.jpg)
diff --git a/posts/2008/07/05/july-1.md b/posts/2008/07/05/july-1.md
deleted file mode 100644
index 02720273..00000000
--- a/posts/2008/07/05/july-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P6233806.jpg)
diff --git a/posts/2008/07/06/july-2.md b/posts/2008/07/06/july-2.md
deleted file mode 100644
index 70f05ca5..00000000
--- a/posts/2008/07/06/july-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P7043831.jpg)
diff --git a/posts/2008/07/07/july-3.md b/posts/2008/07/07/july-3.md
deleted file mode 100644
index cef44fbc..00000000
--- a/posts/2008/07/07/july-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P7043834.jpg)
diff --git a/posts/2008/07/08/july-4.md b/posts/2008/07/08/july-4.md
deleted file mode 100644
index 88bb695d..00000000
--- a/posts/2008/07/08/july-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P7043838.jpg)
diff --git a/posts/2008/07/09/july-5.md b/posts/2008/07/09/july-5.md
deleted file mode 100644
index 14ab9c7b..00000000
--- a/posts/2008/07/09/july-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P7043855.jpg)
diff --git a/posts/2008/07/10/july-6.md b/posts/2008/07/10/july-6.md
deleted file mode 100644
index 6026eef8..00000000
--- a/posts/2008/07/10/july-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P7043860.jpg)
diff --git a/posts/2008/07/11/july-7.md b/posts/2008/07/11/july-7.md
deleted file mode 100644
index 9a2bf10f..00000000
--- a/posts/2008/07/11/july-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P7043866.jpg)
diff --git a/posts/2008/07/12/july-8.md b/posts/2008/07/12/july-8.md
deleted file mode 100644
index fed4539f..00000000
--- a/posts/2008/07/12/july-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P7043885.jpg)
diff --git a/posts/2008/07/13/july-9.md b/posts/2008/07/13/july-9.md
deleted file mode 100644
index c77d5e0c..00000000
--- a/posts/2008/07/13/july-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P7043888.jpg)
diff --git a/posts/2008/07/14/july-10.md b/posts/2008/07/14/july-10.md
deleted file mode 100644
index 77ff97f7..00000000
--- a/posts/2008/07/14/july-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July/P7043889.jpg)
diff --git a/posts/2008/07/15/july-2008-1.md b/posts/2008/07/15/july-2008-1.md
deleted file mode 100644
index 3e439e57..00000000
--- a/posts/2008/07/15/july-2008-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P2220159.jpg)
diff --git a/posts/2008/07/16/july-2008-2.md b/posts/2008/07/16/july-2008-2.md
deleted file mode 100644
index 063bd305..00000000
--- a/posts/2008/07/16/july-2008-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P2230164.jpg)
diff --git a/posts/2008/07/17/july-2008-3.md b/posts/2008/07/17/july-2008-3.md
deleted file mode 100644
index ca01634c..00000000
--- a/posts/2008/07/17/july-2008-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P2290344.jpg)
diff --git a/posts/2008/07/18/july-2008-4.md b/posts/2008/07/18/july-2008-4.md
deleted file mode 100644
index adbb76d3..00000000
--- a/posts/2008/07/18/july-2008-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P2290345.jpg)
diff --git a/posts/2008/07/19/july-2008-5.md b/posts/2008/07/19/july-2008-5.md
deleted file mode 100644
index 941082ca..00000000
--- a/posts/2008/07/19/july-2008-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P2290346.jpg)
diff --git a/posts/2008/07/20/july-2008-6.md b/posts/2008/07/20/july-2008-6.md
deleted file mode 100644
index 36f1f16f..00000000
--- a/posts/2008/07/20/july-2008-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P2290349.jpg)
diff --git a/posts/2008/07/21/july-2008-7.md b/posts/2008/07/21/july-2008-7.md
deleted file mode 100644
index d1956624..00000000
--- a/posts/2008/07/21/july-2008-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P2290351.jpg)
diff --git a/posts/2008/07/22/july-2008-8.md b/posts/2008/07/22/july-2008-8.md
deleted file mode 100644
index 10ff2cc0..00000000
--- a/posts/2008/07/22/july-2008-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P3190901.jpg)
diff --git a/posts/2008/07/23/july-2008-9.md b/posts/2008/07/23/july-2008-9.md
deleted file mode 100644
index 7cd245ef..00000000
--- a/posts/2008/07/23/july-2008-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P3191109.jpg)
diff --git a/posts/2008/07/24/july-2008-10.md b/posts/2008/07/24/july-2008-10.md
deleted file mode 100644
index 827428fd..00000000
--- a/posts/2008/07/24/july-2008-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P3191118.jpg)
diff --git a/posts/2008/07/25/july-2008-11.md b/posts/2008/07/25/july-2008-11.md
deleted file mode 100644
index bc9d4c14..00000000
--- a/posts/2008/07/25/july-2008-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P3191120.jpg)
diff --git a/posts/2008/07/26/july-2008-12.md b/posts/2008/07/26/july-2008-12.md
deleted file mode 100644
index 0323c062..00000000
--- a/posts/2008/07/26/july-2008-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P3201148.jpg)
diff --git a/posts/2008/07/27/july-2008-13.md b/posts/2008/07/27/july-2008-13.md
deleted file mode 100644
index 53b67a43..00000000
--- a/posts/2008/07/27/july-2008-13.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P3201156.jpg)
diff --git a/posts/2008/07/28/july-2008-14.md b/posts/2008/07/28/july-2008-14.md
deleted file mode 100644
index 2a1a0143..00000000
--- a/posts/2008/07/28/july-2008-14.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-[{.alignnone
-.size-full .wp-image-1351}](/wp-content/uploads/July-2008/P3201257.jpg)
diff --git a/posts/2008/07/29/july-2008-15.md b/posts/2008/07/29/july-2008-15.md
deleted file mode 100644
index 9cd159ba..00000000
--- a/posts/2008/07/29/july-2008-15.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P3221385.jpg)
diff --git a/posts/2008/07/30/july-2008-16.md b/posts/2008/07/30/july-2008-16.md
deleted file mode 100644
index a21c980d..00000000
--- a/posts/2008/07/30/july-2008-16.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P3311685.jpg)
diff --git a/posts/2008/07/31/july-2008-17.md b/posts/2008/07/31/july-2008-17.md
deleted file mode 100644
index 82c158d3..00000000
--- a/posts/2008/07/31/july-2008-17.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July-2008/P4152239.jpg)
diff --git a/posts/2008/07/31/la-centera-pond-1.md b/posts/2008/07/31/la-centera-pond-1.md
deleted file mode 100644
index 58897373..00000000
--- a/posts/2008/07/31/la-centera-pond-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274012.jpg)
diff --git a/posts/2008/08/01/la-centera-pond-2.md b/posts/2008/08/01/la-centera-pond-2.md
deleted file mode 100644
index c2acc4d1..00000000
--- a/posts/2008/08/01/la-centera-pond-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274025.jpg)
diff --git a/posts/2008/08/02/la-centera-pond-3.md b/posts/2008/08/02/la-centera-pond-3.md
deleted file mode 100644
index a460e71d..00000000
--- a/posts/2008/08/02/la-centera-pond-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274029.jpg)
diff --git a/posts/2008/08/03/la-centera-pond-4.md b/posts/2008/08/03/la-centera-pond-4.md
deleted file mode 100644
index 3bb5e647..00000000
--- a/posts/2008/08/03/la-centera-pond-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274030.jpg)
diff --git a/posts/2008/08/04/la-centera-pond-5.md b/posts/2008/08/04/la-centera-pond-5.md
deleted file mode 100644
index bd63d9e5..00000000
--- a/posts/2008/08/04/la-centera-pond-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274032.jpg)
diff --git a/posts/2008/08/05/la-centera-pond-6.md b/posts/2008/08/05/la-centera-pond-6.md
deleted file mode 100644
index 682df5cf..00000000
--- a/posts/2008/08/05/la-centera-pond-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274034.jpg)
diff --git a/posts/2008/08/06/la-centera-pond-7.md b/posts/2008/08/06/la-centera-pond-7.md
deleted file mode 100644
index c26db2fe..00000000
--- a/posts/2008/08/06/la-centera-pond-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274035.jpg)
diff --git a/posts/2008/08/07/la-centera-pond-8.md b/posts/2008/08/07/la-centera-pond-8.md
deleted file mode 100644
index 83121905..00000000
--- a/posts/2008/08/07/la-centera-pond-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274036.jpg)
diff --git a/posts/2008/08/08/la-centera-pond-9.md b/posts/2008/08/08/la-centera-pond-9.md
deleted file mode 100644
index 1e0be891..00000000
--- a/posts/2008/08/08/la-centera-pond-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274050.jpg)
diff --git a/posts/2008/08/09/la-centera-pond-10.md b/posts/2008/08/09/la-centera-pond-10.md
deleted file mode 100644
index 57c79460..00000000
--- a/posts/2008/08/09/la-centera-pond-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274054.jpg)
diff --git a/posts/2008/08/10/la-centera-pond-11.md b/posts/2008/08/10/la-centera-pond-11.md
deleted file mode 100644
index e115c7bb..00000000
--- a/posts/2008/08/10/la-centera-pond-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274060.jpg)
diff --git a/posts/2008/08/11/la-centera-pond-12.md b/posts/2008/08/11/la-centera-pond-12.md
deleted file mode 100644
index 7b1454ce..00000000
--- a/posts/2008/08/11/la-centera-pond-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274062.jpg)
diff --git a/posts/2008/08/12/la-centera-pond-13.md b/posts/2008/08/12/la-centera-pond-13.md
deleted file mode 100644
index cede3f39..00000000
--- a/posts/2008/08/12/la-centera-pond-13.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274065.jpg)
diff --git a/posts/2008/08/13/la-centera-pond-14.md b/posts/2008/08/13/la-centera-pond-14.md
deleted file mode 100644
index bf90a4b8..00000000
--- a/posts/2008/08/13/la-centera-pond-14.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274067.jpg)
diff --git a/posts/2008/08/14/la-centera-pond-15.md b/posts/2008/08/14/la-centera-pond-15.md
deleted file mode 100644
index 4e973e7b..00000000
--- a/posts/2008/08/14/la-centera-pond-15.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274070.jpg)
diff --git a/posts/2008/08/15/la-centera-pond-16.md b/posts/2008/08/15/la-centera-pond-16.md
deleted file mode 100644
index 9b6dcc06..00000000
--- a/posts/2008/08/15/la-centera-pond-16.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274080.jpg)
diff --git a/posts/2008/08/16/la-centera-pond-17.md b/posts/2008/08/16/la-centera-pond-17.md
deleted file mode 100644
index 6584a262..00000000
--- a/posts/2008/08/16/la-centera-pond-17.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/La%20Centera%20Pond/P7274083.jpg)
diff --git a/posts/2008/08/17/pastoral-garden-1.md b/posts/2008/08/17/pastoral-garden-1.md
deleted file mode 100644
index 270c894e..00000000
--- a/posts/2008/08/17/pastoral-garden-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074161.jpg)
diff --git a/posts/2008/08/18/pastoral-garden-2.md b/posts/2008/08/18/pastoral-garden-2.md
deleted file mode 100644
index c8f314a1..00000000
--- a/posts/2008/08/18/pastoral-garden-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074162.jpg)
diff --git a/posts/2008/08/19/pastoral-garden-3.md b/posts/2008/08/19/pastoral-garden-3.md
deleted file mode 100644
index 5840425d..00000000
--- a/posts/2008/08/19/pastoral-garden-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074166.jpg)
diff --git a/posts/2008/08/20/pastoral-garden-4.md b/posts/2008/08/20/pastoral-garden-4.md
deleted file mode 100644
index 00d411de..00000000
--- a/posts/2008/08/20/pastoral-garden-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074173.jpg)
diff --git a/posts/2008/08/21/pastoral-garden-5.md b/posts/2008/08/21/pastoral-garden-5.md
deleted file mode 100644
index e6f7d926..00000000
--- a/posts/2008/08/21/pastoral-garden-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074179.jpg)
diff --git a/posts/2008/08/22/pastoral-garden-6.md b/posts/2008/08/22/pastoral-garden-6.md
deleted file mode 100644
index b01c2772..00000000
--- a/posts/2008/08/22/pastoral-garden-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074180.jpg)
diff --git a/posts/2008/08/23/pastoral-garden-7.md b/posts/2008/08/23/pastoral-garden-7.md
deleted file mode 100644
index 638e6be8..00000000
--- a/posts/2008/08/23/pastoral-garden-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074183.jpg)
diff --git a/posts/2008/08/24/pastoral-garden-8.md b/posts/2008/08/24/pastoral-garden-8.md
deleted file mode 100644
index f623322f..00000000
--- a/posts/2008/08/24/pastoral-garden-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074184.jpg)
diff --git a/posts/2008/08/25/pastoral-garden-9.md b/posts/2008/08/25/pastoral-garden-9.md
deleted file mode 100644
index d7a720c1..00000000
--- a/posts/2008/08/25/pastoral-garden-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074185.jpg)
diff --git a/posts/2008/08/26/pastoral-garden-10.md b/posts/2008/08/26/pastoral-garden-10.md
deleted file mode 100644
index 79a061fa..00000000
--- a/posts/2008/08/26/pastoral-garden-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074187.jpg)
diff --git a/posts/2008/08/27/pastoral-garden-11.md b/posts/2008/08/27/pastoral-garden-11.md
deleted file mode 100644
index eff8b16c..00000000
--- a/posts/2008/08/27/pastoral-garden-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074192.jpg)
diff --git a/posts/2008/08/28/pastoral-garden-12.md b/posts/2008/08/28/pastoral-garden-12.md
deleted file mode 100644
index 317359cd..00000000
--- a/posts/2008/08/28/pastoral-garden-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pastoral%20Garden/P8074202.jpg)
diff --git a/posts/2008/08/29/end-of-summer-1.md b/posts/2008/08/29/end-of-summer-1.md
deleted file mode 100644
index 29587694..00000000
--- a/posts/2008/08/29/end-of-summer-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20Summer/P8144419.jpg)
diff --git a/posts/2008/08/30/end-of-summer-2.md b/posts/2008/08/30/end-of-summer-2.md
deleted file mode 100644
index dd9100df..00000000
--- a/posts/2008/08/30/end-of-summer-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20Summer/P8144429.jpg)
diff --git a/posts/2008/08/31/end-of-summer-3.md b/posts/2008/08/31/end-of-summer-3.md
deleted file mode 100644
index c90b03bd..00000000
--- a/posts/2008/08/31/end-of-summer-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20Summer/P8144431.jpg)
diff --git a/posts/2008/09/01/end-of-summer-4.md b/posts/2008/09/01/end-of-summer-4.md
deleted file mode 100644
index 0c8d7726..00000000
--- a/posts/2008/09/01/end-of-summer-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20Summer/P8234754.jpg)
diff --git a/posts/2008/09/02/end-of-summer-5.md b/posts/2008/09/02/end-of-summer-5.md
deleted file mode 100644
index ddbfa2bd..00000000
--- a/posts/2008/09/02/end-of-summer-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20Summer/P8244763.jpg)
diff --git a/posts/2008/09/03/end-of-summer-6.md b/posts/2008/09/03/end-of-summer-6.md
deleted file mode 100644
index b8c5f640..00000000
--- a/posts/2008/09/03/end-of-summer-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20Summer/P8244771.jpg)
diff --git a/posts/2008/09/04/end-of-summer-7.md b/posts/2008/09/04/end-of-summer-7.md
deleted file mode 100644
index bf799338..00000000
--- a/posts/2008/09/04/end-of-summer-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20Summer/P8244780.jpg)
diff --git a/posts/2008/09/05/end-of-summer-8.md b/posts/2008/09/05/end-of-summer-8.md
deleted file mode 100644
index 44e22779..00000000
--- a/posts/2008/09/05/end-of-summer-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20Summer/P8244782.jpg)
diff --git a/posts/2008/09/06/next-1.md b/posts/2008/09/06/next-1.md
deleted file mode 100644
index f46cc001..00000000
--- a/posts/2008/09/06/next-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Next/P8254787.jpg)
diff --git a/posts/2008/09/07/next-2.md b/posts/2008/09/07/next-2.md
deleted file mode 100644
index 7de74d8f..00000000
--- a/posts/2008/09/07/next-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Next/P8254794.jpg)
diff --git a/posts/2008/09/08/next-3.md b/posts/2008/09/08/next-3.md
deleted file mode 100644
index c020b69e..00000000
--- a/posts/2008/09/08/next-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Next/P8284827.jpg)
diff --git a/posts/2008/09/09/next-4.md b/posts/2008/09/09/next-4.md
deleted file mode 100644
index 74df07e2..00000000
--- a/posts/2008/09/09/next-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Next/P8284832.jpg)
diff --git a/posts/2008/09/10/next-5.md b/posts/2008/09/10/next-5.md
deleted file mode 100644
index 3fdcc08c..00000000
--- a/posts/2008/09/10/next-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Next/P8284857.jpg)
diff --git a/posts/2008/09/10/summer-to-fall-1.md b/posts/2008/09/10/summer-to-fall-1.md
deleted file mode 100644
index beb54660..00000000
--- a/posts/2008/09/10/summer-to-fall-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20to%20Fall/P8314873.jpg)
diff --git a/posts/2008/09/11/summer-to-fall-2.md b/posts/2008/09/11/summer-to-fall-2.md
deleted file mode 100644
index 288a5b17..00000000
--- a/posts/2008/09/11/summer-to-fall-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20to%20Fall/P9074943.jpg)
diff --git a/posts/2008/09/12/summer-to-fall-3.md b/posts/2008/09/12/summer-to-fall-3.md
deleted file mode 100644
index 26af862e..00000000
--- a/posts/2008/09/12/summer-to-fall-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20to%20Fall/P9075012.jpg)
diff --git a/posts/2008/09/13/summer-to-fall-4.md b/posts/2008/09/13/summer-to-fall-4.md
deleted file mode 100644
index 363cceb4..00000000
--- a/posts/2008/09/13/summer-to-fall-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20to%20Fall/P9075016.jpg)
diff --git a/posts/2008/09/14/summer-to-fall-5.md b/posts/2008/09/14/summer-to-fall-5.md
deleted file mode 100644
index a1c5c77d..00000000
--- a/posts/2008/09/14/summer-to-fall-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20to%20Fall/P9075093.jpg)
diff --git a/posts/2008/09/15/summer-to-fall-6.md b/posts/2008/09/15/summer-to-fall-6.md
deleted file mode 100644
index b873660b..00000000
--- a/posts/2008/09/15/summer-to-fall-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20to%20Fall/P9075094.jpg)
diff --git a/posts/2008/09/16/summer-to-fall-7.md b/posts/2008/09/16/summer-to-fall-7.md
deleted file mode 100644
index b35422f0..00000000
--- a/posts/2008/09/16/summer-to-fall-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20to%20Fall/P9075097.jpg)
diff --git a/posts/2008/09/17/ike-1.md b/posts/2008/09/17/ike-1.md
deleted file mode 100644
index 9072f904..00000000
--- a/posts/2008/09/17/ike-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9125157.jpg)
diff --git a/posts/2008/09/18/ike-2.md b/posts/2008/09/18/ike-2.md
deleted file mode 100644
index 4d5ac10a..00000000
--- a/posts/2008/09/18/ike-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9125165.jpg)
diff --git a/posts/2008/09/19/ike-3.md b/posts/2008/09/19/ike-3.md
deleted file mode 100644
index fb6c098b..00000000
--- a/posts/2008/09/19/ike-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9155173.jpg)
diff --git a/posts/2008/09/20/ike-4.md b/posts/2008/09/20/ike-4.md
deleted file mode 100644
index c2c4a6e0..00000000
--- a/posts/2008/09/20/ike-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9155181.jpg)
diff --git a/posts/2008/09/21/ike-5.md b/posts/2008/09/21/ike-5.md
deleted file mode 100644
index d46389bc..00000000
--- a/posts/2008/09/21/ike-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9155194.jpg)
diff --git a/posts/2008/09/22/ike-6.md b/posts/2008/09/22/ike-6.md
deleted file mode 100644
index 043b5c9d..00000000
--- a/posts/2008/09/22/ike-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9155203.jpg)
diff --git a/posts/2008/09/23/ike-7.md b/posts/2008/09/23/ike-7.md
deleted file mode 100644
index e10e26a5..00000000
--- a/posts/2008/09/23/ike-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9155224.jpg)
diff --git a/posts/2008/09/24/ike-8.md b/posts/2008/09/24/ike-8.md
deleted file mode 100644
index 16b1c34c..00000000
--- a/posts/2008/09/24/ike-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165258.jpg)
diff --git a/posts/2008/09/25/ike-9.md b/posts/2008/09/25/ike-9.md
deleted file mode 100644
index 9678efe5..00000000
--- a/posts/2008/09/25/ike-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165260.jpg)
diff --git a/posts/2008/09/26/ike-10.md b/posts/2008/09/26/ike-10.md
deleted file mode 100644
index 0bc80122..00000000
--- a/posts/2008/09/26/ike-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165273.jpg)
diff --git a/posts/2008/09/27/ike-11.md b/posts/2008/09/27/ike-11.md
deleted file mode 100644
index 2abfa348..00000000
--- a/posts/2008/09/27/ike-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165274.jpg)
diff --git a/posts/2008/09/28/ike-12.md b/posts/2008/09/28/ike-12.md
deleted file mode 100644
index fab0ffd6..00000000
--- a/posts/2008/09/28/ike-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165276.jpg)
diff --git a/posts/2008/09/29/ike-13.md b/posts/2008/09/29/ike-13.md
deleted file mode 100644
index 83c58cbc..00000000
--- a/posts/2008/09/29/ike-13.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165280.jpg)
diff --git a/posts/2008/09/30/ike-14.md b/posts/2008/09/30/ike-14.md
deleted file mode 100644
index 1ab584cc..00000000
--- a/posts/2008/09/30/ike-14.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165317.jpg)
diff --git a/posts/2008/10/01/ike-15.md b/posts/2008/10/01/ike-15.md
deleted file mode 100644
index 42a9ba1b..00000000
--- a/posts/2008/10/01/ike-15.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165318.jpg)
diff --git a/posts/2008/10/02/ike-16.md b/posts/2008/10/02/ike-16.md
deleted file mode 100644
index 291b40cb..00000000
--- a/posts/2008/10/02/ike-16.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165321.jpg)
diff --git a/posts/2008/10/03/ike-17.md b/posts/2008/10/03/ike-17.md
deleted file mode 100644
index dcccd1bc..00000000
--- a/posts/2008/10/03/ike-17.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ike/P9165323.jpg)
diff --git a/posts/2008/10/04/return-to-downtown-1.md b/posts/2008/10/04/return-to-downtown-1.md
deleted file mode 100644
index 53bd3efd..00000000
--- a/posts/2008/10/04/return-to-downtown-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Return%20to%20Downtown/P9265687.jpg)
diff --git a/posts/2008/10/05/return-to-downtown-2.md b/posts/2008/10/05/return-to-downtown-2.md
deleted file mode 100644
index b816ae55..00000000
--- a/posts/2008/10/05/return-to-downtown-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Return%20to%20Downtown/P9265693.jpg)
diff --git a/posts/2008/10/06/return-to-downtown-3.md b/posts/2008/10/06/return-to-downtown-3.md
deleted file mode 100644
index 52d09c03..00000000
--- a/posts/2008/10/06/return-to-downtown-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Return%20to%20Downtown/P9265696.jpg)
diff --git a/posts/2008/10/07/return-to-downtown-4.md b/posts/2008/10/07/return-to-downtown-4.md
deleted file mode 100644
index 0661be18..00000000
--- a/posts/2008/10/07/return-to-downtown-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Return%20to%20Downtown/P9265701.jpg)
diff --git a/posts/2008/10/08/return-to-downtown-5.md b/posts/2008/10/08/return-to-downtown-5.md
deleted file mode 100644
index 0133d8fc..00000000
--- a/posts/2008/10/08/return-to-downtown-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Return%20to%20Downtown/P9265704.jpg)
diff --git a/posts/2008/10/09/hamman-ranch-fall-2008-1.md b/posts/2008/10/09/hamman-ranch-fall-2008-1.md
deleted file mode 100644
index f6569ac0..00000000
--- a/posts/2008/10/09/hamman-ranch-fall-2008-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056144.jpg)
diff --git a/posts/2008/10/10/hamman-ranch-fall-2008-2.md b/posts/2008/10/10/hamman-ranch-fall-2008-2.md
deleted file mode 100644
index 9ffd1257..00000000
--- a/posts/2008/10/10/hamman-ranch-fall-2008-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056171.jpg)
diff --git a/posts/2008/10/11/hamman-ranch-fall-2008-3.md b/posts/2008/10/11/hamman-ranch-fall-2008-3.md
deleted file mode 100644
index d20c0ce4..00000000
--- a/posts/2008/10/11/hamman-ranch-fall-2008-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056175.jpg)
diff --git a/posts/2008/10/12/hamman-ranch-fall-2008-4.md b/posts/2008/10/12/hamman-ranch-fall-2008-4.md
deleted file mode 100644
index 8fd6cb54..00000000
--- a/posts/2008/10/12/hamman-ranch-fall-2008-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056176.jpg)
diff --git a/posts/2008/10/13/hamman-ranch-fall-2008-5.md b/posts/2008/10/13/hamman-ranch-fall-2008-5.md
deleted file mode 100644
index 6868fb7f..00000000
--- a/posts/2008/10/13/hamman-ranch-fall-2008-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056181.jpg)
diff --git a/posts/2008/10/14/hamman-ranch-fall-2008-6.md b/posts/2008/10/14/hamman-ranch-fall-2008-6.md
deleted file mode 100644
index 11afbc3a..00000000
--- a/posts/2008/10/14/hamman-ranch-fall-2008-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056185.jpg)
diff --git a/posts/2008/10/15/hamman-ranch-fall-2008-7.md b/posts/2008/10/15/hamman-ranch-fall-2008-7.md
deleted file mode 100644
index a1d396f5..00000000
--- a/posts/2008/10/15/hamman-ranch-fall-2008-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056187.jpg)
diff --git a/posts/2008/10/16/brenham-texas-1.md b/posts/2008/10/16/brenham-texas-1.md
deleted file mode 100644
index c29f56b1..00000000
--- a/posts/2008/10/16/brenham-texas-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195452.jpg)
diff --git a/posts/2008/10/16/hamman-ranch-fall-2008-8.md b/posts/2008/10/16/hamman-ranch-fall-2008-8.md
deleted file mode 100644
index bba52550..00000000
--- a/posts/2008/10/16/hamman-ranch-fall-2008-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Hamman%20Ranch%20Fall%202008/PA056197.jpg)
diff --git a/posts/2008/10/17/brenham-texas-2.md b/posts/2008/10/17/brenham-texas-2.md
deleted file mode 100644
index 55bf8dce..00000000
--- a/posts/2008/10/17/brenham-texas-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195458.jpg)
diff --git a/posts/2008/10/18/brenham-texas-3.md b/posts/2008/10/18/brenham-texas-3.md
deleted file mode 100644
index e6621e6b..00000000
--- a/posts/2008/10/18/brenham-texas-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195477.jpg)
diff --git a/posts/2008/10/19/brenham-texas-4.md b/posts/2008/10/19/brenham-texas-4.md
deleted file mode 100644
index 18f3cd84..00000000
--- a/posts/2008/10/19/brenham-texas-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195501.jpg)
diff --git a/posts/2008/10/20/brenham-texas-5.md b/posts/2008/10/20/brenham-texas-5.md
deleted file mode 100644
index a95dc861..00000000
--- a/posts/2008/10/20/brenham-texas-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195537.jpg)
diff --git a/posts/2008/10/21/brenham-texas-6.md b/posts/2008/10/21/brenham-texas-6.md
deleted file mode 100644
index 020f47eb..00000000
--- a/posts/2008/10/21/brenham-texas-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195540.jpg)
diff --git a/posts/2008/10/22/brenham-texas-7.md b/posts/2008/10/22/brenham-texas-7.md
deleted file mode 100644
index 5e53981a..00000000
--- a/posts/2008/10/22/brenham-texas-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195566.jpg)
diff --git a/posts/2008/10/23/brenham-texas-8.md b/posts/2008/10/23/brenham-texas-8.md
deleted file mode 100644
index aa89244e..00000000
--- a/posts/2008/10/23/brenham-texas-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195574.jpg)
diff --git a/posts/2008/10/24/brenham-texas-9.md b/posts/2008/10/24/brenham-texas-9.md
deleted file mode 100644
index 09efd8b0..00000000
--- a/posts/2008/10/24/brenham-texas-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195578.jpg)
diff --git a/posts/2008/10/25/brenham-texas-10.md b/posts/2008/10/25/brenham-texas-10.md
deleted file mode 100644
index 636ba1bd..00000000
--- a/posts/2008/10/25/brenham-texas-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Brenham%20Texas/P9195613.jpg)
diff --git a/posts/2008/10/26/fall-photos-1.md b/posts/2008/10/26/fall-photos-1.md
deleted file mode 100644
index 2be22de6..00000000
--- a/posts/2008/10/26/fall-photos-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Photos/P9195560.jpg)
diff --git a/posts/2008/10/27/fall-photos-2.md b/posts/2008/10/27/fall-photos-2.md
deleted file mode 100644
index b5610777..00000000
--- a/posts/2008/10/27/fall-photos-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Photos/PA035846.jpg)
diff --git a/posts/2008/10/28/fall-photos-3.md b/posts/2008/10/28/fall-photos-3.md
deleted file mode 100644
index 3dd41c9a..00000000
--- a/posts/2008/10/28/fall-photos-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Photos/PA046123.jpg)
diff --git a/posts/2008/10/29/fall-photos-4.md b/posts/2008/10/29/fall-photos-4.md
deleted file mode 100644
index 2c567d87..00000000
--- a/posts/2008/10/29/fall-photos-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Photos/PA205450.jpg)
diff --git a/posts/2008/10/30/all-hallow-eve-1.md b/posts/2008/10/30/all-hallow-eve-1.md
deleted file mode 100644
index a5dc970b..00000000
--- a/posts/2008/10/30/all-hallow-eve-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/All%20Hallow%20Eve/PA216547.JPG)
diff --git a/posts/2008/10/31/all-hallow-eve-2.md b/posts/2008/10/31/all-hallow-eve-2.md
deleted file mode 100644
index 5709d8d7..00000000
--- a/posts/2008/10/31/all-hallow-eve-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/All%20Hallow%20Eve/PA266784.JPG)
diff --git a/posts/2008/11/01/a-study-in-black-and-white-1.md b/posts/2008/11/01/a-study-in-black-and-white-1.md
deleted file mode 100644
index e78803ce..00000000
--- a/posts/2008/11/01/a-study-in-black-and-white-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186465.JPG)
diff --git a/posts/2008/11/02/a-study-in-black-and-white-2.md b/posts/2008/11/02/a-study-in-black-and-white-2.md
deleted file mode 100644
index ec4f26ae..00000000
--- a/posts/2008/11/02/a-study-in-black-and-white-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186472.JPG)
diff --git a/posts/2008/11/03/a-study-in-black-and-white-3.md b/posts/2008/11/03/a-study-in-black-and-white-3.md
deleted file mode 100644
index 1c82e901..00000000
--- a/posts/2008/11/03/a-study-in-black-and-white-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186475.JPG)
diff --git a/posts/2008/11/04/a-study-in-black-and-white-4.md b/posts/2008/11/04/a-study-in-black-and-white-4.md
deleted file mode 100644
index 97f5e98e..00000000
--- a/posts/2008/11/04/a-study-in-black-and-white-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186484.JPG)
diff --git a/posts/2008/11/05/a-study-in-black-and-white-5.md b/posts/2008/11/05/a-study-in-black-and-white-5.md
deleted file mode 100644
index 869826fe..00000000
--- a/posts/2008/11/05/a-study-in-black-and-white-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186492.JPG)
diff --git a/posts/2008/11/06/a-study-in-black-and-white-6.md b/posts/2008/11/06/a-study-in-black-and-white-6.md
deleted file mode 100644
index 6fca6efd..00000000
--- a/posts/2008/11/06/a-study-in-black-and-white-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186510.JPG)
diff --git a/posts/2008/11/07/a-study-in-black-and-white-7.md b/posts/2008/11/07/a-study-in-black-and-white-7.md
deleted file mode 100644
index 0ced50f2..00000000
--- a/posts/2008/11/07/a-study-in-black-and-white-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Study%20In%20Black%20And%20White/PA186511.JPG)
diff --git a/posts/2008/11/07/backdrops-1.md b/posts/2008/11/07/backdrops-1.md
deleted file mode 100644
index 486dadff..00000000
--- a/posts/2008/11/07/backdrops-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/P9163817.jpg)
diff --git a/posts/2008/11/08/backdrops-2.md b/posts/2008/11/08/backdrops-2.md
deleted file mode 100644
index c5b33017..00000000
--- a/posts/2008/11/08/backdrops-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/P9195402.jpg)
diff --git a/posts/2008/11/09/backdrops-3.md b/posts/2008/11/09/backdrops-3.md
deleted file mode 100644
index 0659f9ba..00000000
--- a/posts/2008/11/09/backdrops-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/P9195447.jpg)
diff --git a/posts/2008/11/10/backdrops-4.md b/posts/2008/11/10/backdrops-4.md
deleted file mode 100644
index 5ff30f72..00000000
--- a/posts/2008/11/10/backdrops-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/P9195477.jpg)
diff --git a/posts/2008/11/11/backdrops-5.md b/posts/2008/11/11/backdrops-5.md
deleted file mode 100644
index ba6640c0..00000000
--- a/posts/2008/11/11/backdrops-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/P9195518.jpg)
diff --git a/posts/2008/11/12/backdrops-6.md b/posts/2008/11/12/backdrops-6.md
deleted file mode 100644
index b6b03086..00000000
--- a/posts/2008/11/12/backdrops-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/P9195537.jpg)
diff --git a/posts/2008/11/13/backdrops-7.md b/posts/2008/11/13/backdrops-7.md
deleted file mode 100644
index 0fd22652..00000000
--- a/posts/2008/11/13/backdrops-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/P9195560.jpg)
diff --git a/posts/2008/11/14/backdrops-8.md b/posts/2008/11/14/backdrops-8.md
deleted file mode 100644
index 9de55726..00000000
--- a/posts/2008/11/14/backdrops-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/P9195566.jpg)
diff --git a/posts/2008/11/15/backdrops-9.md b/posts/2008/11/15/backdrops-9.md
deleted file mode 100644
index 551b7719..00000000
--- a/posts/2008/11/15/backdrops-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA116318.jpg)
diff --git a/posts/2008/11/16/backdrops-10.md b/posts/2008/11/16/backdrops-10.md
deleted file mode 100644
index e461fe04..00000000
--- a/posts/2008/11/16/backdrops-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA116333.jpg)
diff --git a/posts/2008/11/17/backdrops-11.md b/posts/2008/11/17/backdrops-11.md
deleted file mode 100644
index 92f163d5..00000000
--- a/posts/2008/11/17/backdrops-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA116342.jpg)
diff --git a/posts/2008/11/18/backdrops-12.md b/posts/2008/11/18/backdrops-12.md
deleted file mode 100644
index 1a3842c0..00000000
--- a/posts/2008/11/18/backdrops-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA116361.jpg)
diff --git a/posts/2008/11/19/backdrops-13.md b/posts/2008/11/19/backdrops-13.md
deleted file mode 100644
index 9e3cc729..00000000
--- a/posts/2008/11/19/backdrops-13.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA116367.jpg)
diff --git a/posts/2008/11/20/backdrops-14.md b/posts/2008/11/20/backdrops-14.md
deleted file mode 100644
index 8f4c2e62..00000000
--- a/posts/2008/11/20/backdrops-14.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA216526.jpg)
diff --git a/posts/2008/11/21/backdrops-15.md b/posts/2008/11/21/backdrops-15.md
deleted file mode 100644
index 5e7c7896..00000000
--- a/posts/2008/11/21/backdrops-15.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA216546.jpg)
diff --git a/posts/2008/11/22/backdrops-16.md b/posts/2008/11/22/backdrops-16.md
deleted file mode 100644
index 751a8a30..00000000
--- a/posts/2008/11/22/backdrops-16.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA216551.jpg)
diff --git a/posts/2008/11/23/backdrops-17.md b/posts/2008/11/23/backdrops-17.md
deleted file mode 100644
index 2ef65c11..00000000
--- a/posts/2008/11/23/backdrops-17.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA216555.jpg)
diff --git a/posts/2008/11/24/backdrops-18.md b/posts/2008/11/24/backdrops-18.md
deleted file mode 100644
index e5d38db8..00000000
--- a/posts/2008/11/24/backdrops-18.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA216561.jpg)
diff --git a/posts/2008/11/25/backdrops-19.md b/posts/2008/11/25/backdrops-19.md
deleted file mode 100644
index bf7a218a..00000000
--- a/posts/2008/11/25/backdrops-19.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA216587.jpg)
diff --git a/posts/2008/11/26/backdrops-20.md b/posts/2008/11/26/backdrops-20.md
deleted file mode 100644
index 86f635cf..00000000
--- a/posts/2008/11/26/backdrops-20.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA216593.jpg)
diff --git a/posts/2008/11/27/backdrops-21.md b/posts/2008/11/27/backdrops-21.md
deleted file mode 100644
index 62ce564f..00000000
--- a/posts/2008/11/27/backdrops-21.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA216597.jpg)
diff --git a/posts/2008/11/28/backdrops-22.md b/posts/2008/11/28/backdrops-22.md
deleted file mode 100644
index a35adeba..00000000
--- a/posts/2008/11/28/backdrops-22.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backdrops/PA216601.jpg)
diff --git a/posts/2008/11/29/rose-1.md b/posts/2008/11/29/rose-1.md
deleted file mode 100644
index 916b9acd..00000000
--- a/posts/2008/11/29/rose-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rose/20081112125853.JPG)
diff --git a/posts/2008/11/30/rose-2.md b/posts/2008/11/30/rose-2.md
deleted file mode 100644
index 0fd5c267..00000000
--- a/posts/2008/11/30/rose-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rose/20081112125926.JPG)
diff --git a/posts/2008/12/01/rose-3.md b/posts/2008/12/01/rose-3.md
deleted file mode 100644
index dc077efd..00000000
--- a/posts/2008/12/01/rose-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rose/20081112125938.JPG)
diff --git a/posts/2008/12/02/rose-4.md b/posts/2008/12/02/rose-4.md
deleted file mode 100644
index 66822950..00000000
--- a/posts/2008/12/02/rose-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rose/20081112130140.JPG)
diff --git a/posts/2008/12/03/ninja-vs-devil-duck-1.md b/posts/2008/12/03/ninja-vs-devil-duck-1.md
deleted file mode 100644
index d0a60b3d..00000000
--- a/posts/2008/12/03/ninja-vs-devil-duck-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/20081121215621.JPG)
diff --git a/posts/2008/12/04/ninja-vs-devil-duck-2.md b/posts/2008/12/04/ninja-vs-devil-duck-2.md
deleted file mode 100644
index 7ba4f567..00000000
--- a/posts/2008/12/04/ninja-vs-devil-duck-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026892.JPG)
diff --git a/posts/2008/12/05/ninja-vs-devil-duck-3.md b/posts/2008/12/05/ninja-vs-devil-duck-3.md
deleted file mode 100644
index eb6c18d4..00000000
--- a/posts/2008/12/05/ninja-vs-devil-duck-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026893.JPG)
diff --git a/posts/2008/12/06/ninja-vs-devil-duck-4.md b/posts/2008/12/06/ninja-vs-devil-duck-4.md
deleted file mode 100644
index b42b771c..00000000
--- a/posts/2008/12/06/ninja-vs-devil-duck-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026894.JPG)
diff --git a/posts/2008/12/07/ninja-vs-devil-duck-5.md b/posts/2008/12/07/ninja-vs-devil-duck-5.md
deleted file mode 100644
index dc62a357..00000000
--- a/posts/2008/12/07/ninja-vs-devil-duck-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026895.JPG)
diff --git a/posts/2008/12/08/ninja-vs-devil-duck-6.md b/posts/2008/12/08/ninja-vs-devil-duck-6.md
deleted file mode 100644
index 3e4d5dfb..00000000
--- a/posts/2008/12/08/ninja-vs-devil-duck-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Ninja%20vs.%20Devil%20Duck/PB026899.JPG)
diff --git a/posts/2008/12/09/fall-around-here-1.md b/posts/2008/12/09/fall-around-here-1.md
deleted file mode 100644
index 4171863d..00000000
--- a/posts/2008/12/09/fall-around-here-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/20081115152534.JPG)
diff --git a/posts/2008/12/10/fall-around-here-2.md b/posts/2008/12/10/fall-around-here-2.md
deleted file mode 100644
index 35267c4a..00000000
--- a/posts/2008/12/10/fall-around-here-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/20081127154018.JPG)
diff --git a/posts/2008/12/11/fall-around-here-3.md b/posts/2008/12/11/fall-around-here-3.md
deleted file mode 100644
index 5ab89fb2..00000000
--- a/posts/2008/12/11/fall-around-here-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/20081128131253.JPG)
diff --git a/posts/2008/12/12/fall-around-here-4.md b/posts/2008/12/12/fall-around-here-4.md
deleted file mode 100644
index f65e633a..00000000
--- a/posts/2008/12/12/fall-around-here-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/20081128132238.JPG)
diff --git a/posts/2008/12/13/fall-around-here-5.md b/posts/2008/12/13/fall-around-here-5.md
deleted file mode 100644
index 30a13055..00000000
--- a/posts/2008/12/13/fall-around-here-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/20081128132335.030.JPG)
diff --git a/posts/2008/12/14/fall-around-here-6.md b/posts/2008/12/14/fall-around-here-6.md
deleted file mode 100644
index a230a619..00000000
--- a/posts/2008/12/14/fall-around-here-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/20081128134904.JPG)
diff --git a/posts/2008/12/15/fall-around-here-7.md b/posts/2008/12/15/fall-around-here-7.md
deleted file mode 100644
index 79333ac2..00000000
--- a/posts/2008/12/15/fall-around-here-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/20081128134908.JPG)
diff --git a/posts/2008/12/16/fall-around-here-8.md b/posts/2008/12/16/fall-around-here-8.md
deleted file mode 100644
index 5b14c188..00000000
--- a/posts/2008/12/16/fall-around-here-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/20081128140632.JPG)
diff --git a/posts/2008/12/17/fall-around-here-9.md b/posts/2008/12/17/fall-around-here-9.md
deleted file mode 100644
index 81b177a3..00000000
--- a/posts/2008/12/17/fall-around-here-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/20081128155143.JPG)
diff --git a/posts/2008/12/18/fall-around-here-10.md b/posts/2008/12/18/fall-around-here-10.md
deleted file mode 100644
index 22ee1126..00000000
--- a/posts/2008/12/18/fall-around-here-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Fall%20Around%20Here/a20081115082225.JPG)
diff --git a/posts/2008/12/18/signs-of-the-time-1.md b/posts/2008/12/18/signs-of-the-time-1.md
deleted file mode 100644
index 70c82315..00000000
--- a/posts/2008/12/18/signs-of-the-time-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Signs%20of%20the%20Time/Dec-19.jpg)
diff --git a/posts/2008/12/19/signs-of-the-time-2.md b/posts/2008/12/19/signs-of-the-time-2.md
deleted file mode 100644
index 892ebfd4..00000000
--- a/posts/2008/12/19/signs-of-the-time-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/12/20/signs-of-the-time-3.md b/posts/2008/12/20/signs-of-the-time-3.md
deleted file mode 100644
index 8e5930b6..00000000
--- a/posts/2008/12/20/signs-of-the-time-3.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/12/21/signs-of-the-time-4.md b/posts/2008/12/21/signs-of-the-time-4.md
deleted file mode 100644
index 76556d7e..00000000
--- a/posts/2008/12/21/signs-of-the-time-4.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/12/22/signs-of-the-time-5.md b/posts/2008/12/22/signs-of-the-time-5.md
deleted file mode 100644
index 0b71f297..00000000
--- a/posts/2008/12/22/signs-of-the-time-5.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/12/23/signs-of-the-time-6.md b/posts/2008/12/23/signs-of-the-time-6.md
deleted file mode 100644
index 62f6fd8b..00000000
--- a/posts/2008/12/23/signs-of-the-time-6.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/12/24/signs-of-the-time-7.md b/posts/2008/12/24/signs-of-the-time-7.md
deleted file mode 100644
index 82599ec8..00000000
--- a/posts/2008/12/24/signs-of-the-time-7.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/12/25/random-flowers-1.md b/posts/2008/12/25/random-flowers-1.md
deleted file mode 100644
index 90e5be2d..00000000
--- a/posts/2008/12/25/random-flowers-1.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/12/26/random-flowers-2.md b/posts/2008/12/26/random-flowers-2.md
deleted file mode 100644
index a680227d..00000000
--- a/posts/2008/12/26/random-flowers-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2008/12/27/year-end-1.md b/posts/2008/12/27/year-end-1.md
deleted file mode 100644
index 467899d9..00000000
--- a/posts/2008/12/27/year-end-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Year%20End/20081225105804.jpg)
diff --git a/posts/2008/12/28/year-end-2.md b/posts/2008/12/28/year-end-2.md
deleted file mode 100644
index c52e5668..00000000
--- a/posts/2008/12/28/year-end-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Year%20End/P3190926.jpg)
diff --git a/posts/2008/12/29/year-end-3.md b/posts/2008/12/29/year-end-3.md
deleted file mode 100644
index b25a8be7..00000000
--- a/posts/2008/12/29/year-end-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Year%20End/P3191074.jpg)
diff --git a/posts/2008/12/30/year-end-4.md b/posts/2008/12/30/year-end-4.md
deleted file mode 100644
index b06f7c1e..00000000
--- a/posts/2008/12/30/year-end-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Year%20End/P7143903.jpg)
diff --git a/posts/2008/12/31/year-end-5.md b/posts/2008/12/31/year-end-5.md
deleted file mode 100644
index 2be553c2..00000000
--- a/posts/2008/12/31/year-end-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Year%20End/P8134413.jpg)
diff --git a/posts/2009/01/01/year-end-6.md b/posts/2009/01/01/year-end-6.md
deleted file mode 100644
index 7a70627b..00000000
--- a/posts/2009/01/01/year-end-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Year%20End/P8319191.jpg)
diff --git a/posts/2009/01/02/year-end-7.md b/posts/2009/01/02/year-end-7.md
deleted file mode 100644
index bd1e9e08..00000000
--- a/posts/2009/01/02/year-end-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Year%20End/P9163796.jpg)
diff --git a/posts/2009/01/03/year-end-8.md b/posts/2009/01/03/year-end-8.md
deleted file mode 100644
index f1cba921..00000000
--- a/posts/2009/01/03/year-end-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Year%20End/PB016866.jpg)
diff --git a/posts/2009/01/04/last-day-of-2008-1.md b/posts/2009/01/04/last-day-of-2008-1.md
deleted file mode 100644
index 8f378a85..00000000
--- a/posts/2009/01/04/last-day-of-2008-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Last%20Day%20of%202008/19800101000000.008.jpg)
diff --git a/posts/2009/01/05/last-day-of-2008-2.md b/posts/2009/01/05/last-day-of-2008-2.md
deleted file mode 100644
index 3dcf1635..00000000
--- a/posts/2009/01/05/last-day-of-2008-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Last%20Day%20of%202008/19800101000000.025.jpg)
diff --git a/posts/2009/01/06/last-day-of-2008-3.md b/posts/2009/01/06/last-day-of-2008-3.md
deleted file mode 100644
index 2eb751a1..00000000
--- a/posts/2009/01/06/last-day-of-2008-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Last%20Day%20of%202008/20081231134804.jpg)
diff --git a/posts/2009/01/07/last-day-of-2008-4.md b/posts/2009/01/07/last-day-of-2008-4.md
deleted file mode 100644
index 0e93bd15..00000000
--- a/posts/2009/01/07/last-day-of-2008-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Last%20Day%20of%202008/20081231135447.jpg)
diff --git a/posts/2009/01/08/last-day-of-2008-5.md b/posts/2009/01/08/last-day-of-2008-5.md
deleted file mode 100644
index 577151b9..00000000
--- a/posts/2009/01/08/last-day-of-2008-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Last%20Day%20of%202008/20081231135755.jpg)
diff --git a/posts/2009/01/09/project-365-1.md b/posts/2009/01/09/project-365-1.md
deleted file mode 100644
index 05468b38..00000000
--- a/posts/2009/01/09/project-365-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Project%20365/2009.01.01.jpg)
diff --git a/posts/2009/01/10/project-365-2.md b/posts/2009/01/10/project-365-2.md
deleted file mode 100644
index 24530afa..00000000
--- a/posts/2009/01/10/project-365-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Project%20365/2009.01.02.jpg)
diff --git a/posts/2009/01/11/project-365-3.md b/posts/2009/01/11/project-365-3.md
deleted file mode 100644
index b1a72d0f..00000000
--- a/posts/2009/01/11/project-365-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Project%20365/2009.01.03.jpg)
diff --git a/posts/2009/01/12/project-365-4.md b/posts/2009/01/12/project-365-4.md
deleted file mode 100644
index ec1bb90e..00000000
--- a/posts/2009/01/12/project-365-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Project%20365/2009.01.05.jpg)
diff --git a/posts/2009/01/13/project-365-5.md b/posts/2009/01/13/project-365-5.md
deleted file mode 100644
index a4f372bb..00000000
--- a/posts/2009/01/13/project-365-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Project%20365/2009.01.06.jpg)
diff --git a/posts/2009/01/14/project-365-6.md b/posts/2009/01/14/project-365-6.md
deleted file mode 100644
index 429dc84f..00000000
--- a/posts/2009/01/14/project-365-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Project%20365/2009.01.07.5.jpg)
diff --git a/posts/2009/01/15/project-365-7.md b/posts/2009/01/15/project-365-7.md
deleted file mode 100644
index 1f375391..00000000
--- a/posts/2009/01/15/project-365-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Project%20365/2009.01.07.jpg)
diff --git a/posts/2009/01/15/street-pictures-in-black-and-white-1.md b/posts/2009/01/15/street-pictures-in-black-and-white-1.md
deleted file mode 100644
index 3a72a4ec..00000000
--- a/posts/2009/01/15/street-pictures-in-black-and-white-1.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2009/01/16/street-pictures-in-black-and-white-2.md b/posts/2009/01/16/street-pictures-in-black-and-white-2.md
deleted file mode 100644
index f3625bfc..00000000
--- a/posts/2009/01/16/street-pictures-in-black-and-white-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2009/01/17/street-pictures-in-black-and-white-3.md b/posts/2009/01/17/street-pictures-in-black-and-white-3.md
deleted file mode 100644
index be883ab6..00000000
--- a/posts/2009/01/17/street-pictures-in-black-and-white-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2009/01/18/street-pictures-in-black-and-white-4.md b/posts/2009/01/18/street-pictures-in-black-and-white-4.md
deleted file mode 100644
index 247b53dc..00000000
--- a/posts/2009/01/18/street-pictures-in-black-and-white-4.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2009/01/19/street-pictures-in-black-and-white-5.md b/posts/2009/01/19/street-pictures-in-black-and-white-5.md
deleted file mode 100644
index 442ac030..00000000
--- a/posts/2009/01/19/street-pictures-in-black-and-white-5.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2009/01/20/around-katy-1.md b/posts/2009/01/20/around-katy-1.md
deleted file mode 100644
index 0578751b..00000000
--- a/posts/2009/01/20/around-katy-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Around%20Katy/P1119104.jpg)
diff --git a/posts/2009/01/21/around-katy-2.md b/posts/2009/01/21/around-katy-2.md
deleted file mode 100644
index 1c8e82d9..00000000
--- a/posts/2009/01/21/around-katy-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Around%20Katy/P1119115.jpg)
diff --git a/posts/2009/01/22/around-katy-3.md b/posts/2009/01/22/around-katy-3.md
deleted file mode 100644
index ec42c2bf..00000000
--- a/posts/2009/01/22/around-katy-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Around%20Katy/P1119119.jpg)
diff --git a/posts/2009/01/23/around-katy-4.md b/posts/2009/01/23/around-katy-4.md
deleted file mode 100644
index a81e539c..00000000
--- a/posts/2009/01/23/around-katy-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Around%20Katy/P1119131.jpg)
diff --git a/posts/2009/01/24/around-katy-5.md b/posts/2009/01/24/around-katy-5.md
deleted file mode 100644
index 167be6bc..00000000
--- a/posts/2009/01/24/around-katy-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Around%20Katy/P1129197.jpg)
diff --git a/posts/2009/01/25/around-katy-6.md b/posts/2009/01/25/around-katy-6.md
deleted file mode 100644
index 1a0dab80..00000000
--- a/posts/2009/01/25/around-katy-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Around%20Katy/P1149222.jpg)
diff --git a/posts/2009/01/26/around-katy-7.md b/posts/2009/01/26/around-katy-7.md
deleted file mode 100644
index 0d3567d4..00000000
--- a/posts/2009/01/26/around-katy-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Around%20Katy/P1159231.jpg)
diff --git a/posts/2009/01/27/wabash-feed-store-1.md b/posts/2009/01/27/wabash-feed-store-1.md
deleted file mode 100644
index b3f3977d..00000000
--- a/posts/2009/01/27/wabash-feed-store-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Wabash%20Feed%20Store/P1199429.jpg)
diff --git a/posts/2009/01/28/wabash-feed-store-2.md b/posts/2009/01/28/wabash-feed-store-2.md
deleted file mode 100644
index 9f2674a9..00000000
--- a/posts/2009/01/28/wabash-feed-store-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Wabash%20Feed%20Store/P1199431.jpg)
diff --git a/posts/2009/01/29/wabash-feed-store-3.md b/posts/2009/01/29/wabash-feed-store-3.md
deleted file mode 100644
index a8190d55..00000000
--- a/posts/2009/01/29/wabash-feed-store-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Wabash%20Feed%20Store/P1199432.jpg)
diff --git a/posts/2009/01/30/wabash-feed-store-4.md b/posts/2009/01/30/wabash-feed-store-4.md
deleted file mode 100644
index d214d79a..00000000
--- a/posts/2009/01/30/wabash-feed-store-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Wabash%20Feed%20Store/P1199436.jpg)
diff --git a/posts/2009/01/31/wabash-feed-store-5.md b/posts/2009/01/31/wabash-feed-store-5.md
deleted file mode 100644
index 65d767e5..00000000
--- a/posts/2009/01/31/wabash-feed-store-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Wabash%20Feed%20Store/P1199445.jpg)
diff --git a/posts/2009/02/01/wabash-feed-store-6.md b/posts/2009/02/01/wabash-feed-store-6.md
deleted file mode 100644
index e69ff1db..00000000
--- a/posts/2009/02/01/wabash-feed-store-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Wabash%20Feed%20Store/P1199446.jpg)
diff --git a/posts/2009/02/02/one-day-in-houston-1.md b/posts/2009/02/02/one-day-in-houston-1.md
deleted file mode 100644
index f8c04d60..00000000
--- a/posts/2009/02/02/one-day-in-houston-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/One%20Day%20In%20Houston/P1229486.jpg)
diff --git a/posts/2009/02/03/one-day-in-houston-2.md b/posts/2009/02/03/one-day-in-houston-2.md
deleted file mode 100644
index 108548d8..00000000
--- a/posts/2009/02/03/one-day-in-houston-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/One%20Day%20In%20Houston/P1229492.jpg)
diff --git a/posts/2009/02/04/one-day-in-houston-3.md b/posts/2009/02/04/one-day-in-houston-3.md
deleted file mode 100644
index 63124003..00000000
--- a/posts/2009/02/04/one-day-in-houston-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/One%20Day%20In%20Houston/P1229493.jpg)
diff --git a/posts/2009/02/05/one-day-in-houston-4.md b/posts/2009/02/05/one-day-in-houston-4.md
deleted file mode 100644
index b5ac6f09..00000000
--- a/posts/2009/02/05/one-day-in-houston-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/One%20Day%20In%20Houston/P1229506.jpg)
diff --git a/posts/2009/02/06/one-day-in-houston-5.md b/posts/2009/02/06/one-day-in-houston-5.md
deleted file mode 100644
index 411db99e..00000000
--- a/posts/2009/02/06/one-day-in-houston-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/One%20Day%20In%20Houston/P1229511.jpg)
diff --git a/posts/2009/02/07/one-day-in-houston-6.md b/posts/2009/02/07/one-day-in-houston-6.md
deleted file mode 100644
index 58039fe4..00000000
--- a/posts/2009/02/07/one-day-in-houston-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/One%20Day%20In%20Houston/P1229520.jpg)
diff --git a/posts/2009/02/08/one-day-in-houston-7.md b/posts/2009/02/08/one-day-in-houston-7.md
deleted file mode 100644
index 36255030..00000000
--- a/posts/2009/02/08/one-day-in-houston-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/One%20Day%20In%20Houston/P1229523.jpg)
diff --git a/posts/2009/02/09/one-day-in-houston-8.md b/posts/2009/02/09/one-day-in-houston-8.md
deleted file mode 100644
index 0e204dee..00000000
--- a/posts/2009/02/09/one-day-in-houston-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/One%20Day%20In%20Houston/P1229524.jpg)
diff --git a/posts/2009/02/10/odds-and-ends-1.md b/posts/2009/02/10/odds-and-ends-1.md
deleted file mode 100644
index 7d3a16e1..00000000
--- a/posts/2009/02/10/odds-and-ends-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Odds%20and%20Ends/P1259647.ORF.jpg)
diff --git a/posts/2009/02/10/one-day-in-houston-9.md b/posts/2009/02/10/one-day-in-houston-9.md
deleted file mode 100644
index 57eff515..00000000
--- a/posts/2009/02/10/one-day-in-houston-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/One%20Day%20In%20Houston/P1229528.jpg)
diff --git a/posts/2009/02/11/odds-and-ends-2.md b/posts/2009/02/11/odds-and-ends-2.md
deleted file mode 100644
index 52dad12c..00000000
--- a/posts/2009/02/11/odds-and-ends-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Odds%20and%20Ends/P1259721.jpg)
diff --git a/posts/2009/02/12/odds-and-ends-3.md b/posts/2009/02/12/odds-and-ends-3.md
deleted file mode 100644
index 39515a85..00000000
--- a/posts/2009/02/12/odds-and-ends-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Odds%20and%20Ends/P1309775.jpg)
diff --git a/posts/2009/02/13/odds-and-ends-4.md b/posts/2009/02/13/odds-and-ends-4.md
deleted file mode 100644
index df6815cc..00000000
--- a/posts/2009/02/13/odds-and-ends-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Odds%20and%20Ends/P1309802.jpg)
diff --git a/posts/2009/02/14/odds-and-ends-5.md b/posts/2009/02/14/odds-and-ends-5.md
deleted file mode 100644
index 5bd6ab28..00000000
--- a/posts/2009/02/14/odds-and-ends-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Odds%20and%20Ends/P2030257.ORF.jpg)
diff --git a/posts/2009/02/15/odds-and-ends-6.md b/posts/2009/02/15/odds-and-ends-6.md
deleted file mode 100644
index f573dccc..00000000
--- a/posts/2009/02/15/odds-and-ends-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Odds%20and%20Ends/P2040325.jpg)
diff --git a/posts/2009/02/16/williams-tower-1.md b/posts/2009/02/16/williams-tower-1.md
deleted file mode 100644
index 4af3bda6..00000000
--- a/posts/2009/02/16/williams-tower-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Williams%20Tower/P2040288.jpg)
diff --git a/posts/2009/02/17/williams-tower-2.md b/posts/2009/02/17/williams-tower-2.md
deleted file mode 100644
index b5c98b9b..00000000
--- a/posts/2009/02/17/williams-tower-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Williams%20Tower/P2040300.jpg)
diff --git a/posts/2009/02/18/williams-tower-3.md b/posts/2009/02/18/williams-tower-3.md
deleted file mode 100644
index 0be8b1b9..00000000
--- a/posts/2009/02/18/williams-tower-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Williams%20Tower/P2040312.jpg)
diff --git a/posts/2009/02/19/williams-tower-4.md b/posts/2009/02/19/williams-tower-4.md
deleted file mode 100644
index e6f30add..00000000
--- a/posts/2009/02/19/williams-tower-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Williams%20Tower/P2040327.jpg)
diff --git a/posts/2009/02/20/2-10-2009-1.md b/posts/2009/02/20/2-10-2009-1.md
deleted file mode 100644
index 29d64625..00000000
--- a/posts/2009/02/20/2-10-2009-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2-10-2009/P2100655.jpg)
diff --git a/posts/2009/02/21/2-10-2009-2.md b/posts/2009/02/21/2-10-2009-2.md
deleted file mode 100644
index e596149e..00000000
--- a/posts/2009/02/21/2-10-2009-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2-10-2009/P2100657.jpg)
diff --git a/posts/2009/02/22/2-10-2009-3.md b/posts/2009/02/22/2-10-2009-3.md
deleted file mode 100644
index fc2f751d..00000000
--- a/posts/2009/02/22/2-10-2009-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2-10-2009/P2100658.jpg)
diff --git a/posts/2009/02/23/2-10-2009-4.md b/posts/2009/02/23/2-10-2009-4.md
deleted file mode 100644
index e93a5627..00000000
--- a/posts/2009/02/23/2-10-2009-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/2-10-2009/P2100662.jpg)
diff --git a/posts/2009/02/24/untitled-1.md b/posts/2009/02/24/untitled-1.md
deleted file mode 100644
index aa3ea9c8..00000000
--- a/posts/2009/02/24/untitled-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Untitled/P2070454.jpg)
diff --git a/posts/2009/02/25/untitled-2.md b/posts/2009/02/25/untitled-2.md
deleted file mode 100644
index db975fce..00000000
--- a/posts/2009/02/25/untitled-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Untitled/P2110666.jpg)
diff --git a/posts/2009/02/26/untitled-3.md b/posts/2009/02/26/untitled-3.md
deleted file mode 100644
index 8b32dce6..00000000
--- a/posts/2009/02/26/untitled-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Untitled/P2150803.jpg)
diff --git a/posts/2009/02/27/untitled-4.md b/posts/2009/02/27/untitled-4.md
deleted file mode 100644
index 6fc25922..00000000
--- a/posts/2009/02/27/untitled-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Untitled/P2160845.jpg)
diff --git a/posts/2009/02/28/untitled-5.md b/posts/2009/02/28/untitled-5.md
deleted file mode 100644
index babbc8c4..00000000
--- a/posts/2009/02/28/untitled-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Untitled/P2170861.jpg)
diff --git a/posts/2009/03/01/old-1.md b/posts/2009/03/01/old-1.md
deleted file mode 100644
index d5799397..00000000
--- a/posts/2009/03/01/old-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Old/P2070490.jpg)
diff --git a/posts/2009/03/01/untitled-6.md b/posts/2009/03/01/untitled-6.md
deleted file mode 100644
index 8c0364db..00000000
--- a/posts/2009/03/01/untitled-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Untitled/P2211039.jpg)
diff --git a/posts/2009/03/02/old-2.md b/posts/2009/03/02/old-2.md
deleted file mode 100644
index d4840afe..00000000
--- a/posts/2009/03/02/old-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Old/P2070492.jpg)
diff --git a/posts/2009/03/03/old-3.md b/posts/2009/03/03/old-3.md
deleted file mode 100644
index 2a769817..00000000
--- a/posts/2009/03/03/old-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Old/P2070493.jpg)
diff --git a/posts/2009/03/04/old-4.md b/posts/2009/03/04/old-4.md
deleted file mode 100644
index 7b1be251..00000000
--- a/posts/2009/03/04/old-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Old/P2221095.jpg)
diff --git a/posts/2009/03/05/old-5.md b/posts/2009/03/05/old-5.md
deleted file mode 100644
index 0024d9d4..00000000
--- a/posts/2009/03/05/old-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Old/P2221101.jpg)
diff --git a/posts/2009/03/06/old-6.md b/posts/2009/03/06/old-6.md
deleted file mode 100644
index e869609f..00000000
--- a/posts/2009/03/06/old-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Old/P2221102.jpg)
diff --git a/posts/2009/03/07/a-day-1.md b/posts/2009/03/07/a-day-1.md
deleted file mode 100644
index 35c4a815..00000000
--- a/posts/2009/03/07/a-day-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Day/img_0071.jpg)
diff --git a/posts/2009/03/08/a-day-2.md b/posts/2009/03/08/a-day-2.md
deleted file mode 100644
index 5f8a86a3..00000000
--- a/posts/2009/03/08/a-day-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Day/img_0072.jpg)
diff --git a/posts/2009/03/09/a-day-3.md b/posts/2009/03/09/a-day-3.md
deleted file mode 100644
index ab38abfb..00000000
--- a/posts/2009/03/09/a-day-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Day/img_0075.jpg)
diff --git a/posts/2009/03/10/a-day-4.md b/posts/2009/03/10/a-day-4.md
deleted file mode 100644
index 5f0d0a66..00000000
--- a/posts/2009/03/10/a-day-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Day/img_0078.jpg)
diff --git a/posts/2009/03/11/a-day-5.md b/posts/2009/03/11/a-day-5.md
deleted file mode 100644
index 1748545d..00000000
--- a/posts/2009/03/11/a-day-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Day/img_0081.jpg)
diff --git a/posts/2009/03/12/a-day-6.md b/posts/2009/03/12/a-day-6.md
deleted file mode 100644
index f41938d5..00000000
--- a/posts/2009/03/12/a-day-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Day/img_0083.jpg)
diff --git a/posts/2009/03/13/a-day-7.md b/posts/2009/03/13/a-day-7.md
deleted file mode 100644
index 6af5d402..00000000
--- a/posts/2009/03/13/a-day-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/A%20Day/img_0085.jpg)
diff --git a/posts/2009/03/14/butterfly-1.md b/posts/2009/03/14/butterfly-1.md
deleted file mode 100644
index 618eb5dd..00000000
--- a/posts/2009/03/14/butterfly-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Butterfly/img_0433.jpg)
diff --git a/posts/2009/03/15/butterfly-2.md b/posts/2009/03/15/butterfly-2.md
deleted file mode 100644
index 47298edc..00000000
--- a/posts/2009/03/15/butterfly-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Butterfly/img_04331.jpg)
diff --git a/posts/2009/03/16/butterfly-3.md b/posts/2009/03/16/butterfly-3.md
deleted file mode 100644
index 13c34e3e..00000000
--- a/posts/2009/03/16/butterfly-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Butterfly/img_0434.jpg)
diff --git a/posts/2009/03/17/butterfly-4.md b/posts/2009/03/17/butterfly-4.md
deleted file mode 100644
index 633f8012..00000000
--- a/posts/2009/03/17/butterfly-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Butterfly/img_0435.jpg)
diff --git a/posts/2009/03/18/butterfly-5.md b/posts/2009/03/18/butterfly-5.md
deleted file mode 100644
index 627f5b69..00000000
--- a/posts/2009/03/18/butterfly-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Butterfly/img_0436.jpg)
diff --git a/posts/2009/03/19/downtown-details-1.md b/posts/2009/03/19/downtown-details-1.md
deleted file mode 100644
index a020be6e..00000000
--- a/posts/2009/03/19/downtown-details-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Downtown%20Details/img_0506.jpg)
diff --git a/posts/2009/03/20/downtown-details-2.md b/posts/2009/03/20/downtown-details-2.md
deleted file mode 100644
index fab390ff..00000000
--- a/posts/2009/03/20/downtown-details-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Downtown%20Details/img_0509.jpg)
diff --git a/posts/2009/03/21/downtown-details-3.md b/posts/2009/03/21/downtown-details-3.md
deleted file mode 100644
index 12f1c0d6..00000000
--- a/posts/2009/03/21/downtown-details-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Downtown%20Details/img_0512.jpg)
diff --git a/posts/2009/03/22/downtown-details-4.md b/posts/2009/03/22/downtown-details-4.md
deleted file mode 100644
index fd5b5a88..00000000
--- a/posts/2009/03/22/downtown-details-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Downtown%20Details/img_0513.jpg)
diff --git a/posts/2009/03/23/downtown-details-5.md b/posts/2009/03/23/downtown-details-5.md
deleted file mode 100644
index f0e0528d..00000000
--- a/posts/2009/03/23/downtown-details-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Downtown%20Details/img_0515.jpg)
diff --git a/posts/2009/03/23/flowers-others-from-the-backyard-1.md b/posts/2009/03/23/flowers-others-from-the-backyard-1.md
deleted file mode 100644
index 8d902b39..00000000
--- a/posts/2009/03/23/flowers-others-from-the-backyard-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0899.jpg)
diff --git a/posts/2009/03/24/flowers-others-from-the-backyard-2.md b/posts/2009/03/24/flowers-others-from-the-backyard-2.md
deleted file mode 100644
index 4622fcc8..00000000
--- a/posts/2009/03/24/flowers-others-from-the-backyard-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0906.jpg)
diff --git a/posts/2009/03/25/flowers-others-from-the-backyard-3.md b/posts/2009/03/25/flowers-others-from-the-backyard-3.md
deleted file mode 100644
index 9f612357..00000000
--- a/posts/2009/03/25/flowers-others-from-the-backyard-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0911.jpg)
diff --git a/posts/2009/03/26/flowers-others-from-the-backyard-4.md b/posts/2009/03/26/flowers-others-from-the-backyard-4.md
deleted file mode 100644
index 54280e52..00000000
--- a/posts/2009/03/26/flowers-others-from-the-backyard-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0912.jpg)
diff --git a/posts/2009/03/27/flowers-others-from-the-backyard-5.md b/posts/2009/03/27/flowers-others-from-the-backyard-5.md
deleted file mode 100644
index 393abd5d..00000000
--- a/posts/2009/03/27/flowers-others-from-the-backyard-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flowers%20&%20Others%20From%20the%20Backyard/img_0917.jpg)
diff --git a/posts/2009/03/28/flatonia-tx-1.md b/posts/2009/03/28/flatonia-tx-1.md
deleted file mode 100644
index c02222b8..00000000
--- a/posts/2009/03/28/flatonia-tx-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flatonia,%20TX/First%20UMC,%20Flatonia,%20TX.jpg)
diff --git a/posts/2009/03/29/flatonia-tx-2.md b/posts/2009/03/29/flatonia-tx-2.md
deleted file mode 100644
index 370ee7d9..00000000
--- a/posts/2009/03/29/flatonia-tx-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flatonia,%20TX/Lyric%20Theater,%20Flatonia,%20TX.jpg)
diff --git a/posts/2009/03/30/flatonia-tx-3.md b/posts/2009/03/30/flatonia-tx-3.md
deleted file mode 100644
index fda86893..00000000
--- a/posts/2009/03/30/flatonia-tx-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flatonia,%20TX/South%20Main%20Store%20Fronts,%20Flatonia,%20TX.jpg)
diff --git a/posts/2009/03/31/backyard-1.md b/posts/2009/03/31/backyard-1.md
deleted file mode 100644
index 6f726504..00000000
--- a/posts/2009/03/31/backyard-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1714.jpg)
diff --git a/posts/2009/04/01/backyard-2.md b/posts/2009/04/01/backyard-2.md
deleted file mode 100644
index 7ceee4fa..00000000
--- a/posts/2009/04/01/backyard-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1728.jpg)
diff --git a/posts/2009/04/02/backyard-3.md b/posts/2009/04/02/backyard-3.md
deleted file mode 100644
index 1f9229d9..00000000
--- a/posts/2009/04/02/backyard-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1731.jpg)
diff --git a/posts/2009/04/03/backyard-4.md b/posts/2009/04/03/backyard-4.md
deleted file mode 100644
index 9767964a..00000000
--- a/posts/2009/04/03/backyard-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1740.jpg)
diff --git a/posts/2009/04/04/backyard-5.md b/posts/2009/04/04/backyard-5.md
deleted file mode 100644
index 4bc006c0..00000000
--- a/posts/2009/04/04/backyard-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1741.jpg)
diff --git a/posts/2009/04/05/backyard-6.md b/posts/2009/04/05/backyard-6.md
deleted file mode 100644
index e5d17a19..00000000
--- a/posts/2009/04/05/backyard-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1743.jpg)
diff --git a/posts/2009/04/06/backyard-7.md b/posts/2009/04/06/backyard-7.md
deleted file mode 100644
index d05071d1..00000000
--- a/posts/2009/04/06/backyard-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1750.jpg)
diff --git a/posts/2009/04/07/backyard-8.md b/posts/2009/04/07/backyard-8.md
deleted file mode 100644
index 0703d9c7..00000000
--- a/posts/2009/04/07/backyard-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1763.jpg)
diff --git a/posts/2009/04/08/backyard-9.md b/posts/2009/04/08/backyard-9.md
deleted file mode 100644
index 994acff2..00000000
--- a/posts/2009/04/08/backyard-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1765.jpg)
diff --git a/posts/2009/04/09/backyard-10.md b/posts/2009/04/09/backyard-10.md
deleted file mode 100644
index 8c92c072..00000000
--- a/posts/2009/04/09/backyard-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard/img_1766.jpg)
diff --git a/posts/2009/04/10/april-1.md b/posts/2009/04/10/april-1.md
deleted file mode 100644
index b144bb57..00000000
--- a/posts/2009/04/10/april-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2230.jpg)
diff --git a/posts/2009/04/11/april-2.md b/posts/2009/04/11/april-2.md
deleted file mode 100644
index be457f30..00000000
--- a/posts/2009/04/11/april-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2334.jpg)
diff --git a/posts/2009/04/12/april-3.md b/posts/2009/04/12/april-3.md
deleted file mode 100644
index 32e0444f..00000000
--- a/posts/2009/04/12/april-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2460.jpg)
diff --git a/posts/2009/04/13/april-4.md b/posts/2009/04/13/april-4.md
deleted file mode 100644
index 4b33095e..00000000
--- a/posts/2009/04/13/april-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2652.jpg)
diff --git a/posts/2009/04/14/april-5.md b/posts/2009/04/14/april-5.md
deleted file mode 100644
index 384b7415..00000000
--- a/posts/2009/04/14/april-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2658.jpg)
diff --git a/posts/2009/04/15/april-6.md b/posts/2009/04/15/april-6.md
deleted file mode 100644
index 2cf568d4..00000000
--- a/posts/2009/04/15/april-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2670.jpg)
diff --git a/posts/2009/04/16/april-7.md b/posts/2009/04/16/april-7.md
deleted file mode 100644
index 79485edb..00000000
--- a/posts/2009/04/16/april-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2681.jpg)
diff --git a/posts/2009/04/17/april-8.md b/posts/2009/04/17/april-8.md
deleted file mode 100644
index af1a61c2..00000000
--- a/posts/2009/04/17/april-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2693.jpg)
diff --git a/posts/2009/04/18/april-9.md b/posts/2009/04/18/april-9.md
deleted file mode 100644
index caed500a..00000000
--- a/posts/2009/04/18/april-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2699.jpg)
diff --git a/posts/2009/04/19/april-10.md b/posts/2009/04/19/april-10.md
deleted file mode 100644
index 08fe3c23..00000000
--- a/posts/2009/04/19/april-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/April/img_2715.jpg)
diff --git a/posts/2009/04/19/views-of-downtown-houston-1.md b/posts/2009/04/19/views-of-downtown-houston-1.md
deleted file mode 100644
index 195467fc..00000000
--- a/posts/2009/04/19/views-of-downtown-houston-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2670.jpg)
diff --git a/posts/2009/04/20/views-of-downtown-houston-2.md b/posts/2009/04/20/views-of-downtown-houston-2.md
deleted file mode 100644
index 8db35cbe..00000000
--- a/posts/2009/04/20/views-of-downtown-houston-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2672.jpg)
diff --git a/posts/2009/04/21/views-of-downtown-houston-3.md b/posts/2009/04/21/views-of-downtown-houston-3.md
deleted file mode 100644
index e5311195..00000000
--- a/posts/2009/04/21/views-of-downtown-houston-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2681.jpg)
diff --git a/posts/2009/04/22/views-of-downtown-houston-4.md b/posts/2009/04/22/views-of-downtown-houston-4.md
deleted file mode 100644
index bff6bf2a..00000000
--- a/posts/2009/04/22/views-of-downtown-houston-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2814.jpg)
diff --git a/posts/2009/04/23/views-of-downtown-houston-5.md b/posts/2009/04/23/views-of-downtown-houston-5.md
deleted file mode 100644
index 87a5fe6d..00000000
--- a/posts/2009/04/23/views-of-downtown-houston-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2919.jpg)
diff --git a/posts/2009/04/24/views-of-downtown-houston-6.md b/posts/2009/04/24/views-of-downtown-houston-6.md
deleted file mode 100644
index 7c2511d8..00000000
--- a/posts/2009/04/24/views-of-downtown-houston-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2924.jpg)
diff --git a/posts/2009/04/25/views-of-downtown-houston-7.md b/posts/2009/04/25/views-of-downtown-houston-7.md
deleted file mode 100644
index 673875ff..00000000
--- a/posts/2009/04/25/views-of-downtown-houston-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2925.jpg)
diff --git a/posts/2009/04/26/views-of-downtown-houston-8.md b/posts/2009/04/26/views-of-downtown-houston-8.md
deleted file mode 100644
index 3eaa4a42..00000000
--- a/posts/2009/04/26/views-of-downtown-houston-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2927.jpg)
diff --git a/posts/2009/04/27/views-of-downtown-houston-9.md b/posts/2009/04/27/views-of-downtown-houston-9.md
deleted file mode 100644
index 7e1b1636..00000000
--- a/posts/2009/04/27/views-of-downtown-houston-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2963.jpg)
diff --git a/posts/2009/04/28/views-of-downtown-houston-10.md b/posts/2009/04/28/views-of-downtown-houston-10.md
deleted file mode 100644
index 26d251cf..00000000
--- a/posts/2009/04/28/views-of-downtown-houston-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2964.jpg)
diff --git a/posts/2009/04/29/views-of-downtown-houston-11.md b/posts/2009/04/29/views-of-downtown-houston-11.md
deleted file mode 100644
index 5cb553cf..00000000
--- a/posts/2009/04/29/views-of-downtown-houston-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Views%20of%20Downtown%20Houston/img_2965.jpg)
diff --git a/posts/2009/04/30/rocky-river-ranch-2009-1.md b/posts/2009/04/30/rocky-river-ranch-2009-1.md
deleted file mode 100644
index 54a34f47..00000000
--- a/posts/2009/04/30/rocky-river-ranch-2009-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3296.jpg)
diff --git a/posts/2009/05/01/rocky-river-ranch-2009-2.md b/posts/2009/05/01/rocky-river-ranch-2009-2.md
deleted file mode 100644
index a6835957..00000000
--- a/posts/2009/05/01/rocky-river-ranch-2009-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3316.jpg)
diff --git a/posts/2009/05/02/rocky-river-ranch-2009-3.md b/posts/2009/05/02/rocky-river-ranch-2009-3.md
deleted file mode 100644
index 72252d24..00000000
--- a/posts/2009/05/02/rocky-river-ranch-2009-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3348.jpg)
diff --git a/posts/2009/05/03/rocky-river-ranch-2009-4.md b/posts/2009/05/03/rocky-river-ranch-2009-4.md
deleted file mode 100644
index 13579dcd..00000000
--- a/posts/2009/05/03/rocky-river-ranch-2009-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3444.jpg)
diff --git a/posts/2009/05/04/rocky-river-ranch-2009-5.md b/posts/2009/05/04/rocky-river-ranch-2009-5.md
deleted file mode 100644
index 9b72610e..00000000
--- a/posts/2009/05/04/rocky-river-ranch-2009-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3517.jpg)
diff --git a/posts/2009/05/05/rocky-river-ranch-2009-6.md b/posts/2009/05/05/rocky-river-ranch-2009-6.md
deleted file mode 100644
index 02d50b36..00000000
--- a/posts/2009/05/05/rocky-river-ranch-2009-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3525.jpg)
diff --git a/posts/2009/05/06/rocky-river-ranch-2009-7.md b/posts/2009/05/06/rocky-river-ranch-2009-7.md
deleted file mode 100644
index a0b94a98..00000000
--- a/posts/2009/05/06/rocky-river-ranch-2009-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3566.jpg)
diff --git a/posts/2009/05/07/rocky-river-ranch-2009-8.md b/posts/2009/05/07/rocky-river-ranch-2009-8.md
deleted file mode 100644
index 5817222e..00000000
--- a/posts/2009/05/07/rocky-river-ranch-2009-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3658.jpg)
diff --git a/posts/2009/05/08/rocky-river-ranch-2009-9.md b/posts/2009/05/08/rocky-river-ranch-2009-9.md
deleted file mode 100644
index 54bb6503..00000000
--- a/posts/2009/05/08/rocky-river-ranch-2009-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3807.jpg)
diff --git a/posts/2009/05/09/rocky-river-ranch-2009-10.md b/posts/2009/05/09/rocky-river-ranch-2009-10.md
deleted file mode 100644
index 01b9f5db..00000000
--- a/posts/2009/05/09/rocky-river-ranch-2009-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3830.jpg)
diff --git a/posts/2009/05/10/rocky-river-ranch-2009-11.md b/posts/2009/05/10/rocky-river-ranch-2009-11.md
deleted file mode 100644
index b40ade32..00000000
--- a/posts/2009/05/10/rocky-river-ranch-2009-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Rocky%20River%20Ranch%202009/img_3873.jpg)
diff --git a/posts/2009/05/11/road-side-wild-flowers-1.md b/posts/2009/05/11/road-side-wild-flowers-1.md
deleted file mode 100644
index 0a2f98c5..00000000
--- a/posts/2009/05/11/road-side-wild-flowers-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4033.jpg)
diff --git a/posts/2009/05/12/road-side-wild-flowers-2.md b/posts/2009/05/12/road-side-wild-flowers-2.md
deleted file mode 100644
index 03d88b0a..00000000
--- a/posts/2009/05/12/road-side-wild-flowers-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4041.jpg)
diff --git a/posts/2009/05/13/road-side-wild-flowers-3.md b/posts/2009/05/13/road-side-wild-flowers-3.md
deleted file mode 100644
index f9114eae..00000000
--- a/posts/2009/05/13/road-side-wild-flowers-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4050.jpg)
diff --git a/posts/2009/05/14/road-side-wild-flowers-4.md b/posts/2009/05/14/road-side-wild-flowers-4.md
deleted file mode 100644
index 6682e373..00000000
--- a/posts/2009/05/14/road-side-wild-flowers-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4051.jpg)
diff --git a/posts/2009/05/15/road-side-wild-flowers-5.md b/posts/2009/05/15/road-side-wild-flowers-5.md
deleted file mode 100644
index 8f4e501c..00000000
--- a/posts/2009/05/15/road-side-wild-flowers-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4055.jpg)
diff --git a/posts/2009/05/16/road-side-wild-flowers-6.md b/posts/2009/05/16/road-side-wild-flowers-6.md
deleted file mode 100644
index a1a05f7c..00000000
--- a/posts/2009/05/16/road-side-wild-flowers-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4058.jpg)
diff --git a/posts/2009/05/17/road-side-wild-flowers-7.md b/posts/2009/05/17/road-side-wild-flowers-7.md
deleted file mode 100644
index f15f4ccd..00000000
--- a/posts/2009/05/17/road-side-wild-flowers-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4060.jpg)
diff --git a/posts/2009/05/18/road-side-wild-flowers-8.md b/posts/2009/05/18/road-side-wild-flowers-8.md
deleted file mode 100644
index 95a494fd..00000000
--- a/posts/2009/05/18/road-side-wild-flowers-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4079.jpg)
diff --git a/posts/2009/05/19/road-side-wild-flowers-9.md b/posts/2009/05/19/road-side-wild-flowers-9.md
deleted file mode 100644
index e0261f03..00000000
--- a/posts/2009/05/19/road-side-wild-flowers-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4081.jpg)
diff --git a/posts/2009/05/20/road-side-wild-flowers-10.md b/posts/2009/05/20/road-side-wild-flowers-10.md
deleted file mode 100644
index ee5cfc37..00000000
--- a/posts/2009/05/20/road-side-wild-flowers-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4084.jpg)
diff --git a/posts/2009/05/21/road-side-wild-flowers-11.md b/posts/2009/05/21/road-side-wild-flowers-11.md
deleted file mode 100644
index dcb120f4..00000000
--- a/posts/2009/05/21/road-side-wild-flowers-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Road%20Side%20Wild%20Flowers/img_4091.jpg)
diff --git a/posts/2009/05/22/the-katy-1.md b/posts/2009/05/22/the-katy-1.md
deleted file mode 100644
index f8801b27..00000000
--- a/posts/2009/05/22/the-katy-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/The%20Katy/img_3999.jpg)
diff --git a/posts/2009/05/23/the-katy-2.md b/posts/2009/05/23/the-katy-2.md
deleted file mode 100644
index 735bc05d..00000000
--- a/posts/2009/05/23/the-katy-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/The%20Katy/img_4000.jpg)
diff --git a/posts/2009/05/24/the-katy-3.md b/posts/2009/05/24/the-katy-3.md
deleted file mode 100644
index ed82baf6..00000000
--- a/posts/2009/05/24/the-katy-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/The%20Katy/img_4006.jpg)
diff --git a/posts/2009/05/25/the-katy-4.md b/posts/2009/05/25/the-katy-4.md
deleted file mode 100644
index 97e5a8fb..00000000
--- a/posts/2009/05/25/the-katy-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/The%20Katy/img_4008.jpg)
diff --git a/posts/2009/05/26/the-katy-5.md b/posts/2009/05/26/the-katy-5.md
deleted file mode 100644
index afbc528c..00000000
--- a/posts/2009/05/26/the-katy-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/The%20Katy/img_4011.jpg)
diff --git a/posts/2009/05/27/the-katy-6.md b/posts/2009/05/27/the-katy-6.md
deleted file mode 100644
index 168d3367..00000000
--- a/posts/2009/05/27/the-katy-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/The%20Katy/img_4241.jpg)
diff --git a/posts/2009/05/28/images-of-may-1.md b/posts/2009/05/28/images-of-may-1.md
deleted file mode 100644
index 6441d9fb..00000000
--- a/posts/2009/05/28/images-of-may-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4355.jpg)
diff --git a/posts/2009/05/28/the-katy-7.md b/posts/2009/05/28/the-katy-7.md
deleted file mode 100644
index 1a2c37eb..00000000
--- a/posts/2009/05/28/the-katy-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/The%20Katy/img_4248.jpg)
diff --git a/posts/2009/05/29/images-of-may-2.md b/posts/2009/05/29/images-of-may-2.md
deleted file mode 100644
index 9b1085c9..00000000
--- a/posts/2009/05/29/images-of-may-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4510.jpg)
diff --git a/posts/2009/05/30/images-of-may-3.md b/posts/2009/05/30/images-of-may-3.md
deleted file mode 100644
index c93d1ebb..00000000
--- a/posts/2009/05/30/images-of-may-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4614.jpg)
diff --git a/posts/2009/05/31/images-of-may-4.md b/posts/2009/05/31/images-of-may-4.md
deleted file mode 100644
index 5f20c7d7..00000000
--- a/posts/2009/05/31/images-of-may-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4652.jpg)
diff --git a/posts/2009/06/01/images-of-may-5.md b/posts/2009/06/01/images-of-may-5.md
deleted file mode 100644
index 5a5fc47a..00000000
--- a/posts/2009/06/01/images-of-may-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4671.jpg)
diff --git a/posts/2009/06/02/images-of-may-6.md b/posts/2009/06/02/images-of-may-6.md
deleted file mode 100644
index bfcd86c3..00000000
--- a/posts/2009/06/02/images-of-may-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4710.jpg)
diff --git a/posts/2009/06/03/images-of-may-7.md b/posts/2009/06/03/images-of-may-7.md
deleted file mode 100644
index 5a36de33..00000000
--- a/posts/2009/06/03/images-of-may-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4766.jpg)
diff --git a/posts/2009/06/04/images-of-may-8.md b/posts/2009/06/04/images-of-may-8.md
deleted file mode 100644
index fd265205..00000000
--- a/posts/2009/06/04/images-of-may-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4808.jpg)
diff --git a/posts/2009/06/05/images-of-may-9.md b/posts/2009/06/05/images-of-may-9.md
deleted file mode 100644
index 539d4f74..00000000
--- a/posts/2009/06/05/images-of-may-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4810.jpg)
diff --git a/posts/2009/06/06/images-of-may-10.md b/posts/2009/06/06/images-of-may-10.md
deleted file mode 100644
index fa61ee47..00000000
--- a/posts/2009/06/06/images-of-may-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4987.jpg)
diff --git a/posts/2009/06/07/images-of-may-11.md b/posts/2009/06/07/images-of-may-11.md
deleted file mode 100644
index 5af63090..00000000
--- a/posts/2009/06/07/images-of-may-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/img_4988.jpg)
diff --git a/posts/2009/06/08/images-of-may-12.md b/posts/2009/06/08/images-of-may-12.md
deleted file mode 100644
index 59e36004..00000000
--- a/posts/2009/06/08/images-of-may-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Images%20of%20May/p5171310.jpg)
diff --git a/posts/2009/06/09/backyard-exploration-1.md b/posts/2009/06/09/backyard-exploration-1.md
deleted file mode 100644
index ed098aed..00000000
--- a/posts/2009/06/09/backyard-exploration-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backyard%20exploration/p5201358.jpg)
diff --git a/posts/2009/06/10/backyard-exploration-2.md b/posts/2009/06/10/backyard-exploration-2.md
deleted file mode 100644
index 1701025c..00000000
--- a/posts/2009/06/10/backyard-exploration-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backyard%20exploration/p5201364.jpg)
diff --git a/posts/2009/06/11/backyard-exploration-3.md b/posts/2009/06/11/backyard-exploration-3.md
deleted file mode 100644
index 9c9e855a..00000000
--- a/posts/2009/06/11/backyard-exploration-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/backyard%20exploration/p5201373.jpg)
diff --git a/posts/2009/06/12/first-week-of-june-1.md b/posts/2009/06/12/first-week-of-june-1.md
deleted file mode 100644
index 6bc60059..00000000
--- a/posts/2009/06/12/first-week-of-june-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/First%20Week%20of%20June/img_5745.jpg)
diff --git a/posts/2009/06/13/first-week-of-june-2.md b/posts/2009/06/13/first-week-of-june-2.md
deleted file mode 100644
index d78dfe66..00000000
--- a/posts/2009/06/13/first-week-of-june-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/First%20Week%20of%20June/img_5861.jpg)
diff --git a/posts/2009/06/14/first-week-of-june-3.md b/posts/2009/06/14/first-week-of-june-3.md
deleted file mode 100644
index 346bb6c6..00000000
--- a/posts/2009/06/14/first-week-of-june-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/First%20Week%20of%20June/img_5866.jpg)
diff --git a/posts/2009/06/15/first-week-of-june-4.md b/posts/2009/06/15/first-week-of-june-4.md
deleted file mode 100644
index 79c04933..00000000
--- a/posts/2009/06/15/first-week-of-june-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/First%20Week%20of%20June/img_5888.jpg)
diff --git a/posts/2009/06/16/first-week-of-june-5.md b/posts/2009/06/16/first-week-of-june-5.md
deleted file mode 100644
index 702f5162..00000000
--- a/posts/2009/06/16/first-week-of-june-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/First%20Week%20of%20June/img_5896.jpg)
diff --git a/posts/2009/06/17/first-week-of-june-6.md b/posts/2009/06/17/first-week-of-june-6.md
deleted file mode 100644
index 96d071fe..00000000
--- a/posts/2009/06/17/first-week-of-june-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/First%20Week%20of%20June/img_5920.jpg)
diff --git a/posts/2009/06/18/first-week-of-june-7.md b/posts/2009/06/18/first-week-of-june-7.md
deleted file mode 100644
index c8eae76b..00000000
--- a/posts/2009/06/18/first-week-of-june-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/First%20Week%20of%20June/img_5924.jpg)
diff --git a/posts/2009/06/19/first-week-of-june-8.md b/posts/2009/06/19/first-week-of-june-8.md
deleted file mode 100644
index 1ac2ec43..00000000
--- a/posts/2009/06/19/first-week-of-june-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/First%20Week%20of%20June/img_5962.jpg)
diff --git a/posts/2009/06/20/first-week-of-june-9.md b/posts/2009/06/20/first-week-of-june-9.md
deleted file mode 100644
index aed417d8..00000000
--- a/posts/2009/06/20/first-week-of-june-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/First%20Week%20of%20June/img_5975.jpg)
diff --git a/posts/2009/06/21/church-steeples-1.md b/posts/2009/06/21/church-steeples-1.md
deleted file mode 100644
index 3e85e81a..00000000
--- a/posts/2009/06/21/church-steeples-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Church%20Steeples/img_5140.jpg)
diff --git a/posts/2009/06/22/church-steeples-2.md b/posts/2009/06/22/church-steeples-2.md
deleted file mode 100644
index 84162059..00000000
--- a/posts/2009/06/22/church-steeples-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Church%20Steeples/img_5176.jpg)
diff --git a/posts/2009/06/23/church-steeples-3.md b/posts/2009/06/23/church-steeples-3.md
deleted file mode 100644
index 622c8fdd..00000000
--- a/posts/2009/06/23/church-steeples-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Church%20Steeples/img_5192.jpg)
diff --git a/posts/2009/06/24/church-steeples-4.md b/posts/2009/06/24/church-steeples-4.md
deleted file mode 100644
index 7dc51577..00000000
--- a/posts/2009/06/24/church-steeples-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Church%20Steeples/img_5271.jpg)
diff --git a/posts/2009/06/25/church-steeples-5.md b/posts/2009/06/25/church-steeples-5.md
deleted file mode 100644
index 7324eecb..00000000
--- a/posts/2009/06/25/church-steeples-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Church%20Steeples/img_5374.jpg)
diff --git a/posts/2009/06/26/church-steeples-6.md b/posts/2009/06/26/church-steeples-6.md
deleted file mode 100644
index 1a0a0f8f..00000000
--- a/posts/2009/06/26/church-steeples-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Church%20Steeples/img_5396.jpg)
diff --git a/posts/2009/06/26/stain-glass-1.md b/posts/2009/06/26/stain-glass-1.md
deleted file mode 100644
index 889b14be..00000000
--- a/posts/2009/06/26/stain-glass-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Stain%20Glass/img_5296.jpg)
diff --git a/posts/2009/06/27/stain-glass-2.md b/posts/2009/06/27/stain-glass-2.md
deleted file mode 100644
index e147f135..00000000
--- a/posts/2009/06/27/stain-glass-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Stain%20Glass/img_5297.jpg)
diff --git a/posts/2009/06/28/stain-glass-3.md b/posts/2009/06/28/stain-glass-3.md
deleted file mode 100644
index 18d1f570..00000000
--- a/posts/2009/06/28/stain-glass-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Stain%20Glass/img_5299.jpg)
diff --git a/posts/2009/06/29/stain-glass-4.md b/posts/2009/06/29/stain-glass-4.md
deleted file mode 100644
index 5194e53b..00000000
--- a/posts/2009/06/29/stain-glass-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Stain%20Glass/img_5364.jpg)
diff --git a/posts/2009/06/30/mid-summerodds-and-ends-1.md b/posts/2009/06/30/mid-summerodds-and-ends-1.md
deleted file mode 100644
index 2c234a6b..00000000
--- a/posts/2009/06/30/mid-summerodds-and-ends-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/01-eaglerock-burger-joint.jpg)
diff --git a/posts/2009/07/01/mid-summerodds-and-ends-2.md b/posts/2009/07/01/mid-summerodds-and-ends-2.md
deleted file mode 100644
index 2f48526c..00000000
--- a/posts/2009/07/01/mid-summerodds-and-ends-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/02-P7274029.jpg)
diff --git a/posts/2009/07/02/mid-summerodds-and-ends-3.md b/posts/2009/07/02/mid-summerodds-and-ends-3.md
deleted file mode 100644
index 6acfdd12..00000000
--- a/posts/2009/07/02/mid-summerodds-and-ends-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5142.jpg)
diff --git a/posts/2009/07/03/mid-summerodds-and-ends-4.md b/posts/2009/07/03/mid-summerodds-and-ends-4.md
deleted file mode 100644
index a3781042..00000000
--- a/posts/2009/07/03/mid-summerodds-and-ends-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5890.jpg)
diff --git a/posts/2009/07/04/mid-summerodds-and-ends-5.md b/posts/2009/07/04/mid-summerodds-and-ends-5.md
deleted file mode 100644
index 80cc0aa1..00000000
--- a/posts/2009/07/04/mid-summerodds-and-ends-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5961.jpg)
diff --git a/posts/2009/07/05/mid-summerodds-and-ends-6.md b/posts/2009/07/05/mid-summerodds-and-ends-6.md
deleted file mode 100644
index f5aadff8..00000000
--- a/posts/2009/07/05/mid-summerodds-and-ends-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5985.jpg)
diff --git a/posts/2009/07/06/mid-summerodds-and-ends-7.md b/posts/2009/07/06/mid-summerodds-and-ends-7.md
deleted file mode 100644
index 4db82469..00000000
--- a/posts/2009/07/06/mid-summerodds-and-ends-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5987.jpg)
diff --git a/posts/2009/07/07/mid-summerodds-and-ends-8.md b/posts/2009/07/07/mid-summerodds-and-ends-8.md
deleted file mode 100644
index d2703b03..00000000
--- a/posts/2009/07/07/mid-summerodds-and-ends-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5994.jpg)
diff --git a/posts/2009/07/08/mid-summerodds-and-ends-9.md b/posts/2009/07/08/mid-summerodds-and-ends-9.md
deleted file mode 100644
index ac1f5244..00000000
--- a/posts/2009/07/08/mid-summerodds-and-ends-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_5995.jpg)
diff --git a/posts/2009/07/09/mid-summerodds-and-ends-10.md b/posts/2009/07/09/mid-summerodds-and-ends-10.md
deleted file mode 100644
index 7e819244..00000000
--- a/posts/2009/07/09/mid-summerodds-and-ends-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_6017.jpg)
diff --git a/posts/2009/07/10/mid-summerodds-and-ends-11.md b/posts/2009/07/10/mid-summerodds-and-ends-11.md
deleted file mode 100644
index 32e3144b..00000000
--- a/posts/2009/07/10/mid-summerodds-and-ends-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/img_6191.jpg)
diff --git a/posts/2009/07/11/mid-summerodds-and-ends-12.md b/posts/2009/07/11/mid-summerodds-and-ends-12.md
deleted file mode 100644
index 97a5609c..00000000
--- a/posts/2009/07/11/mid-summerodds-and-ends-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6211477.jpg)
diff --git a/posts/2009/07/12/mid-summerodds-and-ends-13.md b/posts/2009/07/12/mid-summerodds-and-ends-13.md
deleted file mode 100644
index f40cda38..00000000
--- a/posts/2009/07/12/mid-summerodds-and-ends-13.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6211486.jpg)
diff --git a/posts/2009/07/13/mid-summerodds-and-ends-14.md b/posts/2009/07/13/mid-summerodds-and-ends-14.md
deleted file mode 100644
index 470261ac..00000000
--- a/posts/2009/07/13/mid-summerodds-and-ends-14.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6211498.jpg)
diff --git a/posts/2009/07/14/mid-summerodds-and-ends-15.md b/posts/2009/07/14/mid-summerodds-and-ends-15.md
deleted file mode 100644
index b4cf1e71..00000000
--- a/posts/2009/07/14/mid-summerodds-and-ends-15.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6261606.jpg)
diff --git a/posts/2009/07/15/mid-summerodds-and-ends-16.md b/posts/2009/07/15/mid-summerodds-and-ends-16.md
deleted file mode 100644
index 435a9c28..00000000
--- a/posts/2009/07/15/mid-summerodds-and-ends-16.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mid%20SummerOdds%20and%20Ends/p6261625.jpg)
diff --git a/posts/2009/07/16/more-stain-glass-1.md b/posts/2009/07/16/more-stain-glass-1.md
deleted file mode 100644
index 470ff649..00000000
--- a/posts/2009/07/16/more-stain-glass-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7051925.jpg)
diff --git a/posts/2009/07/17/more-stain-glass-2.md b/posts/2009/07/17/more-stain-glass-2.md
deleted file mode 100644
index c5103310..00000000
--- a/posts/2009/07/17/more-stain-glass-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7061972.jpg)
diff --git a/posts/2009/07/18/more-stain-glass-3.md b/posts/2009/07/18/more-stain-glass-3.md
deleted file mode 100644
index 0a9f6b3e..00000000
--- a/posts/2009/07/18/more-stain-glass-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7061973.jpg)
diff --git a/posts/2009/07/19/more-stain-glass-4.md b/posts/2009/07/19/more-stain-glass-4.md
deleted file mode 100644
index 42dbffd7..00000000
--- a/posts/2009/07/19/more-stain-glass-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7061974.jpg)
diff --git a/posts/2009/07/20/more-stain-glass-5.md b/posts/2009/07/20/more-stain-glass-5.md
deleted file mode 100644
index 6129adea..00000000
--- a/posts/2009/07/20/more-stain-glass-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7061975.jpg)
diff --git a/posts/2009/07/21/more-stain-glass-6.md b/posts/2009/07/21/more-stain-glass-6.md
deleted file mode 100644
index ca4b091e..00000000
--- a/posts/2009/07/21/more-stain-glass-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7061976.jpg)
diff --git a/posts/2009/07/22/more-stain-glass-7.md b/posts/2009/07/22/more-stain-glass-7.md
deleted file mode 100644
index f0ee6c65..00000000
--- a/posts/2009/07/22/more-stain-glass-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7061978.jpg)
diff --git a/posts/2009/07/23/more-stain-glass-8.md b/posts/2009/07/23/more-stain-glass-8.md
deleted file mode 100644
index ae424152..00000000
--- a/posts/2009/07/23/more-stain-glass-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7061979.jpg)
diff --git a/posts/2009/07/24/more-stain-glass-9.md b/posts/2009/07/24/more-stain-glass-9.md
deleted file mode 100644
index 93f25b5a..00000000
--- a/posts/2009/07/24/more-stain-glass-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7061980.jpg)
diff --git a/posts/2009/07/25/more-stain-glass-10.md b/posts/2009/07/25/more-stain-glass-10.md
deleted file mode 100644
index a1e95620..00000000
--- a/posts/2009/07/25/more-stain-glass-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7092397.jpg)
diff --git a/posts/2009/07/26/more-stain-glass-11.md b/posts/2009/07/26/more-stain-glass-11.md
deleted file mode 100644
index 220e8aca..00000000
--- a/posts/2009/07/26/more-stain-glass-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7092459.jpg)
diff --git a/posts/2009/07/27/more-stain-glass-12.md b/posts/2009/07/27/more-stain-glass-12.md
deleted file mode 100644
index 5a537bc7..00000000
--- a/posts/2009/07/27/more-stain-glass-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/More%20Stain%20Glass/p7102556.jpg)
diff --git a/posts/2009/07/28/neon-1.md b/posts/2009/07/28/neon-1.md
deleted file mode 100644
index f00f420f..00000000
--- a/posts/2009/07/28/neon-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Neon/p7183063.jpg)
diff --git a/posts/2009/07/29/neon-2.md b/posts/2009/07/29/neon-2.md
deleted file mode 100644
index 62ddd1a8..00000000
--- a/posts/2009/07/29/neon-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Neon/p7183066.jpg)
diff --git a/posts/2009/07/30/neon-3.md b/posts/2009/07/30/neon-3.md
deleted file mode 100644
index e7c63a00..00000000
--- a/posts/2009/07/30/neon-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Neon/p7183137.jpg)
diff --git a/posts/2009/07/31/neon-4.md b/posts/2009/07/31/neon-4.md
deleted file mode 100644
index d44872e7..00000000
--- a/posts/2009/07/31/neon-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Neon/p7183164.jpg)
diff --git a/posts/2009/08/01/neon-5.md b/posts/2009/08/01/neon-5.md
deleted file mode 100644
index 7d462377..00000000
--- a/posts/2009/08/01/neon-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Neon/p7183181.jpg)
diff --git a/posts/2009/08/01/post-rain-sunset-1.md b/posts/2009/08/01/post-rain-sunset-1.md
deleted file mode 100644
index fcade3b5..00000000
--- a/posts/2009/08/01/post-rain-sunset-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Post%20Rain%20Sunset/p7182877.jpg)
diff --git a/posts/2009/08/02/post-rain-sunset-2.md b/posts/2009/08/02/post-rain-sunset-2.md
deleted file mode 100644
index d4ba7d44..00000000
--- a/posts/2009/08/02/post-rain-sunset-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Post%20Rain%20Sunset/p7182888.jpg)
diff --git a/posts/2009/08/03/post-rain-sunset-3.md b/posts/2009/08/03/post-rain-sunset-3.md
deleted file mode 100644
index 60910e48..00000000
--- a/posts/2009/08/03/post-rain-sunset-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Post%20Rain%20Sunset/p7182925.jpg)
diff --git a/posts/2009/08/04/post-rain-sunset-4.md b/posts/2009/08/04/post-rain-sunset-4.md
deleted file mode 100644
index 85b3846d..00000000
--- a/posts/2009/08/04/post-rain-sunset-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Post%20Rain%20Sunset/p7182961.jpg)
diff --git a/posts/2009/08/05/july-2009-1.md b/posts/2009/08/05/july-2009-1.md
deleted file mode 100644
index 1ef1adb4..00000000
--- a/posts/2009/08/05/july-2009-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July%202009/p7021772.jpg)
diff --git a/posts/2009/08/06/july-2009-2.md b/posts/2009/08/06/july-2009-2.md
deleted file mode 100644
index 11f151ca..00000000
--- a/posts/2009/08/06/july-2009-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July%202009/p7041820.jpg)
diff --git a/posts/2009/08/07/july-2009-3.md b/posts/2009/08/07/july-2009-3.md
deleted file mode 100644
index c3cf5a84..00000000
--- a/posts/2009/08/07/july-2009-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July%202009/p7102557.jpg)
diff --git a/posts/2009/08/08/july-2009-4.md b/posts/2009/08/08/july-2009-4.md
deleted file mode 100644
index c1063405..00000000
--- a/posts/2009/08/08/july-2009-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July%202009/p7132764.jpg)
diff --git a/posts/2009/08/09/july-2009-5.md b/posts/2009/08/09/july-2009-5.md
deleted file mode 100644
index 32d0c3af..00000000
--- a/posts/2009/08/09/july-2009-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July%202009/p7182888.jpg)
diff --git a/posts/2009/08/10/july-2009-6.md b/posts/2009/08/10/july-2009-6.md
deleted file mode 100644
index 35fc243b..00000000
--- a/posts/2009/08/10/july-2009-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July%202009/p7183070.jpg)
diff --git a/posts/2009/08/11/july-2009-7.md b/posts/2009/08/11/july-2009-7.md
deleted file mode 100644
index dc58ac06..00000000
--- a/posts/2009/08/11/july-2009-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July%202009/p7273415.jpg)
diff --git a/posts/2009/08/12/july-2009-8.md b/posts/2009/08/12/july-2009-8.md
deleted file mode 100644
index 39f31d84..00000000
--- a/posts/2009/08/12/july-2009-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July%202009/p7293436.jpg)
diff --git a/posts/2009/08/13/july-2009-9.md b/posts/2009/08/13/july-2009-9.md
deleted file mode 100644
index eb8d9c9e..00000000
--- a/posts/2009/08/13/july-2009-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/July%202009/p7303448.jpg)
diff --git a/posts/2009/08/14/b-and-w-musings-1.md b/posts/2009/08/14/b-and-w-musings-1.md
deleted file mode 100644
index ff24116f..00000000
--- a/posts/2009/08/14/b-and-w-musings-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/B%20and%20W%20Musings/p8023503.jpg)
diff --git a/posts/2009/08/15/b-and-w-musings-2.md b/posts/2009/08/15/b-and-w-musings-2.md
deleted file mode 100644
index 02188d12..00000000
--- a/posts/2009/08/15/b-and-w-musings-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/B%20and%20W%20Musings/p8023504.jpg)
diff --git a/posts/2009/08/16/b-and-w-musings-3.md b/posts/2009/08/16/b-and-w-musings-3.md
deleted file mode 100644
index 64f61856..00000000
--- a/posts/2009/08/16/b-and-w-musings-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/B%20and%20W%20Musings/p8023561.jpg)
diff --git a/posts/2009/08/17/b-and-w-musings-4.md b/posts/2009/08/17/b-and-w-musings-4.md
deleted file mode 100644
index 0e865bf2..00000000
--- a/posts/2009/08/17/b-and-w-musings-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/B%20and%20W%20Musings/p8023613.jpg)
diff --git a/posts/2009/08/18/why-to-carry-a-camera-1.md b/posts/2009/08/18/why-to-carry-a-camera-1.md
deleted file mode 100644
index c819fceb..00000000
--- a/posts/2009/08/18/why-to-carry-a-camera-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083826.jpg)
diff --git a/posts/2009/08/19/why-to-carry-a-camera-2.md b/posts/2009/08/19/why-to-carry-a-camera-2.md
deleted file mode 100644
index ba106f80..00000000
--- a/posts/2009/08/19/why-to-carry-a-camera-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083838.jpg)
diff --git a/posts/2009/08/20/why-to-carry-a-camera-3.md b/posts/2009/08/20/why-to-carry-a-camera-3.md
deleted file mode 100644
index c51a6c6f..00000000
--- a/posts/2009/08/20/why-to-carry-a-camera-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083845.jpg)
diff --git a/posts/2009/08/21/why-to-carry-a-camera-4.md b/posts/2009/08/21/why-to-carry-a-camera-4.md
deleted file mode 100644
index 61fccdb5..00000000
--- a/posts/2009/08/21/why-to-carry-a-camera-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083975.jpg)
diff --git a/posts/2009/08/22/why-to-carry-a-camera-5.md b/posts/2009/08/22/why-to-carry-a-camera-5.md
deleted file mode 100644
index 97b69d34..00000000
--- a/posts/2009/08/22/why-to-carry-a-camera-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083976.jpg)
diff --git a/posts/2009/08/23/katy-summer-evening-1.md b/posts/2009/08/23/katy-summer-evening-1.md
deleted file mode 100644
index cea0d094..00000000
--- a/posts/2009/08/23/katy-summer-evening-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Katy%20Summer%20Evening/p8104276.jpg)
diff --git a/posts/2009/08/23/why-to-carry-a-camera-6.md b/posts/2009/08/23/why-to-carry-a-camera-6.md
deleted file mode 100644
index a1b7174b..00000000
--- a/posts/2009/08/23/why-to-carry-a-camera-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Why%20to%20Carry%20a%20Camera/p8083977.jpg)
diff --git a/posts/2009/08/24/katy-summer-evening-2.md b/posts/2009/08/24/katy-summer-evening-2.md
deleted file mode 100644
index 837fcfbc..00000000
--- a/posts/2009/08/24/katy-summer-evening-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Katy%20Summer%20Evening/p8104277.jpg)
diff --git a/posts/2009/08/25/katy-summer-evening-3.md b/posts/2009/08/25/katy-summer-evening-3.md
deleted file mode 100644
index eb863b2e..00000000
--- a/posts/2009/08/25/katy-summer-evening-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Katy%20Summer%20Evening/p8104280.jpg)
diff --git a/posts/2009/08/26/katy-summer-evening-4.md b/posts/2009/08/26/katy-summer-evening-4.md
deleted file mode 100644
index de8c9746..00000000
--- a/posts/2009/08/26/katy-summer-evening-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Katy%20Summer%20Evening/p8104283.jpg)
diff --git a/posts/2009/08/27/katy-summer-evening-5.md b/posts/2009/08/27/katy-summer-evening-5.md
deleted file mode 100644
index 917dd9c7..00000000
--- a/posts/2009/08/27/katy-summer-evening-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Katy%20Summer%20Evening/p8104289.jpg)
diff --git a/posts/2009/08/28/beach-birds-1.md b/posts/2009/08/28/beach-birds-1.md
deleted file mode 100644
index 81db49ea..00000000
--- a/posts/2009/08/28/beach-birds-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Beach%20Birds/p8144465.jpg)
diff --git a/posts/2009/08/29/beach-birds-2.md b/posts/2009/08/29/beach-birds-2.md
deleted file mode 100644
index 7e5f1e04..00000000
--- a/posts/2009/08/29/beach-birds-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Beach%20Birds/p8144519.jpg)
diff --git a/posts/2009/08/30/beach-birds-3.md b/posts/2009/08/30/beach-birds-3.md
deleted file mode 100644
index a355cda4..00000000
--- a/posts/2009/08/30/beach-birds-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Beach%20Birds/p8154752.jpg)
diff --git a/posts/2009/08/31/beach-birds-4.md b/posts/2009/08/31/beach-birds-4.md
deleted file mode 100644
index fbe9f6af..00000000
--- a/posts/2009/08/31/beach-birds-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Beach%20Birds/p8154778.jpg)
diff --git a/posts/2009/09/01/beach-birds-5.md b/posts/2009/09/01/beach-birds-5.md
deleted file mode 100644
index a976bb40..00000000
--- a/posts/2009/09/01/beach-birds-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Beach%20Birds/p8154827.jpg)
diff --git a/posts/2009/09/02/beach-birds-6.md b/posts/2009/09/02/beach-birds-6.md
deleted file mode 100644
index c35723a6..00000000
--- a/posts/2009/09/02/beach-birds-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Beach%20Birds/p8154833.jpg)
diff --git a/posts/2009/09/03/backyard-challenge-1.md b/posts/2009/09/03/backyard-challenge-1.md
deleted file mode 100644
index 93e756ae..00000000
--- a/posts/2009/09/03/backyard-challenge-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard%20Challenge/img_4107.jpg)
diff --git a/posts/2009/09/04/backyard-challenge-2.md b/posts/2009/09/04/backyard-challenge-2.md
deleted file mode 100644
index a76ef72d..00000000
--- a/posts/2009/09/04/backyard-challenge-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard%20Challenge/img_4125.jpg)
diff --git a/posts/2009/09/05/backyard-challenge-3.md b/posts/2009/09/05/backyard-challenge-3.md
deleted file mode 100644
index eb0a8b29..00000000
--- a/posts/2009/09/05/backyard-challenge-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard%20Challenge/img_4126.jpg)
diff --git a/posts/2009/09/06/backyard-challenge-4.md b/posts/2009/09/06/backyard-challenge-4.md
deleted file mode 100644
index 4c127a9f..00000000
--- a/posts/2009/09/06/backyard-challenge-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Backyard%20Challenge/img_4140.jpg)
diff --git a/posts/2009/09/07/backyard-challenge-5.md b/posts/2009/09/07/backyard-challenge-5.md
deleted file mode 100644
index 9e2675c9..00000000
--- a/posts/2009/09/07/backyard-challenge-5.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.ZenphotoPress_thumb}
diff --git a/posts/2009/09/08/dragonflies-1.md b/posts/2009/09/08/dragonflies-1.md
deleted file mode 100644
index 46904ba6..00000000
--- a/posts/2009/09/08/dragonflies-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Dragonflies/img_4018.jpg)
diff --git a/posts/2009/09/09/dragonflies-2.md b/posts/2009/09/09/dragonflies-2.md
deleted file mode 100644
index 5dfa5d8b..00000000
--- a/posts/2009/09/09/dragonflies-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Dragonflies/img_4035.jpg)
diff --git a/posts/2009/09/10/dragonflies-3.md b/posts/2009/09/10/dragonflies-3.md
deleted file mode 100644
index b67f90e3..00000000
--- a/posts/2009/09/10/dragonflies-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Dragonflies/img_4126.jpg)
diff --git a/posts/2009/09/11/dragonflies-4.md b/posts/2009/09/11/dragonflies-4.md
deleted file mode 100644
index d7ee0ab0..00000000
--- a/posts/2009/09/11/dragonflies-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Dragonflies/img_4247.jpg)
diff --git a/posts/2009/09/12/dragonflies-5.md b/posts/2009/09/12/dragonflies-5.md
deleted file mode 100644
index e165493e..00000000
--- a/posts/2009/09/12/dragonflies-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Dragonflies/img_4310.jpg)
diff --git a/posts/2009/09/12/summer-flowers-1.md b/posts/2009/09/12/summer-flowers-1.md
deleted file mode 100644
index 2c958ee6..00000000
--- a/posts/2009/09/12/summer-flowers-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20Flowers/img_4107.jpg)
diff --git a/posts/2009/09/13/summer-flowers-2.md b/posts/2009/09/13/summer-flowers-2.md
deleted file mode 100644
index bee7f049..00000000
--- a/posts/2009/09/13/summer-flowers-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20Flowers/img_4125.jpg)
diff --git a/posts/2009/09/14/summer-flowers-3.md b/posts/2009/09/14/summer-flowers-3.md
deleted file mode 100644
index 02094c15..00000000
--- a/posts/2009/09/14/summer-flowers-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20Flowers/p8033622.jpg)
diff --git a/posts/2009/09/15/summer-flowers-4.md b/posts/2009/09/15/summer-flowers-4.md
deleted file mode 100644
index 64ec285f..00000000
--- a/posts/2009/09/15/summer-flowers-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20Flowers/p8033625.jpg)
diff --git a/posts/2009/09/16/summer-flowers-5.md b/posts/2009/09/16/summer-flowers-5.md
deleted file mode 100644
index eee21ee9..00000000
--- a/posts/2009/09/16/summer-flowers-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Summer%20Flowers/p8033627.jpg)
diff --git a/posts/2009/09/17/flowers-1.md b/posts/2009/09/17/flowers-1.md
deleted file mode 100644
index c1526214..00000000
--- a/posts/2009/09/17/flowers-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flowers/img_4511.jpg)
diff --git a/posts/2009/09/18/flowers-2.md b/posts/2009/09/18/flowers-2.md
deleted file mode 100644
index c56672b6..00000000
--- a/posts/2009/09/18/flowers-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flowers/img_4529.jpg)
diff --git a/posts/2009/09/19/flowers-3.md b/posts/2009/09/19/flowers-3.md
deleted file mode 100644
index 8e40487a..00000000
--- a/posts/2009/09/19/flowers-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flowers/img_4531.jpg)
diff --git a/posts/2009/09/21/flowers-4-2.md b/posts/2009/09/21/flowers-4-2.md
deleted file mode 100644
index 8f7a71dc..00000000
--- a/posts/2009/09/21/flowers-4-2.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Flowers/img_4532.jpg)
-There was a glitch publishing this image...sorry to be late
diff --git a/posts/2009/09/21/mushrooms-1.md b/posts/2009/09/21/mushrooms-1.md
deleted file mode 100644
index a86e46d8..00000000
--- a/posts/2009/09/21/mushrooms-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mushrooms/img_4671.jpg)
diff --git a/posts/2009/09/22/mushrooms-2.md b/posts/2009/09/22/mushrooms-2.md
deleted file mode 100644
index c19e1798..00000000
--- a/posts/2009/09/22/mushrooms-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mushrooms/img_4675.jpg)
diff --git a/posts/2009/09/23/mushrooms-3.md b/posts/2009/09/23/mushrooms-3.md
deleted file mode 100644
index 24235350..00000000
--- a/posts/2009/09/23/mushrooms-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Mushrooms/img_4676.jpg)
diff --git a/posts/2009/09/24/pictures-of-summer-red-don-juan.md b/posts/2009/09/24/pictures-of-summer-red-don-juan.md
deleted file mode 100644
index c62e9819..00000000
--- a/posts/2009/09/24/pictures-of-summer-red-don-juan.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pictures%20of%20Summer/img_3654.jpg)
diff --git a/posts/2009/09/25/pictures-of-summer-rose.md b/posts/2009/09/25/pictures-of-summer-rose.md
deleted file mode 100644
index d1d30e45..00000000
--- a/posts/2009/09/25/pictures-of-summer-rose.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pictures%20of%20Summer/img_3656.jpg)
diff --git a/posts/2009/09/26/pictures-of-summer-busy-as-a-bee.md b/posts/2009/09/26/pictures-of-summer-busy-as-a-bee.md
deleted file mode 100644
index bf32a072..00000000
--- a/posts/2009/09/26/pictures-of-summer-busy-as-a-bee.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pictures%20of%20Summer/img_3703.jpg)
diff --git a/posts/2009/09/27/pictures-of-summer-a-new-day-dawns.md b/posts/2009/09/27/pictures-of-summer-a-new-day-dawns.md
deleted file mode 100644
index ccbc40a9..00000000
--- a/posts/2009/09/27/pictures-of-summer-a-new-day-dawns.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pictures%20of%20Summer/img_3769.jpg)
diff --git a/posts/2009/09/28/pictures-of-summer-roadside-color.md b/posts/2009/09/28/pictures-of-summer-roadside-color.md
deleted file mode 100644
index bdfcf680..00000000
--- a/posts/2009/09/28/pictures-of-summer-roadside-color.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pictures%20of%20Summer/p8114292.jpg)
diff --git a/posts/2009/09/29/pictures-of-summer-morning-fishing.md b/posts/2009/09/29/pictures-of-summer-morning-fishing.md
deleted file mode 100644
index 0a9dc81e..00000000
--- a/posts/2009/09/29/pictures-of-summer-morning-fishing.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pictures%20of%20Summer/p8154767.jpg)
diff --git a/posts/2009/09/30/pictures-of-summer-footprints-in-the-sand.md b/posts/2009/09/30/pictures-of-summer-footprints-in-the-sand.md
deleted file mode 100644
index 3a462f41..00000000
--- a/posts/2009/09/30/pictures-of-summer-footprints-in-the-sand.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pictures%20of%20Summer/p8154774.jpg)
diff --git a/posts/2009/10/01/pictures-of-summer-deck-chair.md b/posts/2009/10/01/pictures-of-summer-deck-chair.md
deleted file mode 100644
index e1283c20..00000000
--- a/posts/2009/10/01/pictures-of-summer-deck-chair.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pictures%20of%20Summer/p8154797.jpg)
diff --git a/posts/2009/10/02/october-1.md b/posts/2009/10/02/october-1.md
deleted file mode 100644
index 90ba3444..00000000
--- a/posts/2009/10/02/october-1.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/October%201/img_4858.jpg)
diff --git a/posts/2009/10/02/pictures-of-summer-sand-towers.md b/posts/2009/10/02/pictures-of-summer-sand-towers.md
deleted file mode 100644
index 85d30aab..00000000
--- a/posts/2009/10/02/pictures-of-summer-sand-towers.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Pictures%20of%20Summer/p8154850.jpg)
diff --git a/posts/2009/10/03/october-1-2.md b/posts/2009/10/03/october-1-2.md
deleted file mode 100644
index e54f0fed..00000000
--- a/posts/2009/10/03/october-1-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/October%201/img_4875.jpg)
diff --git a/posts/2009/10/04/october-1-3.md b/posts/2009/10/04/october-1-3.md
deleted file mode 100644
index 7e65c0bd..00000000
--- a/posts/2009/10/04/october-1-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/October%201/img_4880.jpg)
diff --git a/posts/2009/10/05/october-1-4.md b/posts/2009/10/05/october-1-4.md
deleted file mode 100644
index 1c6f9acc..00000000
--- a/posts/2009/10/05/october-1-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/October%201/img_4892.jpg)
diff --git a/posts/2009/10/06/october-1-5.md b/posts/2009/10/06/october-1-5.md
deleted file mode 100644
index 1da0f04d..00000000
--- a/posts/2009/10/06/october-1-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/October%201/img_4901.jpg)
diff --git a/posts/2009/10/07/black-and-yellow-flower.md b/posts/2009/10/07/black-and-yellow-flower.md
deleted file mode 100644
index 4563716e..00000000
--- a/posts/2009/10/07/black-and-yellow-flower.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Black%20and%20Yellow%20Flower/img_4736.jpg)
diff --git a/posts/2009/10/08/black-and-yellow-flower-2.md b/posts/2009/10/08/black-and-yellow-flower-2.md
deleted file mode 100644
index 2f1d2385..00000000
--- a/posts/2009/10/08/black-and-yellow-flower-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Black%20and%20Yellow%20Flower/img_4737.jpg)
diff --git a/posts/2009/10/09/black-and-yellow-flower-3.md b/posts/2009/10/09/black-and-yellow-flower-3.md
deleted file mode 100644
index 14bc4d5a..00000000
--- a/posts/2009/10/09/black-and-yellow-flower-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Black%20and%20Yellow%20Flower/img_4744.jpg)
diff --git a/posts/2009/10/10/trf-2009.md b/posts/2009/10/10/trf-2009.md
deleted file mode 100644
index d051cce6..00000000
--- a/posts/2009/10/10/trf-2009.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/TRF%20-%202009/pa105579.jpg)
diff --git a/posts/2009/10/11/trf-2009-2.md b/posts/2009/10/11/trf-2009-2.md
deleted file mode 100644
index 8232c65b..00000000
--- a/posts/2009/10/11/trf-2009-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/TRF%20-%202009/pa105580.jpg)
diff --git a/posts/2009/10/12/trf-2009-3.md b/posts/2009/10/12/trf-2009-3.md
deleted file mode 100644
index 51716ad2..00000000
--- a/posts/2009/10/12/trf-2009-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/TRF%20-%202009/pa105583.jpg)
diff --git a/posts/2009/10/13/trf-2009-4.md b/posts/2009/10/13/trf-2009-4.md
deleted file mode 100644
index a7bd6b98..00000000
--- a/posts/2009/10/13/trf-2009-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/TRF%20-%202009/pa105627.jpg)
diff --git a/posts/2009/10/14/trf-2009-5.md b/posts/2009/10/14/trf-2009-5.md
deleted file mode 100644
index bab2f9a6..00000000
--- a/posts/2009/10/14/trf-2009-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/TRF%20-%202009/pa105638.jpg)
diff --git a/posts/2009/10/15/trf-2009-6.md b/posts/2009/10/15/trf-2009-6.md
deleted file mode 100644
index 5e41e765..00000000
--- a/posts/2009/10/15/trf-2009-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/TRF%20-%202009/pa105661.jpg)
diff --git a/posts/2009/10/16/trf-2009-7.md b/posts/2009/10/16/trf-2009-7.md
deleted file mode 100644
index d940fc17..00000000
--- a/posts/2009/10/16/trf-2009-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/TRF%20-%202009/pa105770.jpg)
diff --git a/posts/2009/10/17/trf-2009-8.md b/posts/2009/10/17/trf-2009-8.md
deleted file mode 100644
index 5d8e6510..00000000
--- a/posts/2009/10/17/trf-2009-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/TRF%20-%202009/pa105772.jpg)
diff --git a/posts/2009/10/18/forbidden-gardens-lion-stands-gaurd.md b/posts/2009/10/18/forbidden-gardens-lion-stands-gaurd.md
deleted file mode 100644
index 31848faf..00000000
--- a/posts/2009/10/18/forbidden-gardens-lion-stands-gaurd.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/img_4954.jpg)
diff --git a/posts/2009/10/19/forbidden-gardens-dragon-on-lookout.md b/posts/2009/10/19/forbidden-gardens-dragon-on-lookout.md
deleted file mode 100644
index 6fa83b52..00000000
--- a/posts/2009/10/19/forbidden-gardens-dragon-on-lookout.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/img_4959.jpg)
diff --git a/posts/2009/10/20/forbidden-gardens-quiet-before-the-journey.md b/posts/2009/10/20/forbidden-gardens-quiet-before-the-journey.md
deleted file mode 100644
index b5898a15..00000000
--- a/posts/2009/10/20/forbidden-gardens-quiet-before-the-journey.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/img_5006.jpg)
diff --git a/posts/2009/10/21/forbidden-gardens-shattered-soul.md b/posts/2009/10/21/forbidden-gardens-shattered-soul.md
deleted file mode 100644
index cafb40a0..00000000
--- a/posts/2009/10/21/forbidden-gardens-shattered-soul.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/img_5044.jpg)
diff --git a/posts/2009/10/22/forbidden-gardens-monks-praying.md b/posts/2009/10/22/forbidden-gardens-monks-praying.md
deleted file mode 100644
index 166a55ee..00000000
--- a/posts/2009/10/22/forbidden-gardens-monks-praying.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/img_5208.jpg)
diff --git a/posts/2009/10/23/forbidden-gardens-ruins.md b/posts/2009/10/23/forbidden-gardens-ruins.md
deleted file mode 100644
index 682f6b22..00000000
--- a/posts/2009/10/23/forbidden-gardens-ruins.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/img_5222.jpg)
diff --git a/posts/2009/10/24/forbidden-gardens-gargoyle-water-spout.md b/posts/2009/10/24/forbidden-gardens-gargoyle-water-spout.md
deleted file mode 100644
index 1a1be872..00000000
--- a/posts/2009/10/24/forbidden-gardens-gargoyle-water-spout.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/pa055399.jpg)
diff --git a/posts/2009/10/25/forbidden-gardens-horse-forever-ready.md b/posts/2009/10/25/forbidden-gardens-horse-forever-ready.md
deleted file mode 100644
index d792469c..00000000
--- a/posts/2009/10/25/forbidden-gardens-horse-forever-ready.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/pa055413.jpg)
diff --git a/posts/2009/10/26/forbidden-gardens-army-stands-ready.md b/posts/2009/10/26/forbidden-gardens-army-stands-ready.md
deleted file mode 100644
index b1ea44d5..00000000
--- a/posts/2009/10/26/forbidden-gardens-army-stands-ready.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/pa055427.jpg)
diff --git a/posts/2009/10/27/forbidden-gardens-thoughtfull-soldier.md b/posts/2009/10/27/forbidden-gardens-thoughtfull-soldier.md
deleted file mode 100644
index 6334a558..00000000
--- a/posts/2009/10/27/forbidden-gardens-thoughtfull-soldier.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/pa055449.jpg)
diff --git a/posts/2009/10/28/end-of-october.md b/posts/2009/10/28/end-of-october.md
deleted file mode 100644
index fce4e54f..00000000
--- a/posts/2009/10/28/end-of-october.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/img_5267.jpg)
diff --git a/posts/2009/10/28/forbidden-gardens-fallen-in-court.md b/posts/2009/10/28/forbidden-gardens-fallen-in-court.md
deleted file mode 100644
index deb9f085..00000000
--- a/posts/2009/10/28/forbidden-gardens-fallen-in-court.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Forbidden%20Gardens/pa055527.jpg)
diff --git a/posts/2009/10/29/end-of-october-2.md b/posts/2009/10/29/end-of-october-2.md
deleted file mode 100644
index e9c4dc7b..00000000
--- a/posts/2009/10/29/end-of-october-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/img_5286.jpg)
diff --git a/posts/2009/10/30/end-of-october-3.md b/posts/2009/10/30/end-of-october-3.md
deleted file mode 100644
index a25359ba..00000000
--- a/posts/2009/10/30/end-of-october-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/img_5287.jpg)
diff --git a/posts/2009/10/31/end-of-october-4.md b/posts/2009/10/31/end-of-october-4.md
deleted file mode 100644
index e7855eb6..00000000
--- a/posts/2009/10/31/end-of-october-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/img_5294.jpg)
diff --git a/posts/2009/11/01/end-of-october-5.md b/posts/2009/11/01/end-of-october-5.md
deleted file mode 100644
index 799bc1ab..00000000
--- a/posts/2009/11/01/end-of-october-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/img_5357.jpg)
diff --git a/posts/2009/11/02/end-of-october-6.md b/posts/2009/11/02/end-of-october-6.md
deleted file mode 100644
index 20ba177a..00000000
--- a/posts/2009/11/02/end-of-october-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/img_5407.jpg)
diff --git a/posts/2009/11/03/end-of-october-7.md b/posts/2009/11/03/end-of-october-7.md
deleted file mode 100644
index 56d79913..00000000
--- a/posts/2009/11/03/end-of-october-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/img_5430.jpg)
diff --git a/posts/2009/11/04/end-of-october-8.md b/posts/2009/11/04/end-of-october-8.md
deleted file mode 100644
index 9b2b1c8e..00000000
--- a/posts/2009/11/04/end-of-october-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/img_5670.jpg)
diff --git a/posts/2009/11/05/end-of-october-9.md b/posts/2009/11/05/end-of-october-9.md
deleted file mode 100644
index b741dc61..00000000
--- a/posts/2009/11/05/end-of-october-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/pa115811.jpg)
diff --git a/posts/2009/11/06/end-of-october-10.md b/posts/2009/11/06/end-of-october-10.md
deleted file mode 100644
index 3add45e9..00000000
--- a/posts/2009/11/06/end-of-october-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/pa176009.jpg)
diff --git a/posts/2009/11/07/end-of-october-11.md b/posts/2009/11/07/end-of-october-11.md
deleted file mode 100644
index faf16228..00000000
--- a/posts/2009/11/07/end-of-october-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/pa226172.jpg)
diff --git a/posts/2009/11/08/end-of-october-12.md b/posts/2009/11/08/end-of-october-12.md
deleted file mode 100644
index e06355bb..00000000
--- a/posts/2009/11/08/end-of-october-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20October/pa276229.jpg)
diff --git a/posts/2009/11/09/random-in-november.md b/posts/2009/11/09/random-in-november.md
deleted file mode 100644
index 2d127adb..00000000
--- a/posts/2009/11/09/random-in-november.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/PIC-0136.jpg)
diff --git a/posts/2009/11/10/random-in-november-2.md b/posts/2009/11/10/random-in-november-2.md
deleted file mode 100644
index 6c6fa616..00000000
--- a/posts/2009/11/10/random-in-november-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5001.jpg)
diff --git a/posts/2009/11/11/random-in-november-3.md b/posts/2009/11/11/random-in-november-3.md
deleted file mode 100644
index 40b8c30c..00000000
--- a/posts/2009/11/11/random-in-november-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5245.jpg)
diff --git a/posts/2009/11/12/random-in-november-4.md b/posts/2009/11/12/random-in-november-4.md
deleted file mode 100644
index a1dc2cbb..00000000
--- a/posts/2009/11/12/random-in-november-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5247.jpg)
diff --git a/posts/2009/11/13/random-in-november-5.md b/posts/2009/11/13/random-in-november-5.md
deleted file mode 100644
index 9b06a708..00000000
--- a/posts/2009/11/13/random-in-november-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5267.jpg)
diff --git a/posts/2009/11/14/random-in-november-6.md b/posts/2009/11/14/random-in-november-6.md
deleted file mode 100644
index 3c15779c..00000000
--- a/posts/2009/11/14/random-in-november-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5287.jpg)
diff --git a/posts/2009/11/15/random-in-november-7.md b/posts/2009/11/15/random-in-november-7.md
deleted file mode 100644
index 8ea5a558..00000000
--- a/posts/2009/11/15/random-in-november-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5294.jpg)
diff --git a/posts/2009/11/16/random-in-november-8.md b/posts/2009/11/16/random-in-november-8.md
deleted file mode 100644
index d1bfae42..00000000
--- a/posts/2009/11/16/random-in-november-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5670.jpg)
diff --git a/posts/2009/11/17/random-in-november-9.md b/posts/2009/11/17/random-in-november-9.md
deleted file mode 100644
index f599d982..00000000
--- a/posts/2009/11/17/random-in-november-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5673.jpg)
diff --git a/posts/2009/11/18/random-in-november-10.md b/posts/2009/11/18/random-in-november-10.md
deleted file mode 100644
index 4242ad02..00000000
--- a/posts/2009/11/18/random-in-november-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5697-processes.jpg)
diff --git a/posts/2009/11/19/random-in-november-11.md b/posts/2009/11/19/random-in-november-11.md
deleted file mode 100644
index 4a8c82a7..00000000
--- a/posts/2009/11/19/random-in-november-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5803.jpg)
diff --git a/posts/2009/11/20/random-in-november-12.md b/posts/2009/11/20/random-in-november-12.md
deleted file mode 100644
index 2472c19d..00000000
--- a/posts/2009/11/20/random-in-november-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5825.jpg)
diff --git a/posts/2009/11/21/random-in-november-13.md b/posts/2009/11/21/random-in-november-13.md
deleted file mode 100644
index 2f96de40..00000000
--- a/posts/2009/11/21/random-in-november-13.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5881.jpg)
diff --git a/posts/2009/11/22/random-in-november-14.md b/posts/2009/11/22/random-in-november-14.md
deleted file mode 100644
index 6c42a1cf..00000000
--- a/posts/2009/11/22/random-in-november-14.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/img_5883.jpg)
diff --git a/posts/2009/11/23/random-in-november-15.md b/posts/2009/11/23/random-in-november-15.md
deleted file mode 100644
index d94f536b..00000000
--- a/posts/2009/11/23/random-in-november-15.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/pa135833.jpg)
diff --git a/posts/2009/11/24/random-in-november-16.md b/posts/2009/11/24/random-in-november-16.md
deleted file mode 100644
index beeacea0..00000000
--- a/posts/2009/11/24/random-in-november-16.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/pa176009.jpg)
diff --git a/posts/2009/11/25/random-in-november-17.md b/posts/2009/11/25/random-in-november-17.md
deleted file mode 100644
index aaec3f25..00000000
--- a/posts/2009/11/25/random-in-november-17.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/pa226180.jpg)
diff --git a/posts/2009/11/26/random-in-november-18.md b/posts/2009/11/26/random-in-november-18.md
deleted file mode 100644
index 94e9d7d2..00000000
--- a/posts/2009/11/26/random-in-november-18.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Random%20in%20November/pa266209.jpg)
diff --git a/posts/2009/11/27/time-warp-2007.md b/posts/2009/11/27/time-warp-2007.md
deleted file mode 100644
index 57b4003c..00000000
--- a/posts/2009/11/27/time-warp-2007.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Time%20Warp%20-%202007/P3020312.JPG)
diff --git a/posts/2009/11/28/time-warp-2007-2.md b/posts/2009/11/28/time-warp-2007-2.md
deleted file mode 100644
index a7be19fa..00000000
--- a/posts/2009/11/28/time-warp-2007-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Time%20Warp%20-%202007/P3020324.JPG)
diff --git a/posts/2009/11/29/time-warp-2007-3.md b/posts/2009/11/29/time-warp-2007-3.md
deleted file mode 100644
index 079c86eb..00000000
--- a/posts/2009/11/29/time-warp-2007-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Time%20Warp%20-%202007/P3230687.jpg)
diff --git a/posts/2009/11/30/time-warp-2007-4.md b/posts/2009/11/30/time-warp-2007-4.md
deleted file mode 100644
index 5f038c4e..00000000
--- a/posts/2009/11/30/time-warp-2007-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Time%20Warp%20-%202007/P4050996.jpg)
diff --git a/posts/2009/12/01/time-warp-2007-5.md b/posts/2009/12/01/time-warp-2007-5.md
deleted file mode 100644
index d4803ea1..00000000
--- a/posts/2009/12/01/time-warp-2007-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Time%20Warp%20-%202007/P8193358.jpg)
diff --git a/posts/2009/12/02/time-warp-2007-6.md b/posts/2009/12/02/time-warp-2007-6.md
deleted file mode 100644
index 3badbeea..00000000
--- a/posts/2009/12/02/time-warp-2007-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Time%20Warp%20-%202007/P8213403.jpg)
diff --git a/posts/2009/12/03/time-warp-2007-7.md b/posts/2009/12/03/time-warp-2007-7.md
deleted file mode 100644
index 9818b2a7..00000000
--- a/posts/2009/12/03/time-warp-2007-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Time%20Warp%20-%202007/p8313472.jpg)
diff --git a/posts/2009/12/04/end-of-november.md b/posts/2009/12/04/end-of-november.md
deleted file mode 100644
index 39f5defe..00000000
--- a/posts/2009/12/04/end-of-november.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20November/img_6143.jpg)
diff --git a/posts/2009/12/05/end-of-november-2.md b/posts/2009/12/05/end-of-november-2.md
deleted file mode 100644
index a10bd56d..00000000
--- a/posts/2009/12/05/end-of-november-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20November/pb266733.jpg)
diff --git a/posts/2009/12/06/end-of-november-3.md b/posts/2009/12/06/end-of-november-3.md
deleted file mode 100644
index 46b497aa..00000000
--- a/posts/2009/12/06/end-of-november-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20November/pb266739.jpg)
diff --git a/posts/2009/12/07/end-of-november-4.md b/posts/2009/12/07/end-of-november-4.md
deleted file mode 100644
index d3ebb23e..00000000
--- a/posts/2009/12/07/end-of-november-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20November/pb266740.jpg)
diff --git a/posts/2009/12/08/end-of-november-5.md b/posts/2009/12/08/end-of-november-5.md
deleted file mode 100644
index 928fb3c8..00000000
--- a/posts/2009/12/08/end-of-november-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20November/pb266742.jpg)
diff --git a/posts/2009/12/09/end-of-november-6.md b/posts/2009/12/09/end-of-november-6.md
deleted file mode 100644
index d4400a0e..00000000
--- a/posts/2009/12/09/end-of-november-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20November/pb266797.jpg)
diff --git a/posts/2009/12/10/end-of-november-7.md b/posts/2009/12/10/end-of-november-7.md
deleted file mode 100644
index b7d0cf5f..00000000
--- a/posts/2009/12/10/end-of-november-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20November/pb266835.jpg)
diff --git a/posts/2009/12/11/end-of-november-8.md b/posts/2009/12/11/end-of-november-8.md
deleted file mode 100644
index 708fca1f..00000000
--- a/posts/2009/12/11/end-of-november-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20November/pb286902.jpg)
diff --git a/posts/2009/12/12/end-of-november-9.md b/posts/2009/12/12/end-of-november-9.md
deleted file mode 100644
index 9bbdc756..00000000
--- a/posts/2009/12/12/end-of-november-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20November/pb286939.jpg)
diff --git a/posts/2009/12/13/end-of-november-10.md b/posts/2009/12/13/end-of-november-10.md
deleted file mode 100644
index 8b0c4eab..00000000
--- a/posts/2009/12/13/end-of-november-10.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-width="1340" height="1229"}
diff --git a/posts/2009/12/13/end-of-the-year.md b/posts/2009/12/13/end-of-the-year.md
deleted file mode 100644
index e4f07a4a..00000000
--- a/posts/2009/12/13/end-of-the-year.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/img_5294-2.jpg)
diff --git a/posts/2009/12/14/end-of-the-year-2.md b/posts/2009/12/14/end-of-the-year-2.md
deleted file mode 100644
index 80387cce..00000000
--- a/posts/2009/12/14/end-of-the-year-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/img_5881-1.jpg)
diff --git a/posts/2009/12/15/end-of-the-year-3.md b/posts/2009/12/15/end-of-the-year-3.md
deleted file mode 100644
index 5d7facb2..00000000
--- a/posts/2009/12/15/end-of-the-year-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/img_5984-1.jpg)
diff --git a/posts/2009/12/16/end-of-the-year-4.md b/posts/2009/12/16/end-of-the-year-4.md
deleted file mode 100644
index b5fc48ea..00000000
--- a/posts/2009/12/16/end-of-the-year-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/img_6110-1.jpg)
diff --git a/posts/2009/12/17/end-of-the-year-5.md b/posts/2009/12/17/end-of-the-year-5.md
deleted file mode 100644
index efc45770..00000000
--- a/posts/2009/12/17/end-of-the-year-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/img_6143-1.jpg)
diff --git a/posts/2009/12/18/end-of-the-year-6.md b/posts/2009/12/18/end-of-the-year-6.md
deleted file mode 100644
index d52c8a15..00000000
--- a/posts/2009/12/18/end-of-the-year-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/img_6169-1.jpg)
diff --git a/posts/2009/12/19/end-of-the-year-7.md b/posts/2009/12/19/end-of-the-year-7.md
deleted file mode 100644
index bc36aa51..00000000
--- a/posts/2009/12/19/end-of-the-year-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/img_6182-1.jpg)
diff --git a/posts/2009/12/20/end-of-the-year-8.md b/posts/2009/12/20/end-of-the-year-8.md
deleted file mode 100644
index 18a051ba..00000000
--- a/posts/2009/12/20/end-of-the-year-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/img_6244-1.jpg)
diff --git a/posts/2009/12/21/end-of-the-year-9.md b/posts/2009/12/21/end-of-the-year-9.md
deleted file mode 100644
index 0fff9565..00000000
--- a/posts/2009/12/21/end-of-the-year-9.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pb096314.jpg)
diff --git a/posts/2009/12/22/end-of-the-year-10.md b/posts/2009/12/22/end-of-the-year-10.md
deleted file mode 100644
index b0a1052c..00000000
--- a/posts/2009/12/22/end-of-the-year-10.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pb176612-1.jpg)
diff --git a/posts/2009/12/23/end-of-the-year-11.md b/posts/2009/12/23/end-of-the-year-11.md
deleted file mode 100644
index b74e221c..00000000
--- a/posts/2009/12/23/end-of-the-year-11.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pb236674-1.jpg)
diff --git a/posts/2009/12/24/end-of-the-year-12.md b/posts/2009/12/24/end-of-the-year-12.md
deleted file mode 100644
index 9f8f9342..00000000
--- a/posts/2009/12/24/end-of-the-year-12.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pb286939-1.jpg)
diff --git a/posts/2009/12/25/end-of-the-year-13.md b/posts/2009/12/25/end-of-the-year-13.md
deleted file mode 100644
index f0fe400a..00000000
--- a/posts/2009/12/25/end-of-the-year-13.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pc036996-1.jpg)
diff --git a/posts/2009/12/26/end-of-the-year-14.md b/posts/2009/12/26/end-of-the-year-14.md
deleted file mode 100644
index 15ca4e6b..00000000
--- a/posts/2009/12/26/end-of-the-year-14.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pc047042-1.jpg)
diff --git a/posts/2009/12/27/end-of-the-year-15.md b/posts/2009/12/27/end-of-the-year-15.md
deleted file mode 100644
index 00f8d769..00000000
--- a/posts/2009/12/27/end-of-the-year-15.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pc047052-1.jpg)
diff --git a/posts/2009/12/28/end-of-the-year-16.md b/posts/2009/12/28/end-of-the-year-16.md
deleted file mode 100644
index cf9284a2..00000000
--- a/posts/2009/12/28/end-of-the-year-16.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pc087058-4.jpg)
diff --git a/posts/2009/12/29/end-of-the-year-17.md b/posts/2009/12/29/end-of-the-year-17.md
deleted file mode 100644
index f7b0c361..00000000
--- a/posts/2009/12/29/end-of-the-year-17.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pc107081-1.jpg)
diff --git a/posts/2009/12/30/end-of-the-year-18.md b/posts/2009/12/30/end-of-the-year-18.md
deleted file mode 100644
index 44b5ae48..00000000
--- a/posts/2009/12/30/end-of-the-year-18.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/End%20of%20The%20Year/pc107087-1.jpg)
diff --git a/posts/2009/12/31/retrospective.md b/posts/2009/12/31/retrospective.md
deleted file mode 100644
index ef38c6ee..00000000
--- a/posts/2009/12/31/retrospective.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/01/retrospective-2.md b/posts/2010/01/01/retrospective-2.md
deleted file mode 100644
index 9f25afa7..00000000
--- a/posts/2010/01/01/retrospective-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/02/retrospective-3.md b/posts/2010/01/02/retrospective-3.md
deleted file mode 100644
index a0ca6a49..00000000
--- a/posts/2010/01/02/retrospective-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/03/retrospective-4.md b/posts/2010/01/03/retrospective-4.md
deleted file mode 100644
index 06bc2100..00000000
--- a/posts/2010/01/03/retrospective-4.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/04/retrospective-5.md b/posts/2010/01/04/retrospective-5.md
deleted file mode 100644
index 6ae2f90e..00000000
--- a/posts/2010/01/04/retrospective-5.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/05/retrospective-6.md b/posts/2010/01/05/retrospective-6.md
deleted file mode 100644
index e840c7d4..00000000
--- a/posts/2010/01/05/retrospective-6.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/06/retrospective-7.md b/posts/2010/01/06/retrospective-7.md
deleted file mode 100644
index 7a14766a..00000000
--- a/posts/2010/01/06/retrospective-7.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/07/retrospective-8.md b/posts/2010/01/07/retrospective-8.md
deleted file mode 100644
index c6671de2..00000000
--- a/posts/2010/01/07/retrospective-8.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/08/retrospective-9.md b/posts/2010/01/08/retrospective-9.md
deleted file mode 100644
index 9c2f046e..00000000
--- a/posts/2010/01/08/retrospective-9.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/09/retrospective-10.md b/posts/2010/01/09/retrospective-10.md
deleted file mode 100644
index af6f889f..00000000
--- a/posts/2010/01/09/retrospective-10.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/10/retrospective-11.md b/posts/2010/01/10/retrospective-11.md
deleted file mode 100644
index 7cd8bdfd..00000000
--- a/posts/2010/01/10/retrospective-11.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/11/retrospective-12.md b/posts/2010/01/11/retrospective-12.md
deleted file mode 100644
index 2292c247..00000000
--- a/posts/2010/01/11/retrospective-12.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/01/12/monochrome-start.md b/posts/2010/01/12/monochrome-start.md
deleted file mode 100644
index 4cfeff7a..00000000
--- a/posts/2010/01/12/monochrome-start.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20Start/img_6986-1.jpg)
diff --git a/posts/2010/01/13/monochrome-start-2.md b/posts/2010/01/13/monochrome-start-2.md
deleted file mode 100644
index 2a950fa7..00000000
--- a/posts/2010/01/13/monochrome-start-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20Start/img_6991-1.jpg)
diff --git a/posts/2010/01/14/monochrome-start-3.md b/posts/2010/01/14/monochrome-start-3.md
deleted file mode 100644
index 7e09d0fb..00000000
--- a/posts/2010/01/14/monochrome-start-3.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20Start/img_6995-1.jpg)
diff --git a/posts/2010/01/15/monochrome-start-4.md b/posts/2010/01/15/monochrome-start-4.md
deleted file mode 100644
index 106a7903..00000000
--- a/posts/2010/01/15/monochrome-start-4.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20Start/img_7005.jpg)
diff --git a/posts/2010/01/16/monochrome-start-5.md b/posts/2010/01/16/monochrome-start-5.md
deleted file mode 100644
index 7f9056da..00000000
--- a/posts/2010/01/16/monochrome-start-5.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20Start/img_7011-1.jpg)
diff --git a/posts/2010/01/17/monochrome-start-6.md b/posts/2010/01/17/monochrome-start-6.md
deleted file mode 100644
index b13193cb..00000000
--- a/posts/2010/01/17/monochrome-start-6.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20Start/img_7017-1.jpg)
diff --git a/posts/2010/01/18/monochrome-start-7.md b/posts/2010/01/18/monochrome-start-7.md
deleted file mode 100644
index 43b7158a..00000000
--- a/posts/2010/01/18/monochrome-start-7.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20Start/img_7020-1.jpg)
diff --git a/posts/2010/01/19/monochrome-start-8.md b/posts/2010/01/19/monochrome-start-8.md
deleted file mode 100644
index 50e473db..00000000
--- a/posts/2010/01/19/monochrome-start-8.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20Start/img_7024-1.jpg)
diff --git a/posts/2010/01/20/monochrome-january-garden-fairy.md b/posts/2010/01/20/monochrome-january-garden-fairy.md
deleted file mode 100644
index fd67be9b..00000000
--- a/posts/2010/01/20/monochrome-january-garden-fairy.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20January/img_7035-1.jpg)
diff --git a/posts/2010/01/21/monochrome-january-lamp-at-starbucks.md b/posts/2010/01/21/monochrome-january-lamp-at-starbucks.md
deleted file mode 100644
index 1720a87b..00000000
--- a/posts/2010/01/21/monochrome-january-lamp-at-starbucks.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20January/img_7038-1.jpg)
diff --git a/posts/2010/01/22/monochrome-january-hard-working-toy.md b/posts/2010/01/22/monochrome-january-hard-working-toy.md
deleted file mode 100644
index b9ee9a3f..00000000
--- a/posts/2010/01/22/monochrome-january-hard-working-toy.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20January/img_7048-1.jpg)
diff --git a/posts/2010/01/23/monochrome-january-winter-tree.md b/posts/2010/01/23/monochrome-january-winter-tree.md
deleted file mode 100644
index b9a1f779..00000000
--- a/posts/2010/01/23/monochrome-january-winter-tree.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20January/img_7050-1.jpg)
diff --git a/posts/2010/01/24/bug-on-rose-2.md b/posts/2010/01/24/bug-on-rose-2.md
deleted file mode 100644
index dfa73156..00000000
--- a/posts/2010/01/24/bug-on-rose-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full .wp-image-1364 width="1024"
-height="840"}](http://www.donaldharper.com/2010/01/24/bug-on-rose/pb076354-edit/)
diff --git a/posts/2010/01/24/monochrome-january-jet-train-in-a-winters-sky.md b/posts/2010/01/24/monochrome-january-jet-train-in-a-winters-sky.md
deleted file mode 100644
index 72466bca..00000000
--- a/posts/2010/01/24/monochrome-january-jet-train-in-a-winters-sky.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full
-.wp-image-1351}](http://www.donaldharper.com/wp-content/uploads/Monochrome%20January/img_7051-1.jpg)
diff --git a/posts/2010/01/25/downtown-houston-at-sunset-2.md b/posts/2010/01/25/downtown-houston-at-sunset-2.md
deleted file mode 100644
index b27721c2..00000000
--- a/posts/2010/01/25/downtown-houston-at-sunset-2.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-[{.alignnone
-.size-full .wp-image-1375 width="1024"
-height="868"}](http://www.donaldharper.com/2010/01/25/downtown-houston-at-sunset-2/pa084630-edit/)
diff --git a/posts/2010/01/26/road-to-adventure.md b/posts/2010/01/26/road-to-adventure.md
deleted file mode 100644
index 4d8c3b53..00000000
--- a/posts/2010/01/26/road-to-adventure.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-[{.alignnone
-.size-full .wp-image-1393 width="867"
-height="1024"}](http://www.donaldharper.com/2010/01/26/road-to-adventure/p1237246-1/)
diff --git a/posts/2010/01/27/dead-leaf-hanging.md b/posts/2010/01/27/dead-leaf-hanging.md
deleted file mode 100644
index c5c0a445..00000000
--- a/posts/2010/01/27/dead-leaf-hanging.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1392 width="1024" height="992"}
diff --git a/posts/2010/01/28/paster-under-winter-sky.md b/posts/2010/01/28/paster-under-winter-sky.md
deleted file mode 100644
index 9e9b81d6..00000000
--- a/posts/2010/01/28/paster-under-winter-sky.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1391 width="1024" height="841"}
diff --git a/posts/2010/01/29/purple-coneflower.md b/posts/2010/01/29/purple-coneflower.md
deleted file mode 100644
index 8a4e43c1..00000000
--- a/posts/2010/01/29/purple-coneflower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/01/30/male-queen-butterfly.md b/posts/2010/01/30/male-queen-butterfly.md
deleted file mode 100644
index 8dd86941..00000000
--- a/posts/2010/01/30/male-queen-butterfly.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/01/31/white-water-lily.md b/posts/2010/01/31/white-water-lily.md
deleted file mode 100644
index d28d9059..00000000
--- a/posts/2010/01/31/white-water-lily.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/02/01/coreopsis-moonbeam.md b/posts/2010/02/01/coreopsis-moonbeam.md
deleted file mode 100644
index 8879ce39..00000000
--- a/posts/2010/02/01/coreopsis-moonbeam.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/02/02/goblin-gaillardia.md b/posts/2010/02/02/goblin-gaillardia.md
deleted file mode 100644
index e864ac5b..00000000
--- a/posts/2010/02/02/goblin-gaillardia.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/02/03/backlit-sunflower.md b/posts/2010/02/03/backlit-sunflower.md
deleted file mode 100644
index d4b35856..00000000
--- a/posts/2010/02/03/backlit-sunflower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/02/04/white-hibiscus.md b/posts/2010/02/04/white-hibiscus.md
deleted file mode 100644
index 3f691012..00000000
--- a/posts/2010/02/04/white-hibiscus.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/02/05/oil-pump-at-sunset-2.md b/posts/2010/02/05/oil-pump-at-sunset-2.md
deleted file mode 100644
index a039766f..00000000
--- a/posts/2010/02/05/oil-pump-at-sunset-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1446 width="1024" height="815"}
diff --git a/posts/2010/02/06/starlight-2.md b/posts/2010/02/06/starlight-2.md
deleted file mode 100644
index 737e42a8..00000000
--- a/posts/2010/02/06/starlight-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1451 width="1024" height="820"}
diff --git a/posts/2010/02/07/starlight-ii.md b/posts/2010/02/07/starlight-ii.md
deleted file mode 100644
index d0fc63ba..00000000
--- a/posts/2010/02/07/starlight-ii.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1454 width="1024" height="820"}
diff --git a/posts/2010/02/08/camp-fire.md b/posts/2010/02/08/camp-fire.md
deleted file mode 100644
index 1d4a8384..00000000
--- a/posts/2010/02/08/camp-fire.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1457 width="1024" height="841"}
diff --git a/posts/2010/02/09/houston-city-hall.md b/posts/2010/02/09/houston-city-hall.md
deleted file mode 100644
index 414d25f9..00000000
--- a/posts/2010/02/09/houston-city-hall.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1462 width="1024" height="841"}
diff --git a/posts/2010/02/10/tall-buildings-blue-sky.md b/posts/2010/02/10/tall-buildings-blue-sky.md
deleted file mode 100644
index 65e45fc5..00000000
--- a/posts/2010/02/10/tall-buildings-blue-sky.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1464 width="747" height="1024"}
diff --git a/posts/2010/02/11/blue-car-on-green-wall.md b/posts/2010/02/11/blue-car-on-green-wall.md
deleted file mode 100644
index c03a7a26..00000000
--- a/posts/2010/02/11/blue-car-on-green-wall.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1469 width="970" height="1024"}
diff --git a/posts/2010/02/12/early-morning-traffic.md b/posts/2010/02/12/early-morning-traffic.md
deleted file mode 100644
index cc25c782..00000000
--- a/posts/2010/02/12/early-morning-traffic.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1483 width="715" height="1024"}
diff --git a/posts/2010/02/13/froggie-planter.md b/posts/2010/02/13/froggie-planter.md
deleted file mode 100644
index c3272827..00000000
--- a/posts/2010/02/13/froggie-planter.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1508 width="1024" height="841"}
diff --git a/posts/2010/02/13/waiting-for-customers.md b/posts/2010/02/13/waiting-for-customers.md
deleted file mode 100644
index 18c0cfa1..00000000
--- a/posts/2010/02/13/waiting-for-customers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/02/14/waiting-for-summer.md b/posts/2010/02/14/waiting-for-summer.md
deleted file mode 100644
index 40cdcebb..00000000
--- a/posts/2010/02/14/waiting-for-summer.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1510 width="1024" height="841"}
diff --git a/posts/2010/02/15/froggie-planter-2.md b/posts/2010/02/15/froggie-planter-2.md
deleted file mode 100644
index d2cddfaf..00000000
--- a/posts/2010/02/15/froggie-planter-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/02/16/waiting-for-summer-2.md b/posts/2010/02/16/waiting-for-summer-2.md
deleted file mode 100644
index ab7b6103..00000000
--- a/posts/2010/02/16/waiting-for-summer-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/02/17/gnomes-marching.md b/posts/2010/02/17/gnomes-marching.md
deleted file mode 100644
index 4b3d76fa..00000000
--- a/posts/2010/02/17/gnomes-marching.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1512 width="1024" height="432"}
diff --git a/posts/2010/02/18/earth-gnome.md b/posts/2010/02/18/earth-gnome.md
deleted file mode 100644
index 1d5d23c8..00000000
--- a/posts/2010/02/18/earth-gnome.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1514 width="1024" height="823"}
diff --git a/posts/2010/02/19/reflections-downtown.md b/posts/2010/02/19/reflections-downtown.md
deleted file mode 100644
index fa8df1cc..00000000
--- a/posts/2010/02/19/reflections-downtown.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1516 width="829" height="1024"}
diff --git a/posts/2010/02/20/wet-morning.md b/posts/2010/02/20/wet-morning.md
deleted file mode 100644
index 6331ad17..00000000
--- a/posts/2010/02/20/wet-morning.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1518 width="1024" height="894"}
diff --git a/posts/2010/02/21/sunrise-at-60.md b/posts/2010/02/21/sunrise-at-60.md
deleted file mode 100644
index ba34ce83..00000000
--- a/posts/2010/02/21/sunrise-at-60.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1543 width="1024" height="679"}
diff --git a/posts/2010/02/22/sunbeam-in-clouds.md b/posts/2010/02/22/sunbeam-in-clouds.md
deleted file mode 100644
index 582313b2..00000000
--- a/posts/2010/02/22/sunbeam-in-clouds.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1541 width="1024" height="696"}
diff --git a/posts/2010/02/23/reflections-of-tall-buildings.md b/posts/2010/02/23/reflections-of-tall-buildings.md
deleted file mode 100644
index a764193c..00000000
--- a/posts/2010/02/23/reflections-of-tall-buildings.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1539 width="498" height="1024"}
diff --git a/posts/2010/02/24/monochromatic-union-jack.md b/posts/2010/02/24/monochromatic-union-jack.md
deleted file mode 100644
index 2e124a28..00000000
--- a/posts/2010/02/24/monochromatic-union-jack.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1536 width="1024" height="841"}
diff --git a/posts/2010/02/25/signs-allen-center.md b/posts/2010/02/25/signs-allen-center.md
deleted file mode 100644
index f836e4dd..00000000
--- a/posts/2010/02/25/signs-allen-center.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1534 width="647" height="1024"}
diff --git a/posts/2010/02/26/tall-reflections.md b/posts/2010/02/26/tall-reflections.md
deleted file mode 100644
index 8d0a4121..00000000
--- a/posts/2010/02/26/tall-reflections.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1532 width="747" height="1024"}
diff --git a/posts/2010/02/27/don-juan-spring-comes.md b/posts/2010/02/27/don-juan-spring-comes.md
deleted file mode 100644
index c625e55d..00000000
--- a/posts/2010/02/27/don-juan-spring-comes.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1351}
diff --git a/posts/2010/02/28/gnomes.md b/posts/2010/02/28/gnomes.md
deleted file mode 100644
index 8f4852b7..00000000
--- a/posts/2010/02/28/gnomes.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1551 width="747" height="1024"}
diff --git a/posts/2010/03/01/two-allen-center.md b/posts/2010/03/01/two-allen-center.md
deleted file mode 100644
index 9d05e5b0..00000000
--- a/posts/2010/03/01/two-allen-center.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1553 width="970" height="1024"}
diff --git a/posts/2010/03/02/downtown-black-and-white.md b/posts/2010/03/02/downtown-black-and-white.md
deleted file mode 100644
index 94843cf2..00000000
--- a/posts/2010/03/02/downtown-black-and-white.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1555 width="747" height="1024"}
diff --git a/posts/2010/03/03/reflections-black-andwhite.md b/posts/2010/03/03/reflections-black-andwhite.md
deleted file mode 100644
index 4dc0a47f..00000000
--- a/posts/2010/03/03/reflections-black-andwhite.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1557 width="500" height="1024"}
diff --git a/posts/2010/03/04/reflections-of-money-temple.md b/posts/2010/03/04/reflections-of-money-temple.md
deleted file mode 100644
index 3edebca9..00000000
--- a/posts/2010/03/04/reflections-of-money-temple.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1559 width="1024" height="841"}
diff --git a/posts/2010/03/05/moon-photochromed.md b/posts/2010/03/05/moon-photochromed.md
deleted file mode 100644
index d898f9a1..00000000
--- a/posts/2010/03/05/moon-photochromed.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1563 width="1024" height="841"}
diff --git a/posts/2010/03/06/tree-tunnel.md b/posts/2010/03/06/tree-tunnel.md
deleted file mode 100644
index 1a560101..00000000
--- a/posts/2010/03/06/tree-tunnel.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1562 width="1024" height="884"}
diff --git a/posts/2010/03/07/morning-walk-after-rain.md b/posts/2010/03/07/morning-walk-after-rain.md
deleted file mode 100644
index ff8bdf36..00000000
--- a/posts/2010/03/07/morning-walk-after-rain.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1569 width="1024" height="768"}
diff --git a/posts/2010/03/08/la-centera-water-fall.md b/posts/2010/03/08/la-centera-water-fall.md
deleted file mode 100644
index 69e17ba2..00000000
--- a/posts/2010/03/08/la-centera-water-fall.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1578 width="1024" height="841"}
diff --git a/posts/2010/03/09/yellow-rain-coat-2.md b/posts/2010/03/09/yellow-rain-coat-2.md
deleted file mode 100644
index b2ca509b..00000000
--- a/posts/2010/03/09/yellow-rain-coat-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1585 width="541" height="1024"}
diff --git a/posts/2010/03/10/power-sunset.md b/posts/2010/03/10/power-sunset.md
deleted file mode 100644
index 20c5843c..00000000
--- a/posts/2010/03/10/power-sunset.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1589 width="1024" height="841"}
diff --git a/posts/2010/03/11/the-morning-drive.md b/posts/2010/03/11/the-morning-drive.md
deleted file mode 100644
index ca12e05d..00000000
--- a/posts/2010/03/11/the-morning-drive.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1592 width="1024" height="841"}
diff --git a/posts/2010/03/12/public-art.md b/posts/2010/03/12/public-art.md
deleted file mode 100644
index 577611f7..00000000
--- a/posts/2010/03/12/public-art.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.size-full
-.wp-image-1600 width="1135" height="1200"}
diff --git a/posts/2010/03/13/cactus-anyone.md b/posts/2010/03/13/cactus-anyone.md
deleted file mode 100644
index a01cefc6..00000000
--- a/posts/2010/03/13/cactus-anyone.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1604 width="1200" height="985"}
diff --git a/posts/2010/03/14/red-and-green.md b/posts/2010/03/14/red-and-green.md
deleted file mode 100644
index e57c57ee..00000000
--- a/posts/2010/03/14/red-and-green.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1609 width="1136" height="1200"}
diff --git a/posts/2010/03/15/peach-bloom.md b/posts/2010/03/15/peach-bloom.md
deleted file mode 100644
index d9f11dae..00000000
--- a/posts/2010/03/15/peach-bloom.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1626 width="1137" height="1200"}
diff --git a/posts/2010/03/16/firepoll-with-trashcan.md b/posts/2010/03/16/firepoll-with-trashcan.md
deleted file mode 100644
index 4a52b09f..00000000
--- a/posts/2010/03/16/firepoll-with-trashcan.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/03/17/fire-connection.md b/posts/2010/03/17/fire-connection.md
deleted file mode 100644
index 746b856f..00000000
--- a/posts/2010/03/17/fire-connection.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1639 width="1200" height="981"}
diff --git a/posts/2010/03/18/fotofest-in-town.md b/posts/2010/03/18/fotofest-in-town.md
deleted file mode 100644
index f9228ca9..00000000
--- a/posts/2010/03/18/fotofest-in-town.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1644 width="629" height="1200"}
diff --git a/posts/2010/03/19/reflections-and-fog.md b/posts/2010/03/19/reflections-and-fog.md
deleted file mode 100644
index d5038960..00000000
--- a/posts/2010/03/19/reflections-and-fog.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1649 width="876" height="1200"}
diff --git a/posts/2010/03/20/brids-on-the-wire-at-sunset.md b/posts/2010/03/20/brids-on-the-wire-at-sunset.md
deleted file mode 100644
index 0e1153a2..00000000
--- a/posts/2010/03/20/brids-on-the-wire-at-sunset.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1656 width="1200" height="985"}
diff --git a/posts/2010/03/21/grackel-on-prowl.md b/posts/2010/03/21/grackel-on-prowl.md
deleted file mode 100644
index 369210cc..00000000
--- a/posts/2010/03/21/grackel-on-prowl.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1661 width="878" height="1200"}
diff --git a/posts/2010/03/22/model-man-goes-to-washington-dc.md b/posts/2010/03/22/model-man-goes-to-washington-dc.md
deleted file mode 100644
index 2dcecdfb..00000000
--- a/posts/2010/03/22/model-man-goes-to-washington-dc.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1667 width="876" height="1200"}
diff --git a/posts/2010/03/23/sunset-over-lincon.md b/posts/2010/03/23/sunset-over-lincon.md
deleted file mode 100644
index 1fce0b8b..00000000
--- a/posts/2010/03/23/sunset-over-lincon.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1671 width="876" height="1200"}
diff --git a/posts/2010/03/24/the-capital.md b/posts/2010/03/24/the-capital.md
deleted file mode 100644
index e9918552..00000000
--- a/posts/2010/03/24/the-capital.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1705 width="1200" height="774"}
diff --git a/posts/2010/03/25/wwii-fountain.md b/posts/2010/03/25/wwii-fountain.md
deleted file mode 100644
index d9b8ddbd..00000000
--- a/posts/2010/03/25/wwii-fountain.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.size-full
-.wp-image-1709 width="1200" height="843"}
diff --git a/posts/2010/03/26/visiting-the-wwii-memorial.md b/posts/2010/03/26/visiting-the-wwii-memorial.md
deleted file mode 100644
index 2eb3e496..00000000
--- a/posts/2010/03/26/visiting-the-wwii-memorial.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1716 width="1200" height="985"}
diff --git a/posts/2010/03/27/sunset-over-lincon-2.md b/posts/2010/03/27/sunset-over-lincon-2.md
deleted file mode 100644
index 3fd9f161..00000000
--- a/posts/2010/03/27/sunset-over-lincon-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-5 {.alignnone
-.size-full .wp-image-1718 width="876" height="1200"}
diff --git a/posts/2010/03/28/wwii-memorial-at-sunset.md b/posts/2010/03/28/wwii-memorial-at-sunset.md
deleted file mode 100644
index 18b29c9e..00000000
--- a/posts/2010/03/28/wwii-memorial-at-sunset.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1720 width="1200" height="772"}
diff --git a/posts/2010/03/29/lincon-memorial-at-sunset.md b/posts/2010/03/29/lincon-memorial-at-sunset.md
deleted file mode 100644
index 274aec60..00000000
--- a/posts/2010/03/29/lincon-memorial-at-sunset.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1722 width="1200" height="772"}
diff --git a/posts/2010/03/30/national-lawn-sunset.md b/posts/2010/03/30/national-lawn-sunset.md
deleted file mode 100644
index 2faeabf7..00000000
--- a/posts/2010/03/30/national-lawn-sunset.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1727 width="1200" height="985"}
diff --git a/posts/2010/03/31/leaf-on-sidewalk.md b/posts/2010/03/31/leaf-on-sidewalk.md
deleted file mode 100644
index da6aff46..00000000
--- a/posts/2010/03/31/leaf-on-sidewalk.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1731 width="1200" height="985"}
diff --git a/posts/2010/04/01/wild-onion-detail-1-2.md b/posts/2010/04/01/wild-onion-detail-1-2.md
deleted file mode 100644
index 1b6d71a0..00000000
--- a/posts/2010/04/01/wild-onion-detail-1-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1755 width="1024" height="841"}
diff --git a/posts/2010/04/02/wild-onion-detail-2-2.md b/posts/2010/04/02/wild-onion-detail-2-2.md
deleted file mode 100644
index 40ad0821..00000000
--- a/posts/2010/04/02/wild-onion-detail-2-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1758 width="1024" height="841"}
diff --git a/posts/2010/04/03/wild-onion-detail-3-2.md b/posts/2010/04/03/wild-onion-detail-3-2.md
deleted file mode 100644
index 4272e3e0..00000000
--- a/posts/2010/04/03/wild-onion-detail-3-2.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1762 width="1024" height="841"}
diff --git a/posts/2010/04/04/wild-onion-detail-4.md b/posts/2010/04/04/wild-onion-detail-4.md
deleted file mode 100644
index 67f80fa6..00000000
--- a/posts/2010/04/04/wild-onion-detail-4.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1765 width="1024" height="841"}
diff --git a/posts/2010/04/05/crown-vetch.md b/posts/2010/04/05/crown-vetch.md
deleted file mode 100644
index cbae8416..00000000
--- a/posts/2010/04/05/crown-vetch.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1769 width="1024" height="841"}
diff --git a/posts/2010/04/06/sad-flamingo.md b/posts/2010/04/06/sad-flamingo.md
deleted file mode 100644
index 603a48af..00000000
--- a/posts/2010/04/06/sad-flamingo.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1775 width="1024" height="841"}
diff --git a/posts/2010/04/07/dew-on-bluebonnet.md b/posts/2010/04/07/dew-on-bluebonnet.md
deleted file mode 100644
index 02bf7e6c..00000000
--- a/posts/2010/04/07/dew-on-bluebonnet.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1797 width="1200" height="900"}
diff --git a/posts/2010/04/08/spideweb-with-bluebonnets-2.md b/posts/2010/04/08/spideweb-with-bluebonnets-2.md
deleted file mode 100644
index edf1023c..00000000
--- a/posts/2010/04/08/spideweb-with-bluebonnets-2.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1800 width="1200" height="900"}
diff --git a/posts/2010/04/09/i-stand-alone.rst b/posts/2010/04/09/i-stand-alone.rst
deleted file mode 100644
index 979e2109..00000000
--- a/posts/2010/04/09/i-stand-alone.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-.. title: I Stand Alone
-.. slug: i-stand-alone
-.. date: 2010-04-09 01:00:53
-.. tags: Independence TX,Flowers,Pictures
-.. link:
-.. description:
-.. image:: /wp-content/uploads/2010/04/P4038059-11.jpg
- :alt: I Stand Alone
- :width: 1200 px
- :height: 900 px
diff --git a/posts/2010/04/10/texas-bluebonnet.md b/posts/2010/04/10/texas-bluebonnet.md
deleted file mode 100644
index 64edeea2..00000000
--- a/posts/2010/04/10/texas-bluebonnet.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1804 width="1200" height="900"}
diff --git a/posts/2010/04/11/fog-over-bluebonnets.md b/posts/2010/04/11/fog-over-bluebonnets.md
deleted file mode 100644
index 4885e6d8..00000000
--- a/posts/2010/04/11/fog-over-bluebonnets.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1806 width="1200" height="641"}
diff --git a/posts/2010/04/12/field-of-color.md b/posts/2010/04/12/field-of-color.md
deleted file mode 100644
index d7ca5ce8..00000000
--- a/posts/2010/04/12/field-of-color.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1808 width="1200" height="757"}
diff --git a/posts/2010/04/13/broken-dreams.md b/posts/2010/04/13/broken-dreams.md
deleted file mode 100644
index a79b4c8c..00000000
--- a/posts/2010/04/13/broken-dreams.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1811 width="1200" height="957"}
diff --git a/posts/2010/04/14/side-yard-of-bluebonnets.md b/posts/2010/04/14/side-yard-of-bluebonnets.md
deleted file mode 100644
index 3375e6a3..00000000
--- a/posts/2010/04/14/side-yard-of-bluebonnets.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1814 width="1200" height="900"}
diff --git a/posts/2010/04/15/kitchen-wall.md b/posts/2010/04/15/kitchen-wall.md
deleted file mode 100644
index de29c167..00000000
--- a/posts/2010/04/15/kitchen-wall.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1816 width="1200" height="900"}
diff --git a/posts/2010/04/16/fence-and-bluebonnets.md b/posts/2010/04/16/fence-and-bluebonnets.md
deleted file mode 100644
index 87fa372d..00000000
--- a/posts/2010/04/16/fence-and-bluebonnets.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1818 width="1200" height="900"}
diff --git a/posts/2010/04/17/flea-circus.md b/posts/2010/04/17/flea-circus.md
deleted file mode 100644
index 0adc2732..00000000
--- a/posts/2010/04/17/flea-circus.md
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1843 width="1200" height="894"} Last weekend, I was
-able to take part in [The Houston Museum of Natural Science's Flicker
-Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS
-Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/posts/2010/04/18/magic-balls.md b/posts/2010/04/18/magic-balls.md
deleted file mode 100644
index c8b76b39..00000000
--- a/posts/2010/04/18/magic-balls.md
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1844 width="1200" height="904"} Last weekend, I was
-able to take part in [The Houston Museum of Natural Science's Flicker
-Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS
-Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/posts/2010/04/19/golden-cup.md b/posts/2010/04/19/golden-cup.md
deleted file mode 100644
index b75ca66b..00000000
--- a/posts/2010/04/19/golden-cup.md
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1845 width="1200" height="904"} Last weekend, I was
-able to take part in [The Houston Museum of Natural Science's Flicker
-Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS
-Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/posts/2010/04/20/magic-brass.md b/posts/2010/04/20/magic-brass.md
deleted file mode 100644
index 71fe0cfd..00000000
--- a/posts/2010/04/20/magic-brass.md
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1846 width="1200" height="904"} Last weekend, I was
-able to take part in [The Houston Museum of Natural Science's Flicker
-Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS
-Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/posts/2010/04/21/magic-hand.md b/posts/2010/04/21/magic-hand.md
deleted file mode 100644
index fbae15f9..00000000
--- a/posts/2010/04/21/magic-hand.md
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1847 width="1200" height="904"} Last weekend, I was
-able to take part in [The Houston Museum of Natural Science's Flicker
-Group](http://www.flickr.com/groups/hmns/) meetup visiting the [HMNS
-Magic Special Exhibit](http://magic.hmns.org/).
diff --git a/posts/2010/04/22/the-uss-enterprise.md b/posts/2010/04/22/the-uss-enterprise.md
deleted file mode 100644
index 694423bf..00000000
--- a/posts/2010/04/22/the-uss-enterprise.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1867 width="1024" height="768"}
diff --git a/posts/2010/04/23/the-enola-gay.md b/posts/2010/04/23/the-enola-gay.md
deleted file mode 100644
index 61d68fcd..00000000
--- a/posts/2010/04/23/the-enola-gay.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1868 width="1024" height="768"}
diff --git a/posts/2010/04/24/wright-flyer-ii.md b/posts/2010/04/24/wright-flyer-ii.md
deleted file mode 100644
index 245406d4..00000000
--- a/posts/2010/04/24/wright-flyer-ii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1869 width="1024" height="768"}
diff --git a/posts/2010/04/25/sr-71.md b/posts/2010/04/25/sr-71.md
deleted file mode 100644
index a12012e4..00000000
--- a/posts/2010/04/25/sr-71.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1870 width="1024" height="768"}
diff --git a/posts/2010/04/26/tall-bluebonnet.md b/posts/2010/04/26/tall-bluebonnet.md
deleted file mode 100644
index 5d9eef83..00000000
--- a/posts/2010/04/26/tall-bluebonnet.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1882 width="1024" height="768"}
diff --git a/posts/2010/04/27/capturing-the-flowers.md b/posts/2010/04/27/capturing-the-flowers.md
deleted file mode 100644
index 1f762180..00000000
--- a/posts/2010/04/27/capturing-the-flowers.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1889 width="1024" height="768"}
diff --git a/posts/2010/04/28/old-baylor.md b/posts/2010/04/28/old-baylor.md
deleted file mode 100644
index 6a6ab1af..00000000
--- a/posts/2010/04/28/old-baylor.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1890 width="1024" height="768"}
diff --git a/posts/2010/04/29/windmill-in-the-sky.md b/posts/2010/04/29/windmill-in-the-sky.md
deleted file mode 100644
index a345d650..00000000
--- a/posts/2010/04/29/windmill-in-the-sky.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1892 width="1024" height="927"}
diff --git a/posts/2010/04/30/pollen.md b/posts/2010/04/30/pollen.md
deleted file mode 100644
index 862a460b..00000000
--- a/posts/2010/04/30/pollen.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1893 width="1024" height="768"}
diff --git a/posts/2010/05/01/red-church.md b/posts/2010/05/01/red-church.md
deleted file mode 100644
index c4b1f2f5..00000000
--- a/posts/2010/05/01/red-church.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1894 width="768" height="1024"}
diff --git a/posts/2010/05/02/small-flower.md b/posts/2010/05/02/small-flower.md
deleted file mode 100644
index cb8437ea..00000000
--- a/posts/2010/05/02/small-flower.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1895 width="1024" height="768"}
diff --git a/posts/2010/05/03/flags-and-buildings.md b/posts/2010/05/03/flags-and-buildings.md
deleted file mode 100644
index b926ab6b..00000000
--- a/posts/2010/05/03/flags-and-buildings.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1911 width="716" height="1024"}
diff --git a/posts/2010/05/04/after-the-party.md b/posts/2010/05/04/after-the-party.md
deleted file mode 100644
index 8b293815..00000000
--- a/posts/2010/05/04/after-the-party.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1914 width="1024" height="771"}
diff --git a/posts/2010/05/05/reflections-after-the-party.md b/posts/2010/05/05/reflections-after-the-party.md
deleted file mode 100644
index e47d0dad..00000000
--- a/posts/2010/05/05/reflections-after-the-party.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1917 width="1024" height="771"}
diff --git a/posts/2010/05/06/city-hall-ii.md b/posts/2010/05/06/city-hall-ii.md
deleted file mode 100644
index bbd56c81..00000000
--- a/posts/2010/05/06/city-hall-ii.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1935 width="2048" height="1536"}
diff --git a/posts/2010/05/07/moon-and-building.md b/posts/2010/05/07/moon-and-building.md
deleted file mode 100644
index e25f3b61..00000000
--- a/posts/2010/05/07/moon-and-building.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.size-full
-.wp-image-1923 width="2048" height="1536"}
diff --git a/posts/2010/05/08/skinny-reflection.md b/posts/2010/05/08/skinny-reflection.md
deleted file mode 100644
index 65f5b527..00000000
--- a/posts/2010/05/08/skinny-reflection.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1939 width="1003" height="1251"}
diff --git a/posts/2010/05/09/no_escape.md b/posts/2010/05/09/no_escape.md
deleted file mode 100644
index 79dd693b..00000000
--- a/posts/2010/05/09/no_escape.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1925 width="2048" height="1536"}
diff --git a/posts/2010/05/10/row-of-jars.md b/posts/2010/05/10/row-of-jars.md
deleted file mode 100644
index cdcdbe3a..00000000
--- a/posts/2010/05/10/row-of-jars.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1996 width="1024" height="768"}
diff --git a/posts/2010/05/11/new-potatoes.md b/posts/2010/05/11/new-potatoes.md
deleted file mode 100644
index 52bdc944..00000000
--- a/posts/2010/05/11/new-potatoes.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1979 width="768" height="1024"}
diff --git a/posts/2010/05/12/radish.md b/posts/2010/05/12/radish.md
deleted file mode 100644
index 9fb01b68..00000000
--- a/posts/2010/05/12/radish.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1981 width="1024" height="768"}
diff --git a/posts/2010/05/13/yellow-rose.md b/posts/2010/05/13/yellow-rose.md
deleted file mode 100644
index 0d65dc4c..00000000
--- a/posts/2010/05/13/yellow-rose.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1983 width="1024" height="834"}
diff --git a/posts/2010/05/14/metal-star-and-rocks.md b/posts/2010/05/14/metal-star-and-rocks.md
deleted file mode 100644
index c0e8da81..00000000
--- a/posts/2010/05/14/metal-star-and-rocks.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1985 width="1024" height="768"}
diff --git a/posts/2010/05/15/empty-cafe.md b/posts/2010/05/15/empty-cafe.md
deleted file mode 100644
index 9902aa6f..00000000
--- a/posts/2010/05/15/empty-cafe.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1987 width="768" height="1024"}
diff --git a/posts/2010/05/16/roof-beam-and-sign.md b/posts/2010/05/16/roof-beam-and-sign.md
deleted file mode 100644
index f050b530..00000000
--- a/posts/2010/05/16/roof-beam-and-sign.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1989 width="1024" height="768"}
diff --git a/posts/2010/05/17/magnolia.md b/posts/2010/05/17/magnolia.md
deleted file mode 100644
index e84bda8f..00000000
--- a/posts/2010/05/17/magnolia.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1992 width="1024" height="768"}
diff --git a/posts/2010/05/18/you-say-pecans.md b/posts/2010/05/18/you-say-pecans.md
deleted file mode 100644
index 59a186cd..00000000
--- a/posts/2010/05/18/you-say-pecans.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-1994 width="768" height="1024"}
diff --git a/posts/2010/05/19/clasping-leaf-coneflower.md b/posts/2010/05/19/clasping-leaf-coneflower.md
deleted file mode 100644
index ef086d49..00000000
--- a/posts/2010/05/19/clasping-leaf-coneflower.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-2016 width="1024" height="768"}
diff --git a/posts/2010/05/20/field-of-coneflowers.md b/posts/2010/05/20/field-of-coneflowers.md
deleted file mode 100644
index bdfced24..00000000
--- a/posts/2010/05/20/field-of-coneflowers.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-2038 width="1024" height="768"}
diff --git a/posts/2010/05/21/texas-thistle-and-friend.md b/posts/2010/05/21/texas-thistle-and-friend.md
deleted file mode 100644
index 0d75de7a..00000000
--- a/posts/2010/05/21/texas-thistle-and-friend.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-2040 width="1024" height="768"}
diff --git a/posts/2010/05/22/texas-thistle-and-coneflowers.md b/posts/2010/05/22/texas-thistle-and-coneflowers.md
deleted file mode 100644
index 672c413c..00000000
--- a/posts/2010/05/22/texas-thistle-and-coneflowers.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-2042 width="793" height="1024"}
diff --git a/posts/2010/05/23/texas-thistle-ii.md b/posts/2010/05/23/texas-thistle-ii.md
deleted file mode 100644
index c298f3f9..00000000
--- a/posts/2010/05/23/texas-thistle-ii.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-2044 width="1024" height="768"}
diff --git a/posts/2010/05/24/coneflowers-in-the-woods.md b/posts/2010/05/24/coneflowers-in-the-woods.md
deleted file mode 100644
index cdf80fb0..00000000
--- a/posts/2010/05/24/coneflowers-in-the-woods.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-2046 width="1024" height="768"}
diff --git a/posts/2010/05/25/butterfly-on-coneflower.md b/posts/2010/05/25/butterfly-on-coneflower.md
deleted file mode 100644
index a4c66a92..00000000
--- a/posts/2010/05/25/butterfly-on-coneflower.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.alignnone
-.size-full .wp-image-2048 width="1024" height="768"}
diff --git a/posts/2010/05/25/metal-star.md b/posts/2010/05/25/metal-star.md
deleted file mode 100644
index 7a98a326..00000000
--- a/posts/2010/05/25/metal-star.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/05/26/wall-lock.md b/posts/2010/05/26/wall-lock.md
deleted file mode 100644
index 0c4ac721..00000000
--- a/posts/2010/05/26/wall-lock.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/05/27/water-fall.md b/posts/2010/05/27/water-fall.md
deleted file mode 100644
index c78381b0..00000000
--- a/posts/2010/05/27/water-fall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/05/28/down-spout.md b/posts/2010/05/28/down-spout.md
deleted file mode 100644
index d52179ae..00000000
--- a/posts/2010/05/28/down-spout.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/05/29/lights-in-the-corner.md b/posts/2010/05/29/lights-in-the-corner.md
deleted file mode 100644
index ea161a6e..00000000
--- a/posts/2010/05/29/lights-in-the-corner.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/05/30/rusty-support.md b/posts/2010/05/30/rusty-support.md
deleted file mode 100644
index 3d7fe900..00000000
--- a/posts/2010/05/30/rusty-support.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/05/31/fancy-fork.md b/posts/2010/05/31/fancy-fork.md
deleted file mode 100644
index 346780b2..00000000
--- a/posts/2010/05/31/fancy-fork.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/01/captured.md b/posts/2010/06/01/captured.md
deleted file mode 100644
index ecc70c95..00000000
--- a/posts/2010/06/01/captured.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/02/abandoned-fun.md b/posts/2010/06/02/abandoned-fun.md
deleted file mode 100644
index dc0097e3..00000000
--- a/posts/2010/06/02/abandoned-fun.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/03/polkadot-bike.md b/posts/2010/06/03/polkadot-bike.md
deleted file mode 100644
index 127aeb46..00000000
--- a/posts/2010/06/03/polkadot-bike.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/04/blue-on-red.md b/posts/2010/06/04/blue-on-red.md
deleted file mode 100644
index 0d93f106..00000000
--- a/posts/2010/06/04/blue-on-red.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/05/warped-sign.md b/posts/2010/06/05/warped-sign.md
deleted file mode 100644
index 099ff34d..00000000
--- a/posts/2010/06/05/warped-sign.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/06/sunrise-through-condensation.md b/posts/2010/06/06/sunrise-through-condensation.md
deleted file mode 100644
index b73042cb..00000000
--- a/posts/2010/06/06/sunrise-through-condensation.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/07/sunrise-under-beltway-8.md b/posts/2010/06/07/sunrise-under-beltway-8.md
deleted file mode 100644
index e800f588..00000000
--- a/posts/2010/06/07/sunrise-under-beltway-8.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/08/above-it-all.md b/posts/2010/06/08/above-it-all.md
deleted file mode 100644
index c47f3620..00000000
--- a/posts/2010/06/08/above-it-all.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/09/fire-system-behind-bars.md b/posts/2010/06/09/fire-system-behind-bars.md
deleted file mode 100644
index fe947960..00000000
--- a/posts/2010/06/09/fire-system-behind-bars.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/10/path-to-fun.md b/posts/2010/06/10/path-to-fun.md
deleted file mode 100644
index 2ebf704f..00000000
--- a/posts/2010/06/10/path-to-fun.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/11/moon-and-streetlight.md b/posts/2010/06/11/moon-and-streetlight.md
deleted file mode 100644
index 25daa0fc..00000000
--- a/posts/2010/06/11/moon-and-streetlight.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/12/light-and-shadow-on-steps.md b/posts/2010/06/12/light-and-shadow-on-steps.md
deleted file mode 100644
index 2f3a1b65..00000000
--- a/posts/2010/06/12/light-and-shadow-on-steps.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/13/flowers-before-justice.md b/posts/2010/06/13/flowers-before-justice.md
deleted file mode 100644
index efd75a68..00000000
--- a/posts/2010/06/13/flowers-before-justice.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/14/roadside-color.md b/posts/2010/06/14/roadside-color.md
deleted file mode 100644
index d87dcc9b..00000000
--- a/posts/2010/06/14/roadside-color.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/15/java-can-be-pretty-2.md b/posts/2010/06/15/java-can-be-pretty-2.md
deleted file mode 100644
index 3d2519e1..00000000
--- a/posts/2010/06/15/java-can-be-pretty-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/16/string-of-stars-2.md b/posts/2010/06/16/string-of-stars-2.md
deleted file mode 100644
index 55fc3d8a..00000000
--- a/posts/2010/06/16/string-of-stars-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/17/metro-rail-blur.md b/posts/2010/06/17/metro-rail-blur.md
deleted file mode 100644
index 3eb0a87b..00000000
--- a/posts/2010/06/17/metro-rail-blur.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/18/ghost-car.md b/posts/2010/06/18/ghost-car.md
deleted file mode 100644
index 4c89102c..00000000
--- a/posts/2010/06/18/ghost-car.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/19/sunrise-over-lake-livingston.md b/posts/2010/06/19/sunrise-over-lake-livingston.md
deleted file mode 100644
index cc237ed4..00000000
--- a/posts/2010/06/19/sunrise-over-lake-livingston.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/20/wisps.md b/posts/2010/06/20/wisps.md
deleted file mode 100644
index 95dfbfc5..00000000
--- a/posts/2010/06/20/wisps.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/21/power-skyline.md b/posts/2010/06/21/power-skyline.md
deleted file mode 100644
index d5b7e3c0..00000000
--- a/posts/2010/06/21/power-skyline.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/22/jesus-saves.md b/posts/2010/06/22/jesus-saves.md
deleted file mode 100644
index 83470da2..00000000
--- a/posts/2010/06/22/jesus-saves.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/23/reflections-of-progress.md b/posts/2010/06/23/reflections-of-progress.md
deleted file mode 100644
index 805c9481..00000000
--- a/posts/2010/06/23/reflections-of-progress.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/24/power-sunset-2.md b/posts/2010/06/24/power-sunset-2.md
deleted file mode 100644
index d1f36423..00000000
--- a/posts/2010/06/24/power-sunset-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/25/purple-lily.md b/posts/2010/06/25/purple-lily.md
deleted file mode 100644
index 584ba46d..00000000
--- a/posts/2010/06/25/purple-lily.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/26/red-tunnel.md b/posts/2010/06/26/red-tunnel.md
deleted file mode 100644
index 83e65bf9..00000000
--- a/posts/2010/06/26/red-tunnel.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/27/view-from-above.md b/posts/2010/06/27/view-from-above.md
deleted file mode 100644
index 77345307..00000000
--- a/posts/2010/06/27/view-from-above.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/28/above-it-all-2.md b/posts/2010/06/28/above-it-all-2.md
deleted file mode 100644
index 2e4c7994..00000000
--- a/posts/2010/06/28/above-it-all-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/29/clouds-below.md b/posts/2010/06/29/clouds-below.md
deleted file mode 100644
index 86286ebb..00000000
--- a/posts/2010/06/29/clouds-below.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/06/30/the-world-below-clouds.md b/posts/2010/06/30/the-world-below-clouds.md
deleted file mode 100644
index 26d0e3d0..00000000
--- a/posts/2010/06/30/the-world-below-clouds.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/01/boston-from-the-air.md b/posts/2010/07/01/boston-from-the-air.md
deleted file mode 100644
index 659f32e5..00000000
--- a/posts/2010/07/01/boston-from-the-air.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/02/light-water-lilly.md b/posts/2010/07/02/light-water-lilly.md
deleted file mode 100644
index be20b2c4..00000000
--- a/posts/2010/07/02/light-water-lilly.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/03/mopac-bridge-over-ladybird-lake.md b/posts/2010/07/03/mopac-bridge-over-ladybird-lake.md
deleted file mode 100644
index 25c8ee23..00000000
--- a/posts/2010/07/03/mopac-bridge-over-ladybird-lake.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/04/spike-with-petals.md b/posts/2010/07/04/spike-with-petals.md
deleted file mode 100644
index 5eb71d03..00000000
--- a/posts/2010/07/04/spike-with-petals.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/05/austin-sky-line.md b/posts/2010/07/05/austin-sky-line.md
deleted file mode 100644
index 5e912a98..00000000
--- a/posts/2010/07/05/austin-sky-line.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/06/zen-light.md b/posts/2010/07/06/zen-light.md
deleted file mode 100644
index 98ad0218..00000000
--- a/posts/2010/07/06/zen-light.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/07/congress-street-bridge-at-sunset.md b/posts/2010/07/07/congress-street-bridge-at-sunset.md
deleted file mode 100644
index d9470f03..00000000
--- a/posts/2010/07/07/congress-street-bridge-at-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/08/red-door.md b/posts/2010/07/08/red-door.md
deleted file mode 100644
index 66c61fd8..00000000
--- a/posts/2010/07/08/red-door.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/09/kaleidoscope-at-austin-childerns-museum.md b/posts/2010/07/09/kaleidoscope-at-austin-childerns-museum.md
deleted file mode 100644
index 3af1d213..00000000
--- a/posts/2010/07/09/kaleidoscope-at-austin-childerns-museum.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/10/bottlecap-window.md b/posts/2010/07/10/bottlecap-window.md
deleted file mode 100644
index 649d60c6..00000000
--- a/posts/2010/07/10/bottlecap-window.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/11/helix-of-life-for-play.md b/posts/2010/07/11/helix-of-life-for-play.md
deleted file mode 100644
index b158340f..00000000
--- a/posts/2010/07/11/helix-of-life-for-play.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/12/water-lilly.md b/posts/2010/07/12/water-lilly.md
deleted file mode 100644
index a435ed11..00000000
--- a/posts/2010/07/12/water-lilly.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/13/reflection-place.md b/posts/2010/07/13/reflection-place.md
deleted file mode 100644
index e7e70e94..00000000
--- a/posts/2010/07/13/reflection-place.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/14/yellow-orage-rose.md b/posts/2010/07/14/yellow-orage-rose.md
deleted file mode 100644
index 4bfd3702..00000000
--- a/posts/2010/07/14/yellow-orage-rose.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/15/feed-me.md b/posts/2010/07/15/feed-me.md
deleted file mode 100644
index f083d85d..00000000
--- a/posts/2010/07/15/feed-me.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/16/congress-st-bridge-at-sunset.md b/posts/2010/07/16/congress-st-bridge-at-sunset.md
deleted file mode 100644
index 64a83dec..00000000
--- a/posts/2010/07/16/congress-st-bridge-at-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/17/spider.md b/posts/2010/07/17/spider.md
deleted file mode 100644
index 4087dcd8..00000000
--- a/posts/2010/07/17/spider.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/18/zen-path.md b/posts/2010/07/18/zen-path.md
deleted file mode 100644
index 016d3546..00000000
--- a/posts/2010/07/18/zen-path.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/19/blur-and-white-flowers.md b/posts/2010/07/19/blur-and-white-flowers.md
deleted file mode 100644
index eeaac576..00000000
--- a/posts/2010/07/19/blur-and-white-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/20/austin-sky-line-reflected.md b/posts/2010/07/20/austin-sky-line-reflected.md
deleted file mode 100644
index 2f0650a1..00000000
--- a/posts/2010/07/20/austin-sky-line-reflected.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/21/light-and-shadow-on-steps-2.md b/posts/2010/07/21/light-and-shadow-on-steps-2.md
deleted file mode 100644
index 63a16c69..00000000
--- a/posts/2010/07/21/light-and-shadow-on-steps-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/22/blue.md b/posts/2010/07/22/blue.md
deleted file mode 100644
index 920ace96..00000000
--- a/posts/2010/07/22/blue.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/23/water-filtering-plant.md b/posts/2010/07/23/water-filtering-plant.md
deleted file mode 100644
index 1954c332..00000000
--- a/posts/2010/07/23/water-filtering-plant.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/24/train-tressel.md b/posts/2010/07/24/train-tressel.md
deleted file mode 100644
index e44360ce..00000000
--- a/posts/2010/07/24/train-tressel.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/25/red.md b/posts/2010/07/25/red.md
deleted file mode 100644
index 69e74461..00000000
--- a/posts/2010/07/25/red.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/26/shovels-in-the-sky.md b/posts/2010/07/26/shovels-in-the-sky.md
deleted file mode 100644
index 063a7a69..00000000
--- a/posts/2010/07/26/shovels-in-the-sky.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/27/houston-at-sunset.md b/posts/2010/07/27/houston-at-sunset.md
deleted file mode 100644
index dbef5e2f..00000000
--- a/posts/2010/07/27/houston-at-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/28/ghost-train.md b/posts/2010/07/28/ghost-train.md
deleted file mode 100644
index 1fb4784a..00000000
--- a/posts/2010/07/28/ghost-train.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/29/ghost-train-2.md b/posts/2010/07/29/ghost-train-2.md
deleted file mode 100644
index 561b13c8..00000000
--- a/posts/2010/07/29/ghost-train-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/30/al.md b/posts/2010/07/30/al.md
deleted file mode 100644
index fef9654c..00000000
--- a/posts/2010/07/30/al.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/07/31/a-b-mcgill-co.md b/posts/2010/07/31/a-b-mcgill-co.md
deleted file mode 100644
index 5b6c382f..00000000
--- a/posts/2010/07/31/a-b-mcgill-co.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/01/san-gabriel-river.md b/posts/2010/08/01/san-gabriel-river.md
deleted file mode 100644
index ddbba7e3..00000000
--- a/posts/2010/08/01/san-gabriel-river.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/02/rain-on-the-ground.md b/posts/2010/08/02/rain-on-the-ground.md
deleted file mode 100644
index 9206aa07..00000000
--- a/posts/2010/08/02/rain-on-the-ground.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/03/pink-lilly-with-bug.md b/posts/2010/08/03/pink-lilly-with-bug.md
deleted file mode 100644
index 4eeecd00..00000000
--- a/posts/2010/08/03/pink-lilly-with-bug.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/04/pink-moon.md b/posts/2010/08/04/pink-moon.md
deleted file mode 100644
index 6509aa98..00000000
--- a/posts/2010/08/04/pink-moon.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/05/night-lights.md b/posts/2010/08/05/night-lights.md
deleted file mode 100644
index 58a4d1b8..00000000
--- a/posts/2010/08/05/night-lights.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/06/reflections-of-neon.md b/posts/2010/08/06/reflections-of-neon.md
deleted file mode 100644
index 21214011..00000000
--- a/posts/2010/08/06/reflections-of-neon.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/07/downtown-houston-in-monochrome.md b/posts/2010/08/07/downtown-houston-in-monochrome.md
deleted file mode 100644
index 8fef8d97..00000000
--- a/posts/2010/08/07/downtown-houston-in-monochrome.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/08/temple-in-the-sky.md b/posts/2010/08/08/temple-in-the-sky.md
deleted file mode 100644
index ccac9342..00000000
--- a/posts/2010/08/08/temple-in-the-sky.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/09/clouds.md b/posts/2010/08/09/clouds.md
deleted file mode 100644
index 6a686838..00000000
--- a/posts/2010/08/09/clouds.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/10/cone-on-corner.md b/posts/2010/08/10/cone-on-corner.md
deleted file mode 100644
index 3d039dfe..00000000
--- a/posts/2010/08/10/cone-on-corner.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/11/red-2.md b/posts/2010/08/11/red-2.md
deleted file mode 100644
index 0abae161..00000000
--- a/posts/2010/08/11/red-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/12/whooos-there.md b/posts/2010/08/12/whooos-there.md
deleted file mode 100644
index 152ae5a5..00000000
--- a/posts/2010/08/12/whooos-there.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/13/day-of-the-dead.md b/posts/2010/08/13/day-of-the-dead.md
deleted file mode 100644
index e567a2f6..00000000
--- a/posts/2010/08/13/day-of-the-dead.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/14/sign-at-sunset.md b/posts/2010/08/14/sign-at-sunset.md
deleted file mode 100644
index d8c3e5aa..00000000
--- a/posts/2010/08/14/sign-at-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/15/stop-for-the-clouds.md b/posts/2010/08/15/stop-for-the-clouds.md
deleted file mode 100644
index 261be577..00000000
--- a/posts/2010/08/15/stop-for-the-clouds.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/16/rockies.md b/posts/2010/08/16/rockies.md
deleted file mode 100644
index 1afb805f..00000000
--- a/posts/2010/08/16/rockies.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/17/the-balinese-room.md b/posts/2010/08/17/the-balinese-room.md
deleted file mode 100644
index 38fd05d3..00000000
--- a/posts/2010/08/17/the-balinese-room.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/18/flagship-at-sunrise.md b/posts/2010/08/18/flagship-at-sunrise.md
deleted file mode 100644
index 461c5788..00000000
--- a/posts/2010/08/18/flagship-at-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/19/field-of-sunflowers-2.md b/posts/2010/08/19/field-of-sunflowers-2.md
deleted file mode 100644
index dd6352cf..00000000
--- a/posts/2010/08/19/field-of-sunflowers-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/20/lone-color.md b/posts/2010/08/20/lone-color.md
deleted file mode 100644
index c32c4f2b..00000000
--- a/posts/2010/08/20/lone-color.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/21/reflected-neighbors.md b/posts/2010/08/21/reflected-neighbors.md
deleted file mode 100644
index d5e2ce4f..00000000
--- a/posts/2010/08/21/reflected-neighbors.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/22/purple-2.md b/posts/2010/08/22/purple-2.md
deleted file mode 100644
index fc94495b..00000000
--- a/posts/2010/08/22/purple-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/23/purple-groups.md b/posts/2010/08/23/purple-groups.md
deleted file mode 100644
index 0e8c0bda..00000000
--- a/posts/2010/08/23/purple-groups.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/24/stone-circles.md b/posts/2010/08/24/stone-circles.md
deleted file mode 100644
index 1853a109..00000000
--- a/posts/2010/08/24/stone-circles.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/25/sunset-light-on-downtown.md b/posts/2010/08/25/sunset-light-on-downtown.md
deleted file mode 100644
index d928bee6..00000000
--- a/posts/2010/08/25/sunset-light-on-downtown.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/26/blue-heron.md b/posts/2010/08/26/blue-heron.md
deleted file mode 100644
index 97a2d372..00000000
--- a/posts/2010/08/26/blue-heron.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/27/bleak-winter.md b/posts/2010/08/27/bleak-winter.md
deleted file mode 100644
index 5bc5f169..00000000
--- a/posts/2010/08/27/bleak-winter.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/28/washers-on-high.md b/posts/2010/08/28/washers-on-high.md
deleted file mode 100644
index e90e7609..00000000
--- a/posts/2010/08/28/washers-on-high.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/29/reflection-of-neighbors.md b/posts/2010/08/29/reflection-of-neighbors.md
deleted file mode 100644
index a1cc6d12..00000000
--- a/posts/2010/08/29/reflection-of-neighbors.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/30/sunrise-over-construction.md b/posts/2010/08/30/sunrise-over-construction.md
deleted file mode 100644
index 84625f3a..00000000
--- a/posts/2010/08/30/sunrise-over-construction.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/08/31/ft-dewhickey.md b/posts/2010/08/31/ft-dewhickey.md
deleted file mode 100644
index ea450fef..00000000
--- a/posts/2010/08/31/ft-dewhickey.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/01/take-the-long-way-home.md b/posts/2010/09/01/take-the-long-way-home.md
deleted file mode 100644
index 9d49df4b..00000000
--- a/posts/2010/09/01/take-the-long-way-home.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/02/some-pig.md b/posts/2010/09/02/some-pig.md
deleted file mode 100644
index 93a66dce..00000000
--- a/posts/2010/09/02/some-pig.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/03/rose-in-the-sky-2.md b/posts/2010/09/03/rose-in-the-sky-2.md
deleted file mode 100644
index afdec400..00000000
--- a/posts/2010/09/03/rose-in-the-sky-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/04/water-on-walk.md b/posts/2010/09/04/water-on-walk.md
deleted file mode 100644
index fd6d0188..00000000
--- a/posts/2010/09/04/water-on-walk.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/05/bad-day.md b/posts/2010/09/05/bad-day.md
deleted file mode 100644
index ea69ccd6..00000000
--- a/posts/2010/09/05/bad-day.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/06/canyon-sunrise.md b/posts/2010/09/06/canyon-sunrise.md
deleted file mode 100644
index 051379de..00000000
--- a/posts/2010/09/06/canyon-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/07/hot-stuff.md b/posts/2010/09/07/hot-stuff.md
deleted file mode 100644
index c2b55b31..00000000
--- a/posts/2010/09/07/hot-stuff.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/08/pokes.md b/posts/2010/09/08/pokes.md
deleted file mode 100644
index 65cbb31c..00000000
--- a/posts/2010/09/08/pokes.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/09/lots-of-okra.md b/posts/2010/09/09/lots-of-okra.md
deleted file mode 100644
index 18654801..00000000
--- a/posts/2010/09/09/lots-of-okra.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/10/green-monster.md b/posts/2010/09/10/green-monster.md
deleted file mode 100644
index a307638b..00000000
--- a/posts/2010/09/10/green-monster.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/11/bling-for-shoes.md b/posts/2010/09/11/bling-for-shoes.md
deleted file mode 100644
index e762ca6e..00000000
--- a/posts/2010/09/11/bling-for-shoes.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/12/sunrise-and-cars.md b/posts/2010/09/12/sunrise-and-cars.md
deleted file mode 100644
index 9b492bc4..00000000
--- a/posts/2010/09/12/sunrise-and-cars.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/13/sunset-above-it-all.md b/posts/2010/09/13/sunset-above-it-all.md
deleted file mode 100644
index b21c4e92..00000000
--- a/posts/2010/09/13/sunset-above-it-all.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/14/gull-above-beach-goers.md b/posts/2010/09/14/gull-above-beach-goers.md
deleted file mode 100644
index 5958cdbe..00000000
--- a/posts/2010/09/14/gull-above-beach-goers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/15/snail.md b/posts/2010/09/15/snail.md
deleted file mode 100644
index bbd0fd87..00000000
--- a/posts/2010/09/15/snail.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/16/new-old-library.md b/posts/2010/09/16/new-old-library.md
deleted file mode 100644
index 2815fa54..00000000
--- a/posts/2010/09/16/new-old-library.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/17/wall-art.md b/posts/2010/09/17/wall-art.md
deleted file mode 100644
index c36d43fb..00000000
--- a/posts/2010/09/17/wall-art.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/18/bright-line.md b/posts/2010/09/18/bright-line.md
deleted file mode 100644
index dc7b86fe..00000000
--- a/posts/2010/09/18/bright-line.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/19/nature-survives.md b/posts/2010/09/19/nature-survives.md
deleted file mode 100644
index 6047de35..00000000
--- a/posts/2010/09/19/nature-survives.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/20/green-on-blue.md b/posts/2010/09/20/green-on-blue.md
deleted file mode 100644
index efbe5da4..00000000
--- a/posts/2010/09/20/green-on-blue.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/21/smile.md b/posts/2010/09/21/smile.md
deleted file mode 100644
index 094c3f0f..00000000
--- a/posts/2010/09/21/smile.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/22/storms-acomin.md b/posts/2010/09/22/storms-acomin.md
deleted file mode 100644
index 9b508fdb..00000000
--- a/posts/2010/09/22/storms-acomin.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/23/rain-on-leaf.md b/posts/2010/09/23/rain-on-leaf.md
deleted file mode 100644
index f99166c9..00000000
--- a/posts/2010/09/23/rain-on-leaf.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/24/sitting-pretty-2.md b/posts/2010/09/24/sitting-pretty-2.md
deleted file mode 100644
index 646a1564..00000000
--- a/posts/2010/09/24/sitting-pretty-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/25/detail-of-rose.md b/posts/2010/09/25/detail-of-rose.md
deleted file mode 100644
index 40defbba..00000000
--- a/posts/2010/09/25/detail-of-rose.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/26/standing-tall.md b/posts/2010/09/26/standing-tall.md
deleted file mode 100644
index 95818d94..00000000
--- a/posts/2010/09/26/standing-tall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/27/tall.md b/posts/2010/09/27/tall.md
deleted file mode 100644
index dd9647aa..00000000
--- a/posts/2010/09/27/tall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/28/end-of-the-week.md b/posts/2010/09/28/end-of-the-week.md
deleted file mode 100644
index af625ab7..00000000
--- a/posts/2010/09/28/end-of-the-week.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/29/foggy-morning-2.md b/posts/2010/09/29/foggy-morning-2.md
deleted file mode 100644
index c49fd7ac..00000000
--- a/posts/2010/09/29/foggy-morning-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/09/30/lost-in-thought.md b/posts/2010/09/30/lost-in-thought.md
deleted file mode 100644
index 143892b5..00000000
--- a/posts/2010/09/30/lost-in-thought.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/01/water-over-rocks.md b/posts/2010/10/01/water-over-rocks.md
deleted file mode 100644
index 157a7c70..00000000
--- a/posts/2010/10/01/water-over-rocks.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/02/rr-12-over-the-blanco.md b/posts/2010/10/02/rr-12-over-the-blanco.md
deleted file mode 100644
index 6b748456..00000000
--- a/posts/2010/10/02/rr-12-over-the-blanco.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/03/fall-is-here.md b/posts/2010/10/03/fall-is-here.md
deleted file mode 100644
index 0accccef..00000000
--- a/posts/2010/10/03/fall-is-here.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/04/stay-off.md b/posts/2010/10/04/stay-off.md
deleted file mode 100644
index 5c4c32a8..00000000
--- a/posts/2010/10/04/stay-off.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/05/rused-roadrunner.md b/posts/2010/10/05/rused-roadrunner.md
deleted file mode 100644
index d27157d7..00000000
--- a/posts/2010/10/05/rused-roadrunner.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/06/details-of-a-harley.md b/posts/2010/10/06/details-of-a-harley.md
deleted file mode 100644
index 54005920..00000000
--- a/posts/2010/10/06/details-of-a-harley.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/07/upside-down.md b/posts/2010/10/07/upside-down.md
deleted file mode 100644
index dbfda793..00000000
--- a/posts/2010/10/07/upside-down.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/08/old-lamp.md b/posts/2010/10/08/old-lamp.md
deleted file mode 100644
index 0e4a1aba..00000000
--- a/posts/2010/10/08/old-lamp.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/09/end-of-the-day-2.md b/posts/2010/10/09/end-of-the-day-2.md
deleted file mode 100644
index c78a7840..00000000
--- a/posts/2010/10/09/end-of-the-day-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/10/first-shot-w-new-camera-09.md b/posts/2010/10/10/first-shot-w-new-camera-09.md
deleted file mode 100644
index 90c7b332..00000000
--- a/posts/2010/10/10/first-shot-w-new-camera-09.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-")
diff --git a/posts/2010/10/11/model-man-takes-a-break.md b/posts/2010/10/11/model-man-takes-a-break.md
deleted file mode 100644
index 856bab6f..00000000
--- a/posts/2010/10/11/model-man-takes-a-break.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/12/model-man-checks-out-a-book.md b/posts/2010/10/12/model-man-checks-out-a-book.md
deleted file mode 100644
index 1b9f6d38..00000000
--- a/posts/2010/10/12/model-man-checks-out-a-book.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/13/glass-and-steel-to-the-sky.md b/posts/2010/10/13/glass-and-steel-to-the-sky.md
deleted file mode 100644
index e272880b..00000000
--- a/posts/2010/10/13/glass-and-steel-to-the-sky.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/14/water-wall.md b/posts/2010/10/14/water-wall.md
deleted file mode 100644
index 39f90a72..00000000
--- a/posts/2010/10/14/water-wall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/15/rusty-view.md b/posts/2010/10/15/rusty-view.md
deleted file mode 100644
index 01f32499..00000000
--- a/posts/2010/10/15/rusty-view.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/16/flags-and-streamer.md b/posts/2010/10/16/flags-and-streamer.md
deleted file mode 100644
index 335411f3..00000000
--- a/posts/2010/10/16/flags-and-streamer.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/17/orange-and-mini-pumkins.md b/posts/2010/10/17/orange-and-mini-pumkins.md
deleted file mode 100644
index 84c0108c..00000000
--- a/posts/2010/10/17/orange-and-mini-pumkins.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/18/pumpkins.md b/posts/2010/10/18/pumpkins.md
deleted file mode 100644
index 161ba9da..00000000
--- a/posts/2010/10/18/pumpkins.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/19/white-kolanche.md b/posts/2010/10/19/white-kolanche.md
deleted file mode 100644
index 3cb5c10f..00000000
--- a/posts/2010/10/19/white-kolanche.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/20/10-10-10-details-of-a-don-juan.md b/posts/2010/10/20/10-10-10-details-of-a-don-juan.md
deleted file mode 100644
index c5a33b5f..00000000
--- a/posts/2010/10/20/10-10-10-details-of-a-don-juan.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/21/10-10-10-faded-red-rose.md b/posts/2010/10/21/10-10-10-faded-red-rose.md
deleted file mode 100644
index 1d2e426b..00000000
--- a/posts/2010/10/21/10-10-10-faded-red-rose.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/22/android-dreams-warped-cars.md b/posts/2010/10/22/android-dreams-warped-cars.md
deleted file mode 100644
index 6b375088..00000000
--- a/posts/2010/10/22/android-dreams-warped-cars.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/23/android-dreams-ghost-car.md b/posts/2010/10/23/android-dreams-ghost-car.md
deleted file mode 100644
index 5f3a3a46..00000000
--- a/posts/2010/10/23/android-dreams-ghost-car.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/24/android-dreams-lift-for-exit.md b/posts/2010/10/24/android-dreams-lift-for-exit.md
deleted file mode 100644
index 4814487f..00000000
--- a/posts/2010/10/24/android-dreams-lift-for-exit.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/25/android-dreams-downtown.md b/posts/2010/10/25/android-dreams-downtown.md
deleted file mode 100644
index e46af1dd..00000000
--- a/posts/2010/10/25/android-dreams-downtown.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/26/android-dreams-line-of-trees.md b/posts/2010/10/26/android-dreams-line-of-trees.md
deleted file mode 100644
index 46888133..00000000
--- a/posts/2010/10/26/android-dreams-line-of-trees.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/27/android-dreams-waiting-for-better-times.md b/posts/2010/10/27/android-dreams-waiting-for-better-times.md
deleted file mode 100644
index cbf0f987..00000000
--- a/posts/2010/10/27/android-dreams-waiting-for-better-times.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/28/android-dreams-tall-buildings.md b/posts/2010/10/28/android-dreams-tall-buildings.md
deleted file mode 100644
index d7fef03b..00000000
--- a/posts/2010/10/28/android-dreams-tall-buildings.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/29/tall-lines.md b/posts/2010/10/29/tall-lines.md
deleted file mode 100644
index 56e73c4c..00000000
--- a/posts/2010/10/29/tall-lines.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/30/steel-sunflowers.md b/posts/2010/10/30/steel-sunflowers.md
deleted file mode 100644
index d7288c23..00000000
--- a/posts/2010/10/30/steel-sunflowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/10/31/lone-color-2.md b/posts/2010/10/31/lone-color-2.md
deleted file mode 100644
index f0e7f091..00000000
--- a/posts/2010/10/31/lone-color-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/01/storm-is-a-brewin.md b/posts/2010/11/01/storm-is-a-brewin.md
deleted file mode 100644
index b92168b0..00000000
--- a/posts/2010/11/01/storm-is-a-brewin.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/02/windmill-in-the-sky-2.md b/posts/2010/11/02/windmill-in-the-sky-2.md
deleted file mode 100644
index 35f991d2..00000000
--- a/posts/2010/11/02/windmill-in-the-sky-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/03/make-way-for-ducks.md b/posts/2010/11/03/make-way-for-ducks.md
deleted file mode 100644
index dc1da5f9..00000000
--- a/posts/2010/11/03/make-way-for-ducks.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/04/field-of-color-2.md b/posts/2010/11/04/field-of-color-2.md
deleted file mode 100644
index 0549ee40..00000000
--- a/posts/2010/11/04/field-of-color-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/05/windblown-sunflower.md b/posts/2010/11/05/windblown-sunflower.md
deleted file mode 100644
index 06a1ae22..00000000
--- a/posts/2010/11/05/windblown-sunflower.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/06/bokeh-color.md b/posts/2010/11/06/bokeh-color.md
deleted file mode 100644
index 840cc53b..00000000
--- a/posts/2010/11/06/bokeh-color.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/07/butterfly.md b/posts/2010/11/07/butterfly.md
deleted file mode 100644
index 5318c515..00000000
--- a/posts/2010/11/07/butterfly.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/08/purple-3.md b/posts/2010/11/08/purple-3.md
deleted file mode 100644
index 719eba24..00000000
--- a/posts/2010/11/08/purple-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/09/details-of-sunflower-vi.md b/posts/2010/11/09/details-of-sunflower-vi.md
deleted file mode 100644
index 61352e33..00000000
--- a/posts/2010/11/09/details-of-sunflower-vi.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/10/march-of-the-office-gnomes.md b/posts/2010/11/10/march-of-the-office-gnomes.md
deleted file mode 100644
index bd25b861..00000000
--- a/posts/2010/11/10/march-of-the-office-gnomes.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/10/white-flower-butterfly.md b/posts/2010/11/10/white-flower-butterfly.md
deleted file mode 100644
index 7cdcdc9a..00000000
--- a/posts/2010/11/10/white-flower-butterfly.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/11/windows.md b/posts/2010/11/11/windows.md
deleted file mode 100644
index 016ead17..00000000
--- a/posts/2010/11/11/windows.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/12/butterfly-detail.md b/posts/2010/11/12/butterfly-detail.md
deleted file mode 100644
index edc206d5..00000000
--- a/posts/2010/11/12/butterfly-detail.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/13/blossom.md b/posts/2010/11/13/blossom.md
deleted file mode 100644
index 9691de24..00000000
--- a/posts/2010/11/13/blossom.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/14/where-have-we-been.md b/posts/2010/11/14/where-have-we-been.md
deleted file mode 100644
index 276d54d5..00000000
--- a/posts/2010/11/14/where-have-we-been.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/15/reflected-moon.md b/posts/2010/11/15/reflected-moon.md
deleted file mode 100644
index 5ac59ff6..00000000
--- a/posts/2010/11/15/reflected-moon.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/16/fall-comes-to-texas.md b/posts/2010/11/16/fall-comes-to-texas.md
deleted file mode 100644
index b3a02f43..00000000
--- a/posts/2010/11/16/fall-comes-to-texas.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/16/red-line-streak.md b/posts/2010/11/16/red-line-streak.md
deleted file mode 100644
index 581765b3..00000000
--- a/posts/2010/11/16/red-line-streak.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/17/red-and-green-2.md b/posts/2010/11/17/red-and-green-2.md
deleted file mode 100644
index f93c77b9..00000000
--- a/posts/2010/11/17/red-and-green-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/18/waiting-for-someone.md b/posts/2010/11/18/waiting-for-someone.md
deleted file mode 100644
index 31211165..00000000
--- a/posts/2010/11/18/waiting-for-someone.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/19/water-landing.md b/posts/2010/11/19/water-landing.md
deleted file mode 100644
index 9b37767f..00000000
--- a/posts/2010/11/19/water-landing.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/20/peaceful-sceen.md b/posts/2010/11/20/peaceful-sceen.md
deleted file mode 100644
index dc47568a..00000000
--- a/posts/2010/11/20/peaceful-sceen.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/21/getaway-on-a-canoe.md b/posts/2010/11/21/getaway-on-a-canoe.md
deleted file mode 100644
index 069d688e..00000000
--- a/posts/2010/11/21/getaway-on-a-canoe.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/22/wet-leaf.md b/posts/2010/11/22/wet-leaf.md
deleted file mode 100644
index 7e27ff41..00000000
--- a/posts/2010/11/22/wet-leaf.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/23/2619.md b/posts/2010/11/23/2619.md
deleted file mode 100644
index fccb5b1e..00000000
--- a/posts/2010/11/23/2619.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/24/winter-is-almost-here.md b/posts/2010/11/24/winter-is-almost-here.md
deleted file mode 100644
index daaceb4f..00000000
--- a/posts/2010/11/24/winter-is-almost-here.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/25/bluebonnet-1324.md b/posts/2010/11/25/bluebonnet-1324.md
deleted file mode 100644
index 91fa90f8..00000000
--- a/posts/2010/11/25/bluebonnet-1324.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/26/details-of-iris.md b/posts/2010/11/26/details-of-iris.md
deleted file mode 100644
index ca4a06b1..00000000
--- a/posts/2010/11/26/details-of-iris.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/27/sad-flowers.md b/posts/2010/11/27/sad-flowers.md
deleted file mode 100644
index b6982209..00000000
--- a/posts/2010/11/27/sad-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/28/pink-rose-2.md b/posts/2010/11/28/pink-rose-2.md
deleted file mode 100644
index 52208a77..00000000
--- a/posts/2010/11/28/pink-rose-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/29/small-flower-big.md b/posts/2010/11/29/small-flower-big.md
deleted file mode 100644
index 9d9781ea..00000000
--- a/posts/2010/11/29/small-flower-big.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/11/30/monochrome-sunset.md b/posts/2010/11/30/monochrome-sunset.md
deleted file mode 100644
index 2995934c..00000000
--- a/posts/2010/11/30/monochrome-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/01/banners-in-the-wind.md b/posts/2010/12/01/banners-in-the-wind.md
deleted file mode 100644
index 9cc821e5..00000000
--- a/posts/2010/12/01/banners-in-the-wind.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/02/tower-in-sky.md b/posts/2010/12/02/tower-in-sky.md
deleted file mode 100644
index 87ec5a7f..00000000
--- a/posts/2010/12/02/tower-in-sky.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/03/craftsman-at-work.md b/posts/2010/12/03/craftsman-at-work.md
deleted file mode 100644
index 1cd0d96b..00000000
--- a/posts/2010/12/03/craftsman-at-work.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/04/clock-tower.md b/posts/2010/12/04/clock-tower.md
deleted file mode 100644
index 6e5cb34a..00000000
--- a/posts/2010/12/04/clock-tower.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/05/unicorn.md b/posts/2010/12/05/unicorn.md
deleted file mode 100644
index 3b2d8e30..00000000
--- a/posts/2010/12/05/unicorn.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/06/light-catcher.md b/posts/2010/12/06/light-catcher.md
deleted file mode 100644
index d359df59..00000000
--- a/posts/2010/12/06/light-catcher.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/07/jars-of-smells.md b/posts/2010/12/07/jars-of-smells.md
deleted file mode 100644
index 93ccbce5..00000000
--- a/posts/2010/12/07/jars-of-smells.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/08/pretty-bobbels.md b/posts/2010/12/08/pretty-bobbels.md
deleted file mode 100644
index f608ecbc..00000000
--- a/posts/2010/12/08/pretty-bobbels.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/09/christmas-reflections.md b/posts/2010/12/09/christmas-reflections.md
deleted file mode 100644
index 2baff732..00000000
--- a/posts/2010/12/09/christmas-reflections.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/10/marble-at-work.md b/posts/2010/12/10/marble-at-work.md
deleted file mode 100644
index eb80d4f0..00000000
--- a/posts/2010/12/10/marble-at-work.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/11/headgear.md b/posts/2010/12/11/headgear.md
deleted file mode 100644
index b3f61450..00000000
--- a/posts/2010/12/11/headgear.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/12/end-of-another-day.md b/posts/2010/12/12/end-of-another-day.md
deleted file mode 100644
index 38ef42f8..00000000
--- a/posts/2010/12/12/end-of-another-day.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/13/freedom-over-wires.md b/posts/2010/12/13/freedom-over-wires.md
deleted file mode 100644
index f47fabef..00000000
--- a/posts/2010/12/13/freedom-over-wires.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/14/blue-boat.md b/posts/2010/12/14/blue-boat.md
deleted file mode 100644
index 71989534..00000000
--- a/posts/2010/12/14/blue-boat.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/15/wave-on-italian-beach.md b/posts/2010/12/15/wave-on-italian-beach.md
deleted file mode 100644
index 834be791..00000000
--- a/posts/2010/12/15/wave-on-italian-beach.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/16/flags-and-lines.md b/posts/2010/12/16/flags-and-lines.md
deleted file mode 100644
index 908c96fb..00000000
--- a/posts/2010/12/16/flags-and-lines.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/17/extreme-toy-close-up.md b/posts/2010/12/17/extreme-toy-close-up.md
deleted file mode 100644
index 3d34a885..00000000
--- a/posts/2010/12/17/extreme-toy-close-up.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-Side note - this is the 1400 post to this blog. Wow.
diff --git a/posts/2010/12/18/summer-holding-on.md b/posts/2010/12/18/summer-holding-on.md
deleted file mode 100644
index 2afe5237..00000000
--- a/posts/2010/12/18/summer-holding-on.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/19/wood-chips-stacked.md b/posts/2010/12/19/wood-chips-stacked.md
deleted file mode 100644
index 2145c217..00000000
--- a/posts/2010/12/19/wood-chips-stacked.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/20/tall-building-austin.md b/posts/2010/12/20/tall-building-austin.md
deleted file mode 100644
index c0d81153..00000000
--- a/posts/2010/12/20/tall-building-austin.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/21/golden-sunset-over-mopac.md b/posts/2010/12/21/golden-sunset-over-mopac.md
deleted file mode 100644
index e7ed81ad..00000000
--- a/posts/2010/12/21/golden-sunset-over-mopac.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/22/sunset-over-lady-bird-lake.md b/posts/2010/12/22/sunset-over-lady-bird-lake.md
deleted file mode 100644
index 0dafa538..00000000
--- a/posts/2010/12/22/sunset-over-lady-bird-lake.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/23/rose-and-spider-web.md b/posts/2010/12/23/rose-and-spider-web.md
deleted file mode 100644
index c1c847a0..00000000
--- a/posts/2010/12/23/rose-and-spider-web.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/24/moth-and-flowers.md b/posts/2010/12/24/moth-and-flowers.md
deleted file mode 100644
index 00e6898f..00000000
--- a/posts/2010/12/24/moth-and-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/25/waterfall-dinosor-park.md b/posts/2010/12/25/waterfall-dinosor-park.md
deleted file mode 100644
index 57c27f1a..00000000
--- a/posts/2010/12/25/waterfall-dinosor-park.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/26/watch-your-step-3.md b/posts/2010/12/26/watch-your-step-3.md
deleted file mode 100644
index a68d7459..00000000
--- a/posts/2010/12/26/watch-your-step-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/27/triangles-in-the-sky-3.md b/posts/2010/12/27/triangles-in-the-sky-3.md
deleted file mode 100644
index 7f5b4c86..00000000
--- a/posts/2010/12/27/triangles-in-the-sky-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/28/going-up-or-down-3.md b/posts/2010/12/28/going-up-or-down-3.md
deleted file mode 100644
index 2dbb5c12..00000000
--- a/posts/2010/12/28/going-up-or-down-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/29/garden-gnome.md b/posts/2010/12/29/garden-gnome.md
deleted file mode 100644
index 9261ff78..00000000
--- a/posts/2010/12/29/garden-gnome.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/30/christmas-express.md b/posts/2010/12/30/christmas-express.md
deleted file mode 100644
index 9440be47..00000000
--- a/posts/2010/12/30/christmas-express.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2010/12/31/winter-sunset.md b/posts/2010/12/31/winter-sunset.md
deleted file mode 100644
index d98b7691..00000000
--- a/posts/2010/12/31/winter-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/01/lader-in-shadows.md b/posts/2011/01/01/lader-in-shadows.md
deleted file mode 100644
index 2c609467..00000000
--- a/posts/2011/01/01/lader-in-shadows.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/02/winter-sky.md b/posts/2011/01/02/winter-sky.md
deleted file mode 100644
index 5ab1d884..00000000
--- a/posts/2011/01/02/winter-sky.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/03/place-for-rest.md b/posts/2011/01/03/place-for-rest.md
deleted file mode 100644
index 6d9d6ee3..00000000
--- a/posts/2011/01/03/place-for-rest.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/04/warm-lights.md b/posts/2011/01/04/warm-lights.md
deleted file mode 100644
index 2ef03b6a..00000000
--- a/posts/2011/01/04/warm-lights.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/05/2769.md b/posts/2011/01/05/2769.md
deleted file mode 100644
index 025a8f07..00000000
--- a/posts/2011/01/05/2769.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/06/new_beginnings.md b/posts/2011/01/06/new_beginnings.md
deleted file mode 100644
index 1b08743e..00000000
--- a/posts/2011/01/06/new_beginnings.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/07/clouds-and-the-moon.md b/posts/2011/01/07/clouds-and-the-moon.md
deleted file mode 100644
index cac66638..00000000
--- a/posts/2011/01/07/clouds-and-the-moon.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/08/rice-dryer-detail.md b/posts/2011/01/08/rice-dryer-detail.md
deleted file mode 100644
index c097bb5f..00000000
--- a/posts/2011/01/08/rice-dryer-detail.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/09/lake-view.md b/posts/2011/01/09/lake-view.md
deleted file mode 100644
index 2372af0b..00000000
--- a/posts/2011/01/09/lake-view.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/10/moon-over-trees.md b/posts/2011/01/10/moon-over-trees.md
deleted file mode 100644
index 8956304b..00000000
--- a/posts/2011/01/10/moon-over-trees.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/11/lake-view-2.md b/posts/2011/01/11/lake-view-2.md
deleted file mode 100644
index d833acb0..00000000
--- a/posts/2011/01/11/lake-view-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/12/moon-over-trees-2.md b/posts/2011/01/12/moon-over-trees-2.md
deleted file mode 100644
index 8db64243..00000000
--- a/posts/2011/01/12/moon-over-trees-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/13/square-light.md b/posts/2011/01/13/square-light.md
deleted file mode 100644
index 2e3dfcf0..00000000
--- a/posts/2011/01/13/square-light.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/14/glowing-mask.md b/posts/2011/01/14/glowing-mask.md
deleted file mode 100644
index 044f791d..00000000
--- a/posts/2011/01/14/glowing-mask.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/15/houston-city-hall-2.md b/posts/2011/01/15/houston-city-hall-2.md
deleted file mode 100644
index 2da15b1a..00000000
--- a/posts/2011/01/15/houston-city-hall-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/16/2794.md b/posts/2011/01/16/2794.md
deleted file mode 100644
index 89a66dc3..00000000
--- a/posts/2011/01/16/2794.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/17/roadside-color-2.md b/posts/2011/01/17/roadside-color-2.md
deleted file mode 100644
index 29a48a86..00000000
--- a/posts/2011/01/17/roadside-color-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/18/granite-way.md b/posts/2011/01/18/granite-way.md
deleted file mode 100644
index 3597e7bd..00000000
--- a/posts/2011/01/18/granite-way.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/19/lemonheads.md b/posts/2011/01/19/lemonheads.md
deleted file mode 100644
index 40812fee..00000000
--- a/posts/2011/01/19/lemonheads.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/20/alley.md b/posts/2011/01/20/alley.md
deleted file mode 100644
index 682a4682..00000000
--- a/posts/2011/01/20/alley.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/21/reflections-of-a-sunrise.md b/posts/2011/01/21/reflections-of-a-sunrise.md
deleted file mode 100644
index f726e9af..00000000
--- a/posts/2011/01/21/reflections-of-a-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/22/view-from-my-prison.md b/posts/2011/01/22/view-from-my-prison.md
deleted file mode 100644
index 8408415a..00000000
--- a/posts/2011/01/22/view-from-my-prison.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/23/glass_sunset.md b/posts/2011/01/23/glass_sunset.md
deleted file mode 100644
index 58f55ec7..00000000
--- a/posts/2011/01/23/glass_sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/24/reflected-sunset.md b/posts/2011/01/24/reflected-sunset.md
deleted file mode 100644
index 5798fcbf..00000000
--- a/posts/2011/01/24/reflected-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/25/red-door-2.md b/posts/2011/01/25/red-door-2.md
deleted file mode 100644
index 97f92498..00000000
--- a/posts/2011/01/25/red-door-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/26/drive-home.md b/posts/2011/01/26/drive-home.md
deleted file mode 100644
index 9b8c0758..00000000
--- a/posts/2011/01/26/drive-home.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/27/blue-and-tall.md b/posts/2011/01/27/blue-and-tall.md
deleted file mode 100644
index 22acf4cb..00000000
--- a/posts/2011/01/27/blue-and-tall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/28/green-glass.md b/posts/2011/01/28/green-glass.md
deleted file mode 100644
index d5d7e16d..00000000
--- a/posts/2011/01/28/green-glass.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/29/new-reflecting-old.md b/posts/2011/01/29/new-reflecting-old.md
deleted file mode 100644
index bf5b4575..00000000
--- a/posts/2011/01/29/new-reflecting-old.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/30/dapple-building.md b/posts/2011/01/30/dapple-building.md
deleted file mode 100644
index 80489092..00000000
--- a/posts/2011/01/30/dapple-building.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/01/31/orange-on-street.md b/posts/2011/01/31/orange-on-street.md
deleted file mode 100644
index 518e7aac..00000000
--- a/posts/2011/01/31/orange-on-street.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/01/plants-in-sunset.md b/posts/2011/02/01/plants-in-sunset.md
deleted file mode 100644
index 964b9a3a..00000000
--- a/posts/2011/02/01/plants-in-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/02/wavy-sunset.md b/posts/2011/02/02/wavy-sunset.md
deleted file mode 100644
index fc8730b0..00000000
--- a/posts/2011/02/02/wavy-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/03/dof.md b/posts/2011/02/03/dof.md
deleted file mode 100644
index 2960c21b..00000000
--- a/posts/2011/02/03/dof.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/04/sage-in-bloom.md b/posts/2011/02/04/sage-in-bloom.md
deleted file mode 100644
index f2ec48ee..00000000
--- a/posts/2011/02/04/sage-in-bloom.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/05/dino-garden.md b/posts/2011/02/05/dino-garden.md
deleted file mode 100644
index 96858853..00000000
--- a/posts/2011/02/05/dino-garden.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/06/luxury-on-the-beach.md b/posts/2011/02/06/luxury-on-the-beach.md
deleted file mode 100644
index 3a6b3aed..00000000
--- a/posts/2011/02/06/luxury-on-the-beach.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/07/ft-worth.md b/posts/2011/02/07/ft-worth.md
deleted file mode 100644
index feabc60e..00000000
--- a/posts/2011/02/07/ft-worth.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/08/long-road.md b/posts/2011/02/08/long-road.md
deleted file mode 100644
index 7f0b3a3c..00000000
--- a/posts/2011/02/08/long-road.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/09/progress-at-sunrise.md b/posts/2011/02/09/progress-at-sunrise.md
deleted file mode 100644
index 88008fb1..00000000
--- a/posts/2011/02/09/progress-at-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/10/reflections-of-progress-2.md b/posts/2011/02/10/reflections-of-progress-2.md
deleted file mode 100644
index b72f8cb9..00000000
--- a/posts/2011/02/10/reflections-of-progress-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/11/color-in-corner.md b/posts/2011/02/11/color-in-corner.md
deleted file mode 100644
index f6f91b94..00000000
--- a/posts/2011/02/11/color-in-corner.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/12/2859.md b/posts/2011/02/12/2859.md
deleted file mode 100644
index f1beda4d..00000000
--- a/posts/2011/02/12/2859.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/13/two-lines.md b/posts/2011/02/13/two-lines.md
deleted file mode 100644
index b605e850..00000000
--- a/posts/2011/02/13/two-lines.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/14/horns.md b/posts/2011/02/14/horns.md
deleted file mode 100644
index 283b0db6..00000000
--- a/posts/2011/02/14/horns.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/15/take-the-brick-path.md b/posts/2011/02/15/take-the-brick-path.md
deleted file mode 100644
index 68026505..00000000
--- a/posts/2011/02/15/take-the-brick-path.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/16/uh-law-school-ii.md b/posts/2011/02/16/uh-law-school-ii.md
deleted file mode 100644
index 32b22d31..00000000
--- a/posts/2011/02/16/uh-law-school-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/17/uh-law-school-i.md b/posts/2011/02/17/uh-law-school-i.md
deleted file mode 100644
index edae26cd..00000000
--- a/posts/2011/02/17/uh-law-school-i.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/18/uh-law-school-iii.md b/posts/2011/02/18/uh-law-school-iii.md
deleted file mode 100644
index 6385d719..00000000
--- a/posts/2011/02/18/uh-law-school-iii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/19/long-walk-nowhere.md b/posts/2011/02/19/long-walk-nowhere.md
deleted file mode 100644
index 215697c7..00000000
--- a/posts/2011/02/19/long-walk-nowhere.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/20/construction_and_clouds.md b/posts/2011/02/20/construction_and_clouds.md
deleted file mode 100644
index ec950c29..00000000
--- a/posts/2011/02/20/construction_and_clouds.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/21/crane-in-clouds.md b/posts/2011/02/21/crane-in-clouds.md
deleted file mode 100644
index 45abb591..00000000
--- a/posts/2011/02/21/crane-in-clouds.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/22/time_to_move_on.md b/posts/2011/02/22/time_to_move_on.md
deleted file mode 100644
index 805d0d3c..00000000
--- a/posts/2011/02/22/time_to_move_on.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/23/eyes-are-the-windows-to-the-soul-of-a-car.md b/posts/2011/02/23/eyes-are-the-windows-to-the-soul-of-a-car.md
deleted file mode 100644
index 0881cdfa..00000000
--- a/posts/2011/02/23/eyes-are-the-windows-to-the-soul-of-a-car.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/24/zen-garden.md b/posts/2011/02/24/zen-garden.md
deleted file mode 100644
index 3a6fce27..00000000
--- a/posts/2011/02/24/zen-garden.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/25/headlamp.md b/posts/2011/02/25/headlamp.md
deleted file mode 100644
index f6557499..00000000
--- a/posts/2011/02/25/headlamp.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/26/black-barrier.md b/posts/2011/02/26/black-barrier.md
deleted file mode 100644
index bcc249ee..00000000
--- a/posts/2011/02/26/black-barrier.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/27/street-art-found.md b/posts/2011/02/27/street-art-found.md
deleted file mode 100644
index 454445de..00000000
--- a/posts/2011/02/27/street-art-found.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/02/28/street-art-found-ii.md b/posts/2011/02/28/street-art-found-ii.md
deleted file mode 100644
index 1d0e11ea..00000000
--- a/posts/2011/02/28/street-art-found-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/01/brick-wall-and-walk.md b/posts/2011/03/01/brick-wall-and-walk.md
deleted file mode 100644
index 273f5e91..00000000
--- a/posts/2011/03/01/brick-wall-and-walk.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/02/horns-2.md b/posts/2011/03/02/horns-2.md
deleted file mode 100644
index 9dad0f2d..00000000
--- a/posts/2011/03/02/horns-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/03/craftsman-at-work-2.md b/posts/2011/03/03/craftsman-at-work-2.md
deleted file mode 100644
index a77c26e9..00000000
--- a/posts/2011/03/03/craftsman-at-work-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/04/lacy-crane.md b/posts/2011/03/04/lacy-crane.md
deleted file mode 100644
index 97eddbc3..00000000
--- a/posts/2011/03/04/lacy-crane.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/05/lace-in-the-making.md b/posts/2011/03/05/lace-in-the-making.md
deleted file mode 100644
index 0dba8df0..00000000
--- a/posts/2011/03/05/lace-in-the-making.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/06/before-videos.md b/posts/2011/03/06/before-videos.md
deleted file mode 100644
index 0cf87709..00000000
--- a/posts/2011/03/06/before-videos.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/07/threads-of-the-fates.md b/posts/2011/03/07/threads-of-the-fates.md
deleted file mode 100644
index 04c6c89a..00000000
--- a/posts/2011/03/07/threads-of-the-fates.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/08/ally.md b/posts/2011/03/08/ally.md
deleted file mode 100644
index 53a7a8ad..00000000
--- a/posts/2011/03/08/ally.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/09/here_be_dragons.md b/posts/2011/03/09/here_be_dragons.md
deleted file mode 100644
index 42e9b7e2..00000000
--- a/posts/2011/03/09/here_be_dragons.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/10/life-behind-glass-wall.md b/posts/2011/03/10/life-behind-glass-wall.md
deleted file mode 100644
index 2f239fbd..00000000
--- a/posts/2011/03/10/life-behind-glass-wall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/11/found-steet-art-iii.md b/posts/2011/03/11/found-steet-art-iii.md
deleted file mode 100644
index 3d01e1e4..00000000
--- a/posts/2011/03/11/found-steet-art-iii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/12/drive-time-sunset.md b/posts/2011/03/12/drive-time-sunset.md
deleted file mode 100644
index 2ec3155e..00000000
--- a/posts/2011/03/12/drive-time-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/13/leaf_on_sidewalk.md b/posts/2011/03/13/leaf_on_sidewalk.md
deleted file mode 100644
index 09a36c0e..00000000
--- a/posts/2011/03/13/leaf_on_sidewalk.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/14/taillights-in-rain.md b/posts/2011/03/14/taillights-in-rain.md
deleted file mode 100644
index 34663e49..00000000
--- a/posts/2011/03/14/taillights-in-rain.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/15/houston-city-hall-3.md b/posts/2011/03/15/houston-city-hall-3.md
deleted file mode 100644
index 6d4b5451..00000000
--- a/posts/2011/03/15/houston-city-hall-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/16/gnome-standing-gaurd.md b/posts/2011/03/16/gnome-standing-gaurd.md
deleted file mode 100644
index 26ea33d4..00000000
--- a/posts/2011/03/16/gnome-standing-gaurd.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/17/warm_start_of_the_day.md b/posts/2011/03/17/warm_start_of_the_day.md
deleted file mode 100644
index 9c442304..00000000
--- a/posts/2011/03/17/warm_start_of_the_day.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/18/cold-sunset.md b/posts/2011/03/18/cold-sunset.md
deleted file mode 100644
index 16f30338..00000000
--- a/posts/2011/03/18/cold-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/19/looong-drive.md b/posts/2011/03/19/looong-drive.md
deleted file mode 100644
index 51548259..00000000
--- a/posts/2011/03/19/looong-drive.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/20/green-lights.md b/posts/2011/03/20/green-lights.md
deleted file mode 100644
index f980bce3..00000000
--- a/posts/2011/03/20/green-lights.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/21/houston-public-library.md b/posts/2011/03/21/houston-public-library.md
deleted file mode 100644
index 5db9aefa..00000000
--- a/posts/2011/03/21/houston-public-library.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/22/play-ball.md b/posts/2011/03/22/play-ball.md
deleted file mode 100644
index 9e5c4776..00000000
--- a/posts/2011/03/22/play-ball.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/23/long-live-texas.md b/posts/2011/03/23/long-live-texas.md
deleted file mode 100644
index 0eeb852b..00000000
--- a/posts/2011/03/23/long-live-texas.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/24/boats-at-anchor.md b/posts/2011/03/24/boats-at-anchor.md
deleted file mode 100644
index 2d899bf1..00000000
--- a/posts/2011/03/24/boats-at-anchor.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/25/ready-for-the-sun.md b/posts/2011/03/25/ready-for-the-sun.md
deleted file mode 100644
index ef917e18..00000000
--- a/posts/2011/03/25/ready-for-the-sun.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/26/sunset-over-piers.md b/posts/2011/03/26/sunset-over-piers.md
deleted file mode 100644
index dea3ec96..00000000
--- a/posts/2011/03/26/sunset-over-piers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/27/dock.md b/posts/2011/03/27/dock.md
deleted file mode 100644
index 29bc3f81..00000000
--- a/posts/2011/03/27/dock.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/28/downtown-san-miguel-de-cozumel.md b/posts/2011/03/28/downtown-san-miguel-de-cozumel.md
deleted file mode 100644
index 6e4683ae..00000000
--- a/posts/2011/03/28/downtown-san-miguel-de-cozumel.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/29/clocktower-at-plaza-de-sol.md b/posts/2011/03/29/clocktower-at-plaza-de-sol.md
deleted file mode 100644
index c568f1ab..00000000
--- a/posts/2011/03/29/clocktower-at-plaza-de-sol.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/30/sidewalk.md b/posts/2011/03/30/sidewalk.md
deleted file mode 100644
index d6b458e7..00000000
--- a/posts/2011/03/30/sidewalk.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/03/31/yellow-building.md b/posts/2011/03/31/yellow-building.md
deleted file mode 100644
index 02665bce..00000000
--- a/posts/2011/03/31/yellow-building.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/01/masks.md b/posts/2011/04/01/masks.md
deleted file mode 100644
index cff2bbb0..00000000
--- a/posts/2011/04/01/masks.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/02/ruins.md b/posts/2011/04/02/ruins.md
deleted file mode 100644
index 25c48c87..00000000
--- a/posts/2011/04/02/ruins.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/03/feed-me-2.md b/posts/2011/04/03/feed-me-2.md
deleted file mode 100644
index 52ba0dcc..00000000
--- a/posts/2011/04/03/feed-me-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/04/lighthouse.md b/posts/2011/04/04/lighthouse.md
deleted file mode 100644
index 0257efad..00000000
--- a/posts/2011/04/04/lighthouse.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/05/perfecr-beach.md b/posts/2011/04/05/perfecr-beach.md
deleted file mode 100644
index 299af9cb..00000000
--- a/posts/2011/04/05/perfecr-beach.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/06/caribbean-sunset.md b/posts/2011/04/06/caribbean-sunset.md
deleted file mode 100644
index 517a47a6..00000000
--- a/posts/2011/04/06/caribbean-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/07/sunset-iv.md b/posts/2011/04/07/sunset-iv.md
deleted file mode 100644
index 6aa08866..00000000
--- a/posts/2011/04/07/sunset-iv.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/08/pier-and-clouds.md b/posts/2011/04/08/pier-and-clouds.md
deleted file mode 100644
index 97c144f7..00000000
--- a/posts/2011/04/08/pier-and-clouds.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/09/sunset-v.md b/posts/2011/04/09/sunset-v.md
deleted file mode 100644
index 005e5205..00000000
--- a/posts/2011/04/09/sunset-v.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/10/sunset-vi.md b/posts/2011/04/10/sunset-vi.md
deleted file mode 100644
index fc670a2f..00000000
--- a/posts/2011/04/10/sunset-vi.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/11/lizzard-and-stone.md b/posts/2011/04/11/lizzard-and-stone.md
deleted file mode 100644
index d0accea3..00000000
--- a/posts/2011/04/11/lizzard-and-stone.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/04/12/iguana.md b/posts/2011/04/12/iguana.md
deleted file mode 100644
index 702e7a46..00000000
--- a/posts/2011/04/12/iguana.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/15/back.md b/posts/2011/07/15/back.md
deleted file mode 100644
index 0956c5b1..00000000
--- a/posts/2011/07/15/back.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/16/hdr_garden.md b/posts/2011/07/16/hdr_garden.md
deleted file mode 100644
index a2619f45..00000000
--- a/posts/2011/07/16/hdr_garden.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/17/hdr_gnomes.md b/posts/2011/07/17/hdr_gnomes.md
deleted file mode 100644
index c209568d..00000000
--- a/posts/2011/07/17/hdr_gnomes.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/18/wet-football-field.md b/posts/2011/07/18/wet-football-field.md
deleted file mode 100644
index 8374eaf7..00000000
--- a/posts/2011/07/18/wet-football-field.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/19/hdr-ducks.md b/posts/2011/07/19/hdr-ducks.md
deleted file mode 100644
index d42660d2..00000000
--- a/posts/2011/07/19/hdr-ducks.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/20/boom.md b/posts/2011/07/20/boom.md
deleted file mode 100644
index c6067911..00000000
--- a/posts/2011/07/20/boom.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/21/watching-booms.md b/posts/2011/07/21/watching-booms.md
deleted file mode 100644
index 73e00f35..00000000
--- a/posts/2011/07/21/watching-booms.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/23/sunrise-at-speed.md b/posts/2011/07/23/sunrise-at-speed.md
deleted file mode 100644
index a4f083b3..00000000
--- a/posts/2011/07/23/sunrise-at-speed.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/24/duck-eye.md b/posts/2011/07/24/duck-eye.md
deleted file mode 100644
index e6a69231..00000000
--- a/posts/2011/07/24/duck-eye.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/25/clouds-sun-lights.md b/posts/2011/07/25/clouds-sun-lights.md
deleted file mode 100644
index 6ba98d6c..00000000
--- a/posts/2011/07/25/clouds-sun-lights.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/26/duck-2.md b/posts/2011/07/26/duck-2.md
deleted file mode 100644
index 2dc82333..00000000
--- a/posts/2011/07/26/duck-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/27/duck-2-2.md b/posts/2011/07/27/duck-2-2.md
deleted file mode 100644
index 9a0ba250..00000000
--- a/posts/2011/07/27/duck-2-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/28/turtle-swiming.md b/posts/2011/07/28/turtle-swiming.md
deleted file mode 100644
index d5ae3c44..00000000
--- a/posts/2011/07/28/turtle-swiming.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/29/duck-walk.md b/posts/2011/07/29/duck-walk.md
deleted file mode 100644
index 7f7d5ed7..00000000
--- a/posts/2011/07/29/duck-walk.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/30/ducklings.md b/posts/2011/07/30/ducklings.md
deleted file mode 100644
index a77f1031..00000000
--- a/posts/2011/07/30/ducklings.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/07/31/hedge-of-roses.md b/posts/2011/07/31/hedge-of-roses.md
deleted file mode 100644
index ff08fb6d..00000000
--- a/posts/2011/07/31/hedge-of-roses.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/01/ducklinkgs-2.md b/posts/2011/08/01/ducklinkgs-2.md
deleted file mode 100644
index c51fe547..00000000
--- a/posts/2011/08/01/ducklinkgs-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/02/duck-4.md b/posts/2011/08/02/duck-4.md
deleted file mode 100644
index 6d674263..00000000
--- a/posts/2011/08/02/duck-4.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/03/butterfly-vii.md b/posts/2011/08/03/butterfly-vii.md
deleted file mode 100644
index 8156cb60..00000000
--- a/posts/2011/08/03/butterfly-vii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/04/bw-building.md b/posts/2011/08/04/bw-building.md
deleted file mode 100644
index 4de5b14b..00000000
--- a/posts/2011/08/04/bw-building.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/05/bw-hurdle.md b/posts/2011/08/05/bw-hurdle.md
deleted file mode 100644
index 9576fe5f..00000000
--- a/posts/2011/08/05/bw-hurdle.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/06/bw-grain-elevator.md b/posts/2011/08/06/bw-grain-elevator.md
deleted file mode 100644
index 6b60613b..00000000
--- a/posts/2011/08/06/bw-grain-elevator.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/07/bw-rail-siding.md b/posts/2011/08/07/bw-rail-siding.md
deleted file mode 100644
index aa67ae67..00000000
--- a/posts/2011/08/07/bw-rail-siding.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/08/bw-horns.md b/posts/2011/08/08/bw-horns.md
deleted file mode 100644
index a5bf05bd..00000000
--- a/posts/2011/08/08/bw-horns.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/12/sunset-in-garage.md b/posts/2011/08/12/sunset-in-garage.md
deleted file mode 100644
index 8c77e5f5..00000000
--- a/posts/2011/08/12/sunset-in-garage.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/13/sunset-xiv.md b/posts/2011/08/13/sunset-xiv.md
deleted file mode 100644
index 5cb27918..00000000
--- a/posts/2011/08/13/sunset-xiv.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/14/sunrise-from-car.md b/posts/2011/08/14/sunrise-from-car.md
deleted file mode 100644
index 4fcb49c3..00000000
--- a/posts/2011/08/14/sunrise-from-car.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/15/cows-at-misty-sunrise.md b/posts/2011/08/15/cows-at-misty-sunrise.md
deleted file mode 100644
index 0a323308..00000000
--- a/posts/2011/08/15/cows-at-misty-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/08/16/wet-sunrise.md b/posts/2011/08/16/wet-sunrise.md
deleted file mode 100644
index 95f6b1f8..00000000
--- a/posts/2011/08/16/wet-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/17/sunrise-in-the-air.md b/posts/2011/12/17/sunrise-in-the-air.md
deleted file mode 100644
index 3a59929c..00000000
--- a/posts/2011/12/17/sunrise-in-the-air.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-{.size-full
-.wp-image-3059 width="1024" height="764"}
diff --git a/posts/2011/12/20/long-drive.md b/posts/2011/12/20/long-drive.md
deleted file mode 100644
index d0c42785..00000000
--- a/posts/2011/12/20/long-drive.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/21/clouds-on-the-horizon.md b/posts/2011/12/21/clouds-on-the-horizon.md
deleted file mode 100644
index f14e9ddd..00000000
--- a/posts/2011/12/21/clouds-on-the-horizon.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/22/texture-i.md b/posts/2011/12/22/texture-i.md
deleted file mode 100644
index 0d724eba..00000000
--- a/posts/2011/12/22/texture-i.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/23/new-dawn-breaking.md b/posts/2011/12/23/new-dawn-breaking.md
deleted file mode 100644
index 29be2064..00000000
--- a/posts/2011/12/23/new-dawn-breaking.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/24/fall-i.md b/posts/2011/12/24/fall-i.md
deleted file mode 100644
index 029e1885..00000000
--- a/posts/2011/12/24/fall-i.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/25/reflections-i.md b/posts/2011/12/25/reflections-i.md
deleted file mode 100644
index af63c81a..00000000
--- a/posts/2011/12/25/reflections-i.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/26/fall-ii.md b/posts/2011/12/26/fall-ii.md
deleted file mode 100644
index 5d79efd3..00000000
--- a/posts/2011/12/26/fall-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/27/fall-iii.md b/posts/2011/12/27/fall-iii.md
deleted file mode 100644
index 6a2bdba5..00000000
--- a/posts/2011/12/27/fall-iii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/28/reflections-ii.md b/posts/2011/12/28/reflections-ii.md
deleted file mode 100644
index d8725c03..00000000
--- a/posts/2011/12/28/reflections-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/29/reflections-iii.md b/posts/2011/12/29/reflections-iii.md
deleted file mode 100644
index e1b11a3c..00000000
--- a/posts/2011/12/29/reflections-iii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/30/fall-iv.md b/posts/2011/12/30/fall-iv.md
deleted file mode 100644
index 515599f0..00000000
--- a/posts/2011/12/30/fall-iv.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2011/12/31/stump.md b/posts/2011/12/31/stump.md
deleted file mode 100644
index 4d6be8aa..00000000
--- a/posts/2011/12/31/stump.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/03/stroll-on-beach-at-sunset.md b/posts/2012/01/03/stroll-on-beach-at-sunset.md
deleted file mode 100644
index 9dd6d028..00000000
--- a/posts/2012/01/03/stroll-on-beach-at-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/04/winter-beach.md b/posts/2012/01/04/winter-beach.md
deleted file mode 100644
index d09e3427..00000000
--- a/posts/2012/01/04/winter-beach.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/05/cold-seagull.md b/posts/2012/01/05/cold-seagull.md
deleted file mode 100644
index 4f742657..00000000
--- a/posts/2012/01/05/cold-seagull.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/06/i-heart-joe.md b/posts/2012/01/06/i-heart-joe.md
deleted file mode 100644
index 3e073377..00000000
--- a/posts/2012/01/06/i-heart-joe.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/07/flying-seagull-vi.md b/posts/2012/01/07/flying-seagull-vi.md
deleted file mode 100644
index 968093e1..00000000
--- a/posts/2012/01/07/flying-seagull-vi.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/08/reflective-seagull.md b/posts/2012/01/08/reflective-seagull.md
deleted file mode 100644
index d3806771..00000000
--- a/posts/2012/01/08/reflective-seagull.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/09/tall-ship-elissa.md b/posts/2012/01/09/tall-ship-elissa.md
deleted file mode 100644
index 9215a45d..00000000
--- a/posts/2012/01/09/tall-ship-elissa.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/10/elissa-rigging-detail-i.md b/posts/2012/01/10/elissa-rigging-detail-i.md
deleted file mode 100644
index 7f3b4d81..00000000
--- a/posts/2012/01/10/elissa-rigging-detail-i.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/11/salon-of-the-elissa.md b/posts/2012/01/11/salon-of-the-elissa.md
deleted file mode 100644
index 1427072b..00000000
--- a/posts/2012/01/11/salon-of-the-elissa.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/12/elissa-rigging-detail-ii.md b/posts/2012/01/12/elissa-rigging-detail-ii.md
deleted file mode 100644
index f89fcb3d..00000000
--- a/posts/2012/01/12/elissa-rigging-detail-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/13/elissa-rigging-detail-iii.md b/posts/2012/01/13/elissa-rigging-detail-iii.md
deleted file mode 100644
index 17941ff8..00000000
--- a/posts/2012/01/13/elissa-rigging-detail-iii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/14/elissa-rigging-detail-iv.md b/posts/2012/01/14/elissa-rigging-detail-iv.md
deleted file mode 100644
index 22df1e5f..00000000
--- a/posts/2012/01/14/elissa-rigging-detail-iv.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/15/elissa-rigging-detail-v.md b/posts/2012/01/15/elissa-rigging-detail-v.md
deleted file mode 100644
index 05bc9d28..00000000
--- a/posts/2012/01/15/elissa-rigging-detail-v.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/16/elissas-compus.md b/posts/2012/01/16/elissas-compus.md
deleted file mode 100644
index a561cd53..00000000
--- a/posts/2012/01/16/elissas-compus.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/17/elissa-rigging-detail-vi.md b/posts/2012/01/17/elissa-rigging-detail-vi.md
deleted file mode 100644
index ee3e508f..00000000
--- a/posts/2012/01/17/elissa-rigging-detail-vi.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/18/fishing-pier.md b/posts/2012/01/18/fishing-pier.md
deleted file mode 100644
index 2b07eec4..00000000
--- a/posts/2012/01/18/fishing-pier.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/19/winter-sunset-over-beach.md b/posts/2012/01/19/winter-sunset-over-beach.md
deleted file mode 100644
index 03ec1660..00000000
--- a/posts/2012/01/19/winter-sunset-over-beach.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/20/reflections-of-a-sunset-beach-style.md b/posts/2012/01/20/reflections-of-a-sunset-beach-style.md
deleted file mode 100644
index 7ca3fbd4..00000000
--- a/posts/2012/01/20/reflections-of-a-sunset-beach-style.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/21/running-at-sunset.md b/posts/2012/01/21/running-at-sunset.md
deleted file mode 100644
index 58e77959..00000000
--- a/posts/2012/01/21/running-at-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/22/moon-venus-sunset-beach.md b/posts/2012/01/22/moon-venus-sunset-beach.md
deleted file mode 100644
index 0fd1f1e1..00000000
--- a/posts/2012/01/22/moon-venus-sunset-beach.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/23/yui-hjk-nm.md b/posts/2012/01/23/yui-hjk-nm.md
deleted file mode 100644
index 5faf0d76..00000000
--- a/posts/2012/01/23/yui-hjk-nm.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/24/hibiscus.md b/posts/2012/01/24/hibiscus.md
deleted file mode 100644
index 6f430578..00000000
--- a/posts/2012/01/24/hibiscus.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/25/yellow-flower.md b/posts/2012/01/25/yellow-flower.md
deleted file mode 100644
index 50b1d63c..00000000
--- a/posts/2012/01/25/yellow-flower.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/26/lots-of-yellow-plus-purple.md b/posts/2012/01/26/lots-of-yellow-plus-purple.md
deleted file mode 100644
index ea3294f8..00000000
--- a/posts/2012/01/26/lots-of-yellow-plus-purple.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/27/rainy-morning.md b/posts/2012/01/27/rainy-morning.md
deleted file mode 100644
index 9fe25928..00000000
--- a/posts/2012/01/27/rainy-morning.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/28/waiting-on-light.md b/posts/2012/01/28/waiting-on-light.md
deleted file mode 100644
index d41a9936..00000000
--- a/posts/2012/01/28/waiting-on-light.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/29/cross-in-the-fog.md b/posts/2012/01/29/cross-in-the-fog.md
deleted file mode 100644
index f048e8d9..00000000
--- a/posts/2012/01/29/cross-in-the-fog.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/30/foggy-field.md b/posts/2012/01/30/foggy-field.md
deleted file mode 100644
index a4715fe0..00000000
--- a/posts/2012/01/30/foggy-field.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/01/31/trees-in-fog.md b/posts/2012/01/31/trees-in-fog.md
deleted file mode 100644
index 61c0b0be..00000000
--- a/posts/2012/01/31/trees-in-fog.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/01/shadow-on-sidewalk.md b/posts/2012/02/01/shadow-on-sidewalk.md
deleted file mode 100644
index d2b1d4bb..00000000
--- a/posts/2012/02/01/shadow-on-sidewalk.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/02/old-and-abandoned.md b/posts/2012/02/02/old-and-abandoned.md
deleted file mode 100644
index b2a08e9e..00000000
--- a/posts/2012/02/02/old-and-abandoned.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/03/fall-colors-in-winter.md b/posts/2012/02/03/fall-colors-in-winter.md
deleted file mode 100644
index c30add3c..00000000
--- a/posts/2012/02/03/fall-colors-in-winter.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/04/sea-gull-124.md b/posts/2012/02/04/sea-gull-124.md
deleted file mode 100644
index b58b46dc..00000000
--- a/posts/2012/02/04/sea-gull-124.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/05/details-of-rotary-engine.md b/posts/2012/02/05/details-of-rotary-engine.md
deleted file mode 100644
index f839f581..00000000
--- a/posts/2012/02/05/details-of-rotary-engine.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/06/flight-of-brown-pelicans-3.md b/posts/2012/02/06/flight-of-brown-pelicans-3.md
deleted file mode 100644
index 3257f3ff..00000000
--- a/posts/2012/02/06/flight-of-brown-pelicans-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/07/bridge-of-the-lexington.md b/posts/2012/02/07/bridge-of-the-lexington.md
deleted file mode 100644
index 14870c10..00000000
--- a/posts/2012/02/07/bridge-of-the-lexington.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/08/beware.md b/posts/2012/02/08/beware.md
deleted file mode 100644
index ac806f32..00000000
--- a/posts/2012/02/08/beware.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/09/corpus-christi-harbor-bridge-at-sunset.md b/posts/2012/02/09/corpus-christi-harbor-bridge-at-sunset.md
deleted file mode 100644
index 76763498..00000000
--- a/posts/2012/02/09/corpus-christi-harbor-bridge-at-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/10/play-on-the-gun.md b/posts/2012/02/10/play-on-the-gun.md
deleted file mode 100644
index 771b1165..00000000
--- a/posts/2012/02/10/play-on-the-gun.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/11/work-think-safely.md b/posts/2012/02/11/work-think-safely.md
deleted file mode 100644
index c62c0edc..00000000
--- a/posts/2012/02/11/work-think-safely.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/12/corpus-christi-harbor-bridge-hdr1.md b/posts/2012/02/12/corpus-christi-harbor-bridge-hdr1.md
deleted file mode 100644
index eb96dfa7..00000000
--- a/posts/2012/02/12/corpus-christi-harbor-bridge-hdr1.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/13/red-tail-takes-flight.md b/posts/2012/02/13/red-tail-takes-flight.md
deleted file mode 100644
index adaee4ab..00000000
--- a/posts/2012/02/13/red-tail-takes-flight.md
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-Just a quick note....this is post \#1600!
diff --git a/posts/2012/02/14/nature-overcomes.md b/posts/2012/02/14/nature-overcomes.md
deleted file mode 100644
index 3a8bf481..00000000
--- a/posts/2012/02/14/nature-overcomes.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/15/time-for-eye-of-ra.md b/posts/2012/02/15/time-for-eye-of-ra.md
deleted file mode 100644
index 3e908b87..00000000
--- a/posts/2012/02/15/time-for-eye-of-ra.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/16/pickup-at-sunset.md b/posts/2012/02/16/pickup-at-sunset.md
deleted file mode 100644
index 616c894b..00000000
--- a/posts/2012/02/16/pickup-at-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/17/sunset-vii.md b/posts/2012/02/17/sunset-vii.md
deleted file mode 100644
index e33003ea..00000000
--- a/posts/2012/02/17/sunset-vii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/18/monster-truck-jump.md b/posts/2012/02/18/monster-truck-jump.md
deleted file mode 100644
index be474fb9..00000000
--- a/posts/2012/02/18/monster-truck-jump.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/19/talk-to-the-hand.md b/posts/2012/02/19/talk-to-the-hand.md
deleted file mode 100644
index 3f6d7547..00000000
--- a/posts/2012/02/19/talk-to-the-hand.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/20/detail-of-wood.md b/posts/2012/02/20/detail-of-wood.md
deleted file mode 100644
index 97c0c0e7..00000000
--- a/posts/2012/02/20/detail-of-wood.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/21/left-toy.md b/posts/2012/02/21/left-toy.md
deleted file mode 100644
index cbe29a47..00000000
--- a/posts/2012/02/21/left-toy.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/26/keylime-blossem.md b/posts/2012/02/26/keylime-blossem.md
deleted file mode 100644
index 36af6029..00000000
--- a/posts/2012/02/26/keylime-blossem.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/27/pear-blossem.md b/posts/2012/02/27/pear-blossem.md
deleted file mode 100644
index c2208a8f..00000000
--- a/posts/2012/02/27/pear-blossem.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/28/lady-bug-close.md b/posts/2012/02/28/lady-bug-close.md
deleted file mode 100644
index 47bd5578..00000000
--- a/posts/2012/02/28/lady-bug-close.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/02/29/ladybug-real-close.md b/posts/2012/02/29/ladybug-real-close.md
deleted file mode 100644
index 482c1fcf..00000000
--- a/posts/2012/02/29/ladybug-real-close.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/01/sunflower-bud.md b/posts/2012/03/01/sunflower-bud.md
deleted file mode 100644
index ca2d2548..00000000
--- a/posts/2012/03/01/sunflower-bud.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/14/cow-in-the-fog-2.md b/posts/2012/03/14/cow-in-the-fog-2.md
deleted file mode 100644
index 3dadab37..00000000
--- a/posts/2012/03/14/cow-in-the-fog-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/15/rose-5.md b/posts/2012/03/15/rose-5.md
deleted file mode 100644
index 02d584af..00000000
--- a/posts/2012/03/15/rose-5.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/16/bashfull-sunflower-2.md b/posts/2012/03/16/bashfull-sunflower-2.md
deleted file mode 100644
index 45f6ad6d..00000000
--- a/posts/2012/03/16/bashfull-sunflower-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/17/sunflower-5.md b/posts/2012/03/17/sunflower-5.md
deleted file mode 100644
index 17bfcef9..00000000
--- a/posts/2012/03/17/sunflower-5.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/18/happy-little-flowers-2.md b/posts/2012/03/18/happy-little-flowers-2.md
deleted file mode 100644
index 2d526814..00000000
--- a/posts/2012/03/18/happy-little-flowers-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/19/touchdown-2.md b/posts/2012/03/19/touchdown-2.md
deleted file mode 100644
index 827c5a04..00000000
--- a/posts/2012/03/19/touchdown-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/20/orange-tile.md b/posts/2012/03/20/orange-tile.md
deleted file mode 100644
index 9ff5f6eb..00000000
--- a/posts/2012/03/20/orange-tile.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/21/brick-wall.md b/posts/2012/03/21/brick-wall.md
deleted file mode 100644
index 08d96258..00000000
--- a/posts/2012/03/21/brick-wall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/22/i-see-you.md b/posts/2012/03/22/i-see-you.md
deleted file mode 100644
index 43b31b34..00000000
--- a/posts/2012/03/22/i-see-you.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/23/good-day-sunshine.md b/posts/2012/03/23/good-day-sunshine.md
deleted file mode 100644
index 351c7856..00000000
--- a/posts/2012/03/23/good-day-sunshine.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/24/flying-sauce-light.md b/posts/2012/03/24/flying-sauce-light.md
deleted file mode 100644
index dd7d0043..00000000
--- a/posts/2012/03/24/flying-sauce-light.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/25/old-and-abandoned-ii.md b/posts/2012/03/25/old-and-abandoned-ii.md
deleted file mode 100644
index 2fdddff7..00000000
--- a/posts/2012/03/25/old-and-abandoned-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/26/corner-market-farm-style.md b/posts/2012/03/26/corner-market-farm-style.md
deleted file mode 100644
index fa4b7744..00000000
--- a/posts/2012/03/26/corner-market-farm-style.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/27/rabit.md b/posts/2012/03/27/rabit.md
deleted file mode 100644
index cc4ef590..00000000
--- a/posts/2012/03/27/rabit.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/28/sitting-pretty-3.md b/posts/2012/03/28/sitting-pretty-3.md
deleted file mode 100644
index 876ac950..00000000
--- a/posts/2012/03/28/sitting-pretty-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/29/good-advice.md b/posts/2012/03/29/good-advice.md
deleted file mode 100644
index 88851117..00000000
--- a/posts/2012/03/29/good-advice.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/30/lady-cat.md b/posts/2012/03/30/lady-cat.md
deleted file mode 100644
index 6c6c7bd9..00000000
--- a/posts/2012/03/30/lady-cat.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/03/31/fast-cat-taking-it-slow.md b/posts/2012/03/31/fast-cat-taking-it-slow.md
deleted file mode 100644
index 485cb38e..00000000
--- a/posts/2012/03/31/fast-cat-taking-it-slow.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/01/flowers-and-water.md b/posts/2012/04/01/flowers-and-water.md
deleted file mode 100644
index e6a9ee02..00000000
--- a/posts/2012/04/01/flowers-and-water.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/02/bw-brick-wall.md b/posts/2012/04/02/bw-brick-wall.md
deleted file mode 100644
index c9059b32..00000000
--- a/posts/2012/04/02/bw-brick-wall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/03/end-of-the-line.md b/posts/2012/04/03/end-of-the-line.md
deleted file mode 100644
index 9b5a863c..00000000
--- a/posts/2012/04/03/end-of-the-line.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/04/puple-flowers.md b/posts/2012/04/04/puple-flowers.md
deleted file mode 100644
index f917aa26..00000000
--- a/posts/2012/04/04/puple-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/05/bluebonnets-2.md b/posts/2012/04/05/bluebonnets-2.md
deleted file mode 100644
index 7be2a5cb..00000000
--- a/posts/2012/04/05/bluebonnets-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/06/wall-light.md b/posts/2012/04/06/wall-light.md
deleted file mode 100644
index 9ffb4f09..00000000
--- a/posts/2012/04/06/wall-light.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/07/blue-truck-on-blue-trailer.md b/posts/2012/04/07/blue-truck-on-blue-trailer.md
deleted file mode 100644
index 4c357f34..00000000
--- a/posts/2012/04/07/blue-truck-on-blue-trailer.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/08/bee.md b/posts/2012/04/08/bee.md
deleted file mode 100644
index f8d0349d..00000000
--- a/posts/2012/04/08/bee.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/09/tent-in-sunrise.md b/posts/2012/04/09/tent-in-sunrise.md
deleted file mode 100644
index 9c5fd1c4..00000000
--- a/posts/2012/04/09/tent-in-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/10/faux-castle-wall.md b/posts/2012/04/10/faux-castle-wall.md
deleted file mode 100644
index b18c5e7a..00000000
--- a/posts/2012/04/10/faux-castle-wall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/11/hubcap-reflection.md b/posts/2012/04/11/hubcap-reflection.md
deleted file mode 100644
index 4dc4dd53..00000000
--- a/posts/2012/04/11/hubcap-reflection.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/12/looking-where-i-have-been.md b/posts/2012/04/12/looking-where-i-have-been.md
deleted file mode 100644
index a3a15a88..00000000
--- a/posts/2012/04/12/looking-where-i-have-been.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/13/cows-in-fog-iii.md b/posts/2012/04/13/cows-in-fog-iii.md
deleted file mode 100644
index 2e27424b..00000000
--- a/posts/2012/04/13/cows-in-fog-iii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/14/wispy-clouds-iv.md b/posts/2012/04/14/wispy-clouds-iv.md
deleted file mode 100644
index 2c0f6a32..00000000
--- a/posts/2012/04/14/wispy-clouds-iv.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/15/superheros-vs-dragon.md b/posts/2012/04/15/superheros-vs-dragon.md
deleted file mode 100644
index 533dd1a8..00000000
--- a/posts/2012/04/15/superheros-vs-dragon.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/16/ghost-android.md b/posts/2012/04/16/ghost-android.md
deleted file mode 100644
index e3b2b63f..00000000
--- a/posts/2012/04/16/ghost-android.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/17/fun-with-filters.md b/posts/2012/04/17/fun-with-filters.md
deleted file mode 100644
index c5078302..00000000
--- a/posts/2012/04/17/fun-with-filters.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/18/i-see-you-looking.md b/posts/2012/04/18/i-see-you-looking.md
deleted file mode 100644
index 3669ca39..00000000
--- a/posts/2012/04/18/i-see-you-looking.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/19/wood-deck.md b/posts/2012/04/19/wood-deck.md
deleted file mode 100644
index c101d55c..00000000
--- a/posts/2012/04/19/wood-deck.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/20/light-in-the-sky.md b/posts/2012/04/20/light-in-the-sky.md
deleted file mode 100644
index 179d7cc9..00000000
--- a/posts/2012/04/20/light-in-the-sky.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/21/sunflowers-3.md b/posts/2012/04/21/sunflowers-3.md
deleted file mode 100644
index d362f2f8..00000000
--- a/posts/2012/04/21/sunflowers-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/22/squirrel.md b/posts/2012/04/22/squirrel.md
deleted file mode 100644
index f7fb20c3..00000000
--- a/posts/2012/04/22/squirrel.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/23/flowers-on-the-side-of-the-road.md b/posts/2012/04/23/flowers-on-the-side-of-the-road.md
deleted file mode 100644
index 4ff007b9..00000000
--- a/posts/2012/04/23/flowers-on-the-side-of-the-road.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/24/san-jacinto-monument.md b/posts/2012/04/24/san-jacinto-monument.md
deleted file mode 100644
index 8c51b8e6..00000000
--- a/posts/2012/04/24/san-jacinto-monument.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/25/big-gus-of-the-uss-texas-looking-at-you.md b/posts/2012/04/25/big-gus-of-the-uss-texas-looking-at-you.md
deleted file mode 100644
index 88c2ddf0..00000000
--- a/posts/2012/04/25/big-gus-of-the-uss-texas-looking-at-you.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/26/big-guns-of-the-uss-texas-looking-back.md b/posts/2012/04/26/big-guns-of-the-uss-texas-looking-back.md
deleted file mode 100644
index d567ae97..00000000
--- a/posts/2012/04/26/big-guns-of-the-uss-texas-looking-back.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/28/standing.md b/posts/2012/04/28/standing.md
deleted file mode 100644
index 210dbfe9..00000000
--- a/posts/2012/04/28/standing.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/29/fog-on-the-field.md b/posts/2012/04/29/fog-on-the-field.md
deleted file mode 100644
index d8711301..00000000
--- a/posts/2012/04/29/fog-on-the-field.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/04/30/foggy-sunrise.md b/posts/2012/04/30/foggy-sunrise.md
deleted file mode 100644
index 5bb0c0da..00000000
--- a/posts/2012/04/30/foggy-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/01/old-wall-tile.md b/posts/2012/05/01/old-wall-tile.md
deleted file mode 100644
index 8277872e..00000000
--- a/posts/2012/05/01/old-wall-tile.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/02/trail-of-dreams.md b/posts/2012/05/02/trail-of-dreams.md
deleted file mode 100644
index bb17e617..00000000
--- a/posts/2012/05/02/trail-of-dreams.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/03/pikachu-pinewood-dirby-car.md b/posts/2012/05/03/pikachu-pinewood-dirby-car.md
deleted file mode 100644
index 6e9001d7..00000000
--- a/posts/2012/05/03/pikachu-pinewood-dirby-car.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/04/perry-the-platypus-car.md b/posts/2012/05/04/perry-the-platypus-car.md
deleted file mode 100644
index dfbf74e0..00000000
--- a/posts/2012/05/04/perry-the-platypus-car.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/05/going-for-gold.md b/posts/2012/05/05/going-for-gold.md
deleted file mode 100644
index 017c85e5..00000000
--- a/posts/2012/05/05/going-for-gold.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/06/start-of-the-race.md b/posts/2012/05/06/start-of-the-race.md
deleted file mode 100644
index be043aa0..00000000
--- a/posts/2012/05/06/start-of-the-race.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/07/field-of-flowers-2.md b/posts/2012/05/07/field-of-flowers-2.md
deleted file mode 100644
index 89278599..00000000
--- a/posts/2012/05/07/field-of-flowers-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/08/road-to-somewhere.md b/posts/2012/05/08/road-to-somewhere.md
deleted file mode 100644
index 2636c6b1..00000000
--- a/posts/2012/05/08/road-to-somewhere.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/09/barb-wire-and-flowers.md b/posts/2012/05/09/barb-wire-and-flowers.md
deleted file mode 100644
index df08e7df..00000000
--- a/posts/2012/05/09/barb-wire-and-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/10/wild-rose.md b/posts/2012/05/10/wild-rose.md
deleted file mode 100644
index aefaa757..00000000
--- a/posts/2012/05/10/wild-rose.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/11/old-and-abandoned-iii.md b/posts/2012/05/11/old-and-abandoned-iii.md
deleted file mode 100644
index 05f840db..00000000
--- a/posts/2012/05/11/old-and-abandoned-iii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/12/a-river-blanco-runs-through-it.md b/posts/2012/05/12/a-river-blanco-runs-through-it.md
deleted file mode 100644
index 01b25484..00000000
--- a/posts/2012/05/12/a-river-blanco-runs-through-it.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- Runs Through It")
diff --git a/posts/2012/05/13/rolling-on-down-the-river-blanco.md b/posts/2012/05/13/rolling-on-down-the-river-blanco.md
deleted file mode 100644
index edf3c018..00000000
--- a/posts/2012/05/13/rolling-on-down-the-river-blanco.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-")
diff --git a/posts/2012/05/14/thistle.md b/posts/2012/05/14/thistle.md
deleted file mode 100644
index 5021f844..00000000
--- a/posts/2012/05/14/thistle.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/15/spring-flowers.md b/posts/2012/05/15/spring-flowers.md
deleted file mode 100644
index c76219ca..00000000
--- a/posts/2012/05/15/spring-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/16/boat.md b/posts/2012/05/16/boat.md
deleted file mode 100644
index 78c1d0a4..00000000
--- a/posts/2012/05/16/boat.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/17/sitting-pretty-4.md b/posts/2012/05/17/sitting-pretty-4.md
deleted file mode 100644
index 94dd13f4..00000000
--- a/posts/2012/05/17/sitting-pretty-4.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/18/river-trees.md b/posts/2012/05/18/river-trees.md
deleted file mode 100644
index b66068c0..00000000
--- a/posts/2012/05/18/river-trees.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/19/fairy-house-3.md b/posts/2012/05/19/fairy-house-3.md
deleted file mode 100644
index cd5f94a3..00000000
--- a/posts/2012/05/19/fairy-house-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/20/fairy-in-forest.md b/posts/2012/05/20/fairy-in-forest.md
deleted file mode 100644
index f37b35b5..00000000
--- a/posts/2012/05/20/fairy-in-forest.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/21/boy-in-yellow-shrimp-plants.md b/posts/2012/05/21/boy-in-yellow-shrimp-plants.md
deleted file mode 100644
index 032024da..00000000
--- a/posts/2012/05/21/boy-in-yellow-shrimp-plants.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/22/budda-in-plants.md b/posts/2012/05/22/budda-in-plants.md
deleted file mode 100644
index ccd6ca30..00000000
--- a/posts/2012/05/22/budda-in-plants.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/23/asiatic-lily-pink-white.md b/posts/2012/05/23/asiatic-lily-pink-white.md
deleted file mode 100644
index 78e342e1..00000000
--- a/posts/2012/05/23/asiatic-lily-pink-white.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/24/painted-frog.md b/posts/2012/05/24/painted-frog.md
deleted file mode 100644
index 81ce46fb..00000000
--- a/posts/2012/05/24/painted-frog.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/25/cactus-bud.md b/posts/2012/05/25/cactus-bud.md
deleted file mode 100644
index 4fc94285..00000000
--- a/posts/2012/05/25/cactus-bud.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/26/color-explosion.md b/posts/2012/05/26/color-explosion.md
deleted file mode 100644
index bffc3879..00000000
--- a/posts/2012/05/26/color-explosion.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/27/penta-apple-blossem.md b/posts/2012/05/27/penta-apple-blossem.md
deleted file mode 100644
index 0848699b..00000000
--- a/posts/2012/05/27/penta-apple-blossem.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/28/orange-and-red-lantana.md b/posts/2012/05/28/orange-and-red-lantana.md
deleted file mode 100644
index 7e1f901d..00000000
--- a/posts/2012/05/28/orange-and-red-lantana.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/29/purple-and-white-lantana.md b/posts/2012/05/29/purple-and-white-lantana.md
deleted file mode 100644
index b35ea43b..00000000
--- a/posts/2012/05/29/purple-and-white-lantana.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/30/tawny-emperorbutterfly.md b/posts/2012/05/30/tawny-emperorbutterfly.md
deleted file mode 100644
index 72ef318f..00000000
--- a/posts/2012/05/30/tawny-emperorbutterfly.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/05/31/question-mark-butterfly.md b/posts/2012/05/31/question-mark-butterfly.md
deleted file mode 100644
index 45a3a57b..00000000
--- a/posts/2012/05/31/question-mark-butterfly.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/01/purple-lily-v.md b/posts/2012/06/01/purple-lily-v.md
deleted file mode 100644
index c3691b22..00000000
--- a/posts/2012/06/01/purple-lily-v.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/02/purple-lily-vi.md b/posts/2012/06/02/purple-lily-vi.md
deleted file mode 100644
index 8049bd51..00000000
--- a/posts/2012/06/02/purple-lily-vi.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/03/rose-bud-2.md b/posts/2012/06/03/rose-bud-2.md
deleted file mode 100644
index bc8ae705..00000000
--- a/posts/2012/06/03/rose-bud-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/04/triangles.md b/posts/2012/06/04/triangles.md
deleted file mode 100644
index da35578e..00000000
--- a/posts/2012/06/04/triangles.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/05/barbwire.md b/posts/2012/06/05/barbwire.md
deleted file mode 100644
index cd5ade60..00000000
--- a/posts/2012/06/05/barbwire.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/06/coneflower-in-field-3.md b/posts/2012/06/06/coneflower-in-field-3.md
deleted file mode 100644
index 0f80aad5..00000000
--- a/posts/2012/06/06/coneflower-in-field-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/07/detail-of-wheel-3.md b/posts/2012/06/07/detail-of-wheel-3.md
deleted file mode 100644
index 844aaf86..00000000
--- a/posts/2012/06/07/detail-of-wheel-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/08/lunch-time-3.md b/posts/2012/06/08/lunch-time-3.md
deleted file mode 100644
index ef84b088..00000000
--- a/posts/2012/06/08/lunch-time-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/09/taco-truck-stand-3.md b/posts/2012/06/09/taco-truck-stand-3.md
deleted file mode 100644
index 02218944..00000000
--- a/posts/2012/06/09/taco-truck-stand-3.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/10/the-southwest.md b/posts/2012/06/10/the-southwest.md
deleted file mode 100644
index 00b5ca31..00000000
--- a/posts/2012/06/10/the-southwest.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/11/the-road-to-vegas.md b/posts/2012/06/11/the-road-to-vegas.md
deleted file mode 100644
index 7350ffdc..00000000
--- a/posts/2012/06/11/the-road-to-vegas.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/12/near-perfect-coffee.md b/posts/2012/06/12/near-perfect-coffee.md
deleted file mode 100644
index d336f3ae..00000000
--- a/posts/2012/06/12/near-perfect-coffee.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/13/little-church-of-the-west-wedding-chapel.md b/posts/2012/06/13/little-church-of-the-west-wedding-chapel.md
deleted file mode 100644
index 8e309a64..00000000
--- a/posts/2012/06/13/little-church-of-the-west-wedding-chapel.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/14/balcony-of-dreams.md b/posts/2012/06/14/balcony-of-dreams.md
deleted file mode 100644
index 559d6050..00000000
--- a/posts/2012/06/14/balcony-of-dreams.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/15/vegas-does-paris.md b/posts/2012/06/15/vegas-does-paris.md
deleted file mode 100644
index 2eb4e200..00000000
--- a/posts/2012/06/15/vegas-does-paris.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/16/the-strip-in-the-day.md b/posts/2012/06/16/the-strip-in-the-day.md
deleted file mode 100644
index da72c0d0..00000000
--- a/posts/2012/06/16/the-strip-in-the-day.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/17/hotel-paris.md b/posts/2012/06/17/hotel-paris.md
deleted file mode 100644
index 760683b6..00000000
--- a/posts/2012/06/17/hotel-paris.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/18/water-fountain.md b/posts/2012/06/18/water-fountain.md
deleted file mode 100644
index 10d7641c..00000000
--- a/posts/2012/06/18/water-fountain.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/19/lots-of-cups.md b/posts/2012/06/19/lots-of-cups.md
deleted file mode 100644
index 3112feef..00000000
--- a/posts/2012/06/19/lots-of-cups.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/20/vegas-corrupts-the-purest.md b/posts/2012/06/20/vegas-corrupts-the-purest.md
deleted file mode 100644
index 8dc9a470..00000000
--- a/posts/2012/06/20/vegas-corrupts-the-purest.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/21/sign-of-the-times.md b/posts/2012/06/21/sign-of-the-times.md
deleted file mode 100644
index 2d4c71b4..00000000
--- a/posts/2012/06/21/sign-of-the-times.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/22/water-bottle.md b/posts/2012/06/22/water-bottle.md
deleted file mode 100644
index 80facf4c..00000000
--- a/posts/2012/06/22/water-bottle.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/23/cloudy-sunrise.md b/posts/2012/06/23/cloudy-sunrise.md
deleted file mode 100644
index f3e340ed..00000000
--- a/posts/2012/06/23/cloudy-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/24/power-cows.md b/posts/2012/06/24/power-cows.md
deleted file mode 100644
index a96bd3f5..00000000
--- a/posts/2012/06/24/power-cows.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/25/day-1365-clouds.md b/posts/2012/06/25/day-1365-clouds.md
deleted file mode 100644
index c4388806..00000000
--- a/posts/2012/06/25/day-1365-clouds.md
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-Restarted the Project 365....let's see where it goes...visit my progress
-at [P365](http://p365.donaldharper.com)
diff --git a/posts/2012/06/26/light-mount.md b/posts/2012/06/26/light-mount.md
deleted file mode 100644
index 868e57ba..00000000
--- a/posts/2012/06/26/light-mount.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/27/details-of-tile-work.md b/posts/2012/06/27/details-of-tile-work.md
deleted file mode 100644
index 5860f578..00000000
--- a/posts/2012/06/27/details-of-tile-work.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/28/window-in-red-room.md b/posts/2012/06/28/window-in-red-room.md
deleted file mode 100644
index 9085ea01..00000000
--- a/posts/2012/06/28/window-in-red-room.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/29/details-of-a-wood-knot.md b/posts/2012/06/29/details-of-a-wood-knot.md
deleted file mode 100644
index d91e139b..00000000
--- a/posts/2012/06/29/details-of-a-wood-knot.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/06/30/wood-beam.md b/posts/2012/06/30/wood-beam.md
deleted file mode 100644
index 599b7e3a..00000000
--- a/posts/2012/06/30/wood-beam.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/01/storm-clouds-on-the-horizon.md b/posts/2012/07/01/storm-clouds-on-the-horizon.md
deleted file mode 100644
index 644e0097..00000000
--- a/posts/2012/07/01/storm-clouds-on-the-horizon.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/02/end-of-the-line-2.md b/posts/2012/07/02/end-of-the-line-2.md
deleted file mode 100644
index ca3c0d98..00000000
--- a/posts/2012/07/02/end-of-the-line-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/03/dragonfly-2.md b/posts/2012/07/03/dragonfly-2.md
deleted file mode 100644
index 76e9888e..00000000
--- a/posts/2012/07/03/dragonfly-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/04/sunday-sunset.md b/posts/2012/07/04/sunday-sunset.md
deleted file mode 100644
index 9722d72b..00000000
--- a/posts/2012/07/04/sunday-sunset.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/05/horns-see-you.md b/posts/2012/07/05/horns-see-you.md
deleted file mode 100644
index 7461ccf4..00000000
--- a/posts/2012/07/05/horns-see-you.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/06/sunflower-in-sunrise.md b/posts/2012/07/06/sunflower-in-sunrise.md
deleted file mode 100644
index 72c9df75..00000000
--- a/posts/2012/07/06/sunflower-in-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/07/detail-of-a-fairlane.md b/posts/2012/07/07/detail-of-a-fairlane.md
deleted file mode 100644
index 1ce472cb..00000000
--- a/posts/2012/07/07/detail-of-a-fairlane.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/10/summer-swim.md b/posts/2012/07/10/summer-swim.md
deleted file mode 100644
index 5be0b95f..00000000
--- a/posts/2012/07/10/summer-swim.md
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-Given impending family news, I may miss a day or three here and there
-over the next few months...it's all good news, though...
diff --git a/posts/2012/07/11/globe-of-flowers.md b/posts/2012/07/11/globe-of-flowers.md
deleted file mode 100644
index 5bedbca5..00000000
--- a/posts/2012/07/11/globe-of-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/12/power-sunrise-ii.md b/posts/2012/07/12/power-sunrise-ii.md
deleted file mode 100644
index f74054d1..00000000
--- a/posts/2012/07/12/power-sunrise-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/13/olympus-digital-camera.md b/posts/2012/07/13/olympus-digital-camera.md
deleted file mode 100644
index 6ec7edfb..00000000
--- a/posts/2012/07/13/olympus-digital-camera.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/14/a-dangerous-view.md b/posts/2012/07/14/a-dangerous-view.md
deleted file mode 100644
index 9b8b6548..00000000
--- a/posts/2012/07/14/a-dangerous-view.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/15/sun-flair-over-abandoned.md b/posts/2012/07/15/sun-flair-over-abandoned.md
deleted file mode 100644
index 27babbe8..00000000
--- a/posts/2012/07/15/sun-flair-over-abandoned.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/16/view-from-above-2.md b/posts/2012/07/16/view-from-above-2.md
deleted file mode 100644
index 5709acdf..00000000
--- a/posts/2012/07/16/view-from-above-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/17/storm-clouds-coming-in.md b/posts/2012/07/17/storm-clouds-coming-in.md
deleted file mode 100644
index 00ed1ea2..00000000
--- a/posts/2012/07/17/storm-clouds-coming-in.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/18/wet-commute.md b/posts/2012/07/18/wet-commute.md
deleted file mode 100644
index c2c94f3e..00000000
--- a/posts/2012/07/18/wet-commute.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/19/male-shishi.md b/posts/2012/07/19/male-shishi.md
deleted file mode 100644
index 0b3e28ae..00000000
--- a/posts/2012/07/19/male-shishi.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/20/mother-shishi.md b/posts/2012/07/20/mother-shishi.md
deleted file mode 100644
index 836fe66d..00000000
--- a/posts/2012/07/20/mother-shishi.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/21/tickle-the-ivory.md b/posts/2012/07/21/tickle-the-ivory.md
deleted file mode 100644
index e24f92dd..00000000
--- a/posts/2012/07/21/tickle-the-ivory.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/22/tickle-the-ivory-line-drawn.md b/posts/2012/07/22/tickle-the-ivory-line-drawn.md
deleted file mode 100644
index 2165dd94..00000000
--- a/posts/2012/07/22/tickle-the-ivory-line-drawn.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/23/kitty-dreaming.md b/posts/2012/07/23/kitty-dreaming.md
deleted file mode 100644
index 67e739b0..00000000
--- a/posts/2012/07/23/kitty-dreaming.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/24/resing-place-in-the-morning.md b/posts/2012/07/24/resing-place-in-the-morning.md
deleted file mode 100644
index c037f315..00000000
--- a/posts/2012/07/24/resing-place-in-the-morning.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/25/morning-path.md b/posts/2012/07/25/morning-path.md
deleted file mode 100644
index 30921daf..00000000
--- a/posts/2012/07/25/morning-path.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/26/take-me-to-your-leader.md b/posts/2012/07/26/take-me-to-your-leader.md
deleted file mode 100644
index c5b66f9b..00000000
--- a/posts/2012/07/26/take-me-to-your-leader.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2012/07/27/water-lizzard.md b/posts/2012/07/27/water-lizzard.md
deleted file mode 100644
index b3abbd47..00000000
--- a/posts/2012/07/27/water-lizzard.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/07/08/restart-not-reboot.md b/posts/2014/07/08/restart-not-reboot.md
deleted file mode 100644
index a405709e..00000000
--- a/posts/2014/07/08/restart-not-reboot.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-Sorry about stopping this, but life is life.
diff --git a/posts/2014/09/18/quiet-time.md b/posts/2014/09/18/quiet-time.md
deleted file mode 100644
index a1a74638..00000000
--- a/posts/2014/09/18/quiet-time.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/19/power.md b/posts/2014/09/19/power.md
deleted file mode 100644
index 513cd480..00000000
--- a/posts/2014/09/19/power.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/20/moon-over-tower.md b/posts/2014/09/20/moon-over-tower.md
deleted file mode 100644
index b45d8862..00000000
--- a/posts/2014/09/20/moon-over-tower.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/21/reflections.md b/posts/2014/09/21/reflections.md
deleted file mode 100644
index 68f4f435..00000000
--- a/posts/2014/09/21/reflections.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/22/repeat.md b/posts/2014/09/22/repeat.md
deleted file mode 100644
index ab224194..00000000
--- a/posts/2014/09/22/repeat.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/23/red-ninja.md b/posts/2014/09/23/red-ninja.md
deleted file mode 100644
index eb805bb6..00000000
--- a/posts/2014/09/23/red-ninja.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/24/phone-booth.md b/posts/2014/09/24/phone-booth.md
deleted file mode 100644
index 6d2aaf86..00000000
--- a/posts/2014/09/24/phone-booth.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/25/selfie.md b/posts/2014/09/25/selfie.md
deleted file mode 100644
index b9b5bf35..00000000
--- a/posts/2014/09/25/selfie.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/26/st-pauls.md b/posts/2014/09/26/st-pauls.md
deleted file mode 100644
index a813c8c6..00000000
--- a/posts/2014/09/26/st-pauls.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/27/st-pauls-collumn.md b/posts/2014/09/27/st-pauls-collumn.md
deleted file mode 100644
index a4ac212b..00000000
--- a/posts/2014/09/27/st-pauls-collumn.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/28/mayor-window.md b/posts/2014/09/28/mayor-window.md
deleted file mode 100644
index 6e31f6a7..00000000
--- a/posts/2014/09/28/mayor-window.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/29/guild-hall.md b/posts/2014/09/29/guild-hall.md
deleted file mode 100644
index ca4a44ff..00000000
--- a/posts/2014/09/29/guild-hall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/09/30/head.md b/posts/2014/09/30/head.md
deleted file mode 100644
index 9f0d5a80..00000000
--- a/posts/2014/09/30/head.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/01/who-needs-a-head.md b/posts/2014/10/01/who-needs-a-head.md
deleted file mode 100644
index f8218243..00000000
--- a/posts/2014/10/01/who-needs-a-head.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/02/griff1n.md b/posts/2014/10/02/griff1n.md
deleted file mode 100644
index c7bc8761..00000000
--- a/posts/2014/10/02/griff1n.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/03/empty.md b/posts/2014/10/03/empty.md
deleted file mode 100644
index 44dbecb6..00000000
--- a/posts/2014/10/03/empty.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/04/wall.md b/posts/2014/10/04/wall.md
deleted file mode 100644
index e0193f33..00000000
--- a/posts/2014/10/04/wall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/05/oil.md b/posts/2014/10/05/oil.md
deleted file mode 100644
index 023892e1..00000000
--- a/posts/2014/10/05/oil.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/06/double-rainbow.md b/posts/2014/10/06/double-rainbow.md
deleted file mode 100644
index fff3d560..00000000
--- a/posts/2014/10/06/double-rainbow.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/07/ninja-hide-in-plain-sight.md b/posts/2014/10/07/ninja-hide-in-plain-sight.md
deleted file mode 100644
index e7216a69..00000000
--- a/posts/2014/10/07/ninja-hide-in-plain-sight.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/08/morning-drive.md b/posts/2014/10/08/morning-drive.md
deleted file mode 100644
index f18fb5a5..00000000
--- a/posts/2014/10/08/morning-drive.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/09/wall-2.md b/posts/2014/10/09/wall-2.md
deleted file mode 100644
index 413ace6b..00000000
--- a/posts/2014/10/09/wall-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/10/pink-sunrise.md b/posts/2014/10/10/pink-sunrise.md
deleted file mode 100644
index 3b306b33..00000000
--- a/posts/2014/10/10/pink-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/11/double-rainbow-2.md b/posts/2014/10/11/double-rainbow-2.md
deleted file mode 100644
index 1c7d2340..00000000
--- a/posts/2014/10/11/double-rainbow-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/12/clouds-over-truck.md b/posts/2014/10/12/clouds-over-truck.md
deleted file mode 100644
index ddfe687a..00000000
--- a/posts/2014/10/12/clouds-over-truck.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/13/rain-on-umbrella.md b/posts/2014/10/13/rain-on-umbrella.md
deleted file mode 100644
index dcc3146a..00000000
--- a/posts/2014/10/13/rain-on-umbrella.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/14/powerlines-in-the-morning.md b/posts/2014/10/14/powerlines-in-the-morning.md
deleted file mode 100644
index d1e4b25c..00000000
--- a/posts/2014/10/14/powerlines-in-the-morning.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/15/white-ninja-in-tree.md b/posts/2014/10/15/white-ninja-in-tree.md
deleted file mode 100644
index b59ca37b..00000000
--- a/posts/2014/10/15/white-ninja-in-tree.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/16/ninjas-hate-devil-duck-in-trees.md b/posts/2014/10/16/ninjas-hate-devil-duck-in-trees.md
deleted file mode 100644
index e797378e..00000000
--- a/posts/2014/10/16/ninjas-hate-devil-duck-in-trees.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/17/ninja-guards-fun.md b/posts/2014/10/17/ninja-guards-fun.md
deleted file mode 100644
index dbbb1489..00000000
--- a/posts/2014/10/17/ninja-guards-fun.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/18/mr-duck-ready-to-slide.md b/posts/2014/10/18/mr-duck-ready-to-slide.md
deleted file mode 100644
index 0ea0b377..00000000
--- a/posts/2014/10/18/mr-duck-ready-to-slide.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/19/shadows-of-the-game.md b/posts/2014/10/19/shadows-of-the-game.md
deleted file mode 100644
index 8b572902..00000000
--- a/posts/2014/10/19/shadows-of-the-game.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/20/lego-town-i.md b/posts/2014/10/20/lego-town-i.md
deleted file mode 100644
index 36df7b55..00000000
--- a/posts/2014/10/20/lego-town-i.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/21/lego-town-ii.md b/posts/2014/10/21/lego-town-ii.md
deleted file mode 100644
index 86bbc5fb..00000000
--- a/posts/2014/10/21/lego-town-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/22/defend-fun.md b/posts/2014/10/22/defend-fun.md
deleted file mode 100644
index bafcfc03..00000000
--- a/posts/2014/10/22/defend-fun.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/23/repeating-swings-revisited.md b/posts/2014/10/23/repeating-swings-revisited.md
deleted file mode 100644
index b5846889..00000000
--- a/posts/2014/10/23/repeating-swings-revisited.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/24/holely-rusted-metal.md b/posts/2014/10/24/holely-rusted-metal.md
deleted file mode 100644
index 1887c8cf..00000000
--- a/posts/2014/10/24/holely-rusted-metal.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/25/ninjas-waiting-on-lunchi.md b/posts/2014/10/25/ninjas-waiting-on-lunchi.md
deleted file mode 100644
index d400671c..00000000
--- a/posts/2014/10/25/ninjas-waiting-on-lunchi.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/26/mr-duck.md b/posts/2014/10/26/mr-duck.md
deleted file mode 100644
index 10d20f2a..00000000
--- a/posts/2014/10/26/mr-duck.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/27/mr-duck-ii.md b/posts/2014/10/27/mr-duck-ii.md
deleted file mode 100644
index 7d1a4ade..00000000
--- a/posts/2014/10/27/mr-duck-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/28/red-ninja-2.md b/posts/2014/10/28/red-ninja-2.md
deleted file mode 100644
index 9e4b1b2d..00000000
--- a/posts/2014/10/28/red-ninja-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/29/orange-ninja-and-friend.md b/posts/2014/10/29/orange-ninja-and-friend.md
deleted file mode 100644
index 3eada834..00000000
--- a/posts/2014/10/29/orange-ninja-and-friend.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/30/it-ninjas.md b/posts/2014/10/30/it-ninjas.md
deleted file mode 100644
index b1419cd7..00000000
--- a/posts/2014/10/30/it-ninjas.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/10/31/pumpkins-i.md b/posts/2014/10/31/pumpkins-i.md
deleted file mode 100644
index 6ee9d4ca..00000000
--- a/posts/2014/10/31/pumpkins-i.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/01/pumpkins-ii.md b/posts/2014/11/01/pumpkins-ii.md
deleted file mode 100644
index 0403f99f..00000000
--- a/posts/2014/11/01/pumpkins-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/02/hey-2.md b/posts/2014/11/02/hey-2.md
deleted file mode 100644
index f8face12..00000000
--- a/posts/2014/11/02/hey-2.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/03/ninja-planning.md b/posts/2014/11/03/ninja-planning.md
deleted file mode 100644
index 828ccf31..00000000
--- a/posts/2014/11/03/ninja-planning.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/04/yellow-ninja-hanging-around.md b/posts/2014/11/04/yellow-ninja-hanging-around.md
deleted file mode 100644
index debe1c2a..00000000
--- a/posts/2014/11/04/yellow-ninja-hanging-around.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/05/ninja-glamour-shot.md b/posts/2014/11/05/ninja-glamour-shot.md
deleted file mode 100644
index d86665d3..00000000
--- a/posts/2014/11/05/ninja-glamour-shot.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/06/green-ninja-glamour-shot.md b/posts/2014/11/06/green-ninja-glamour-shot.md
deleted file mode 100644
index dbc0a34e..00000000
--- a/posts/2014/11/06/green-ninja-glamour-shot.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/07/brown-ninja-glamour-shot.md b/posts/2014/11/07/brown-ninja-glamour-shot.md
deleted file mode 100644
index bad74c57..00000000
--- a/posts/2014/11/07/brown-ninja-glamour-shot.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/08/yellow-ninja-glamour-shot.md b/posts/2014/11/08/yellow-ninja-glamour-shot.md
deleted file mode 100644
index 5600213a..00000000
--- a/posts/2014/11/08/yellow-ninja-glamour-shot.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/09/black-ninja-glamour-shot.md b/posts/2014/11/09/black-ninja-glamour-shot.md
deleted file mode 100644
index 83bb3e11..00000000
--- a/posts/2014/11/09/black-ninja-glamour-shot.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/10/blue-ninja-glamour-shot.md b/posts/2014/11/10/blue-ninja-glamour-shot.md
deleted file mode 100644
index 62a816c7..00000000
--- a/posts/2014/11/10/blue-ninja-glamour-shot.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/11/white-ninja-glamour-shot.md b/posts/2014/11/11/white-ninja-glamour-shot.md
deleted file mode 100644
index af1e71ff..00000000
--- a/posts/2014/11/11/white-ninja-glamour-shot.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/12/white-ninja-in-white-flowers.md b/posts/2014/11/12/white-ninja-in-white-flowers.md
deleted file mode 100644
index d6d00f57..00000000
--- a/posts/2014/11/12/white-ninja-in-white-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/13/white-ninja-defends-stream.md b/posts/2014/11/13/white-ninja-defends-stream.md
deleted file mode 100644
index d3317439..00000000
--- a/posts/2014/11/13/white-ninja-defends-stream.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/14/yellow-ninja-an-flowers.md b/posts/2014/11/14/yellow-ninja-an-flowers.md
deleted file mode 100644
index 20b3445a..00000000
--- a/posts/2014/11/14/yellow-ninja-an-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/15/white-ninja-hids.md b/posts/2014/11/15/white-ninja-hids.md
deleted file mode 100644
index 7f7cb272..00000000
--- a/posts/2014/11/15/white-ninja-hids.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/16/yellow-ninja-and-friend.md b/posts/2014/11/16/yellow-ninja-and-friend.md
deleted file mode 100644
index 391581a1..00000000
--- a/posts/2014/11/16/yellow-ninja-and-friend.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/17/flowers.md b/posts/2014/11/17/flowers.md
deleted file mode 100644
index 08a793d3..00000000
--- a/posts/2014/11/17/flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/18/ninjas-hidding-in-flowers.md b/posts/2014/11/18/ninjas-hidding-in-flowers.md
deleted file mode 100644
index 0d01a801..00000000
--- a/posts/2014/11/18/ninjas-hidding-in-flowers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/19/yellow-ninja-ii.md b/posts/2014/11/19/yellow-ninja-ii.md
deleted file mode 100644
index 4d369a0e..00000000
--- a/posts/2014/11/19/yellow-ninja-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/20/dino.md b/posts/2014/11/20/dino.md
deleted file mode 100644
index 08c44907..00000000
--- a/posts/2014/11/20/dino.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/21/wet-underpass.md b/posts/2014/11/21/wet-underpass.md
deleted file mode 100644
index 3b66150e..00000000
--- a/posts/2014/11/21/wet-underpass.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/22/icecream.md b/posts/2014/11/22/icecream.md
deleted file mode 100644
index 7e6da0de..00000000
--- a/posts/2014/11/22/icecream.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/23/brush-in-sunrise.md b/posts/2014/11/23/brush-in-sunrise.md
deleted file mode 100644
index 63a003da..00000000
--- a/posts/2014/11/23/brush-in-sunrise.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/23/wings-to-china.md b/posts/2014/11/23/wings-to-china.md
deleted file mode 100644
index 1676a6bb..00000000
--- a/posts/2014/11/23/wings-to-china.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/24/details-of-door-knobs.md b/posts/2014/11/24/details-of-door-knobs.md
deleted file mode 100644
index caefb7d8..00000000
--- a/posts/2014/11/24/details-of-door-knobs.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/24/golden-dragons-on-roof.md b/posts/2014/11/24/golden-dragons-on-roof.md
deleted file mode 100644
index 3320fc46..00000000
--- a/posts/2014/11/24/golden-dragons-on-roof.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/25/new-years-lanterns.md b/posts/2014/11/25/new-years-lanterns.md
deleted file mode 100644
index 097040f4..00000000
--- a/posts/2014/11/25/new-years-lanterns.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/26/dragon-on-door-detail-i.md b/posts/2014/11/26/dragon-on-door-detail-i.md
deleted file mode 100644
index 7251c8d3..00000000
--- a/posts/2014/11/26/dragon-on-door-detail-i.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/26/great-wall.md b/posts/2014/11/26/great-wall.md
deleted file mode 100644
index acd9591d..00000000
--- a/posts/2014/11/26/great-wall.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/27/dragon-on-door-detail-ii.md b/posts/2014/11/27/dragon-on-door-detail-ii.md
deleted file mode 100644
index a580d282..00000000
--- a/posts/2014/11/27/dragon-on-door-detail-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/28/bridge-girder-detail.md b/posts/2014/11/28/bridge-girder-detail.md
deleted file mode 100644
index 74b46c47..00000000
--- a/posts/2014/11/28/bridge-girder-detail.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/29/benches-in-forbidden-city.md b/posts/2014/11/29/benches-in-forbidden-city.md
deleted file mode 100644
index d9198d9b..00000000
--- a/posts/2014/11/29/benches-in-forbidden-city.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/11/30/monument-to-workers.md b/posts/2014/11/30/monument-to-workers.md
deleted file mode 100644
index 352108f4..00000000
--- a/posts/2014/11/30/monument-to-workers.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/12/01/new-shanghai.md b/posts/2014/12/01/new-shanghai.md
deleted file mode 100644
index d13ebaf9..00000000
--- a/posts/2014/12/01/new-shanghai.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/12/02/shanghai-tower.md b/posts/2014/12/02/shanghai-tower.md
deleted file mode 100644
index a7edc5d4..00000000
--- a/posts/2014/12/02/shanghai-tower.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/12/03/moonrise-from-the-bund.md b/posts/2014/12/03/moonrise-from-the-bund.md
deleted file mode 100644
index 7011ad82..00000000
--- a/posts/2014/12/03/moonrise-from-the-bund.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/12/04/turkey-ii.md b/posts/2014/12/04/turkey-ii.md
deleted file mode 100644
index a9555720..00000000
--- a/posts/2014/12/04/turkey-ii.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
diff --git a/posts/2014/12/05/pear-flower.html b/posts/2014/12/05/pear-flower.html
new file mode 100644
index 00000000..f4168833
--- /dev/null
+++ b/posts/2014/12/05/pear-flower.html
@@ -0,0 +1 @@
+
diff --git a/posts/2015/05/28/maybe-be-back.rst b/posts/2015/05/28/maybe-be-back.rst
deleted file mode 100644
index e860bea6..00000000
--- a/posts/2015/05/28/maybe-be-back.rst
+++ /dev/null
@@ -1,12 +0,0 @@
-.. title: Maybe be back
-.. slug: maybe-be-back
-.. date: 2015-05-28 10:13:20 UTC-05:00
-.. tags: News
-.. category:
-.. link:
-.. description:
-.. type: text
-
-Okay, life got in the way, and I have not had time to deal with this in a while. I am going to see about revisiting this over the summer, but do not hold your breath. Thanks for you time...
-
-
diff --git a/posts/2015/07/19/back-for-now.rst b/posts/2015/07/19/back-for-now.rst
deleted file mode 100644
index dd43aad5..00000000
--- a/posts/2015/07/19/back-for-now.rst
+++ /dev/null
@@ -1,12 +0,0 @@
-.. title: Back, For Now
-.. slug: back-for-now
-.. date: 2015-07-19 02:32:44 UTC-05:00
-.. tags: News
-.. category:
-.. link:
-.. description:
-.. type: text
-
-So, I think I am getting back into this. We shall see. I have a batch queued up, and hopefully I will get more in the queue before these run out.
-
-
diff --git a/posts/2015/07/20/lunch-with-a-view.rst b/posts/2015/07/20/lunch-with-a-view.rst
deleted file mode 100644
index 2e61b35b..00000000
--- a/posts/2015/07/20/lunch-with-a-view.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Lunch With A View
-.. slug: lunch-with-a-view
-.. date: 2015-07-20 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20021208120000.jpg
- :alt: Lunch With A View
diff --git a/posts/2015/07/21/bookstore-i.rst b/posts/2015/07/21/bookstore-i.rst
deleted file mode 100644
index cbe568d9..00000000
--- a/posts/2015/07/21/bookstore-i.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Bookstore I
-.. slug: bookstore-i
-.. date: 2015-07-21 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150704142306.jpg
- :alt: Bookstore I
diff --git a/posts/2015/07/22/bookstore-ii.rst b/posts/2015/07/22/bookstore-ii.rst
deleted file mode 100644
index 42dd6ea6..00000000
--- a/posts/2015/07/22/bookstore-ii.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Bookstore II
-.. slug: bookstore-ii
-.. date: 2015-07-22 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150704142714.jpg
- :alt: Bookstore II
diff --git a/posts/2015/07/23/bookstore-iii.rst b/posts/2015/07/23/bookstore-iii.rst
deleted file mode 100644
index 0b1955f8..00000000
--- a/posts/2015/07/23/bookstore-iii.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Bookstore III
-.. slug: bookstore-iii
-.. date: 2015-07-23 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150704142941.jpg
- :alt: Bookstore III
diff --git a/posts/2015/07/24/bookstore-iv.rst b/posts/2015/07/24/bookstore-iv.rst
deleted file mode 100644
index 5327db5d..00000000
--- a/posts/2015/07/24/bookstore-iv.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Bookstore IV
-.. slug: bookstore-iv
-.. date: 2015-07-24 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150704143004.jpg
- :alt: Bookstore IV
diff --git a/posts/2015/07/25/building-detail-i.rst b/posts/2015/07/25/building-detail-i.rst
deleted file mode 100644
index 2f11315d..00000000
--- a/posts/2015/07/25/building-detail-i.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Building Detail I
-.. slug: building-detail-i
-.. date: 2015-07-25 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150704144519.jpg
- :alt: Building Detail I
diff --git a/posts/2015/07/26/building-detail-ii.rst b/posts/2015/07/26/building-detail-ii.rst
deleted file mode 100644
index e0957042..00000000
--- a/posts/2015/07/26/building-detail-ii.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Building Detail II
-.. slug: building-detail-ii
-.. date: 2015-07-26 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150704144534.jpg
- :alt: Building Detail II
diff --git a/posts/2015/07/27/bookstore-v.rst b/posts/2015/07/27/bookstore-v.rst
deleted file mode 100644
index da325f84..00000000
--- a/posts/2015/07/27/bookstore-v.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Bookstore V
-.. slug: bookstore-v
-.. date: 2015-07-27 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150704144600.jpg
- :alt: Bookstore V
diff --git a/posts/2015/07/28/building-detail-iii.rst b/posts/2015/07/28/building-detail-iii.rst
deleted file mode 100644
index bdf390fb..00000000
--- a/posts/2015/07/28/building-detail-iii.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Building Detail III
-.. slug: building-detail-iii
-.. date: 2015-07-28 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150704145036.jpg
- :alt: Building Detail III
diff --git a/posts/2015/07/29/carved-tree.rst b/posts/2015/07/29/carved-tree.rst
deleted file mode 100644
index 1ec02b42..00000000
--- a/posts/2015/07/29/carved-tree.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Carved Tree
-.. slug: carved-tree
-.. date: 2015-07-29 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150704153847.jpg
- :alt: Carved Tree
diff --git a/posts/2015/07/30/olde-phone-booth.rst b/posts/2015/07/30/olde-phone-booth.rst
deleted file mode 100644
index 1c1c7f42..00000000
--- a/posts/2015/07/30/olde-phone-booth.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Olde Phone Booth
-.. slug: olde-phone-booth
-.. date: 2015-07-30 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150705115058.jpg
- :alt: Olde Phone Booth
diff --git a/posts/2015/07/31/galveston-train-station.rst b/posts/2015/07/31/galveston-train-station.rst
deleted file mode 100644
index 21a2962a..00000000
--- a/posts/2015/07/31/galveston-train-station.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Galveston Train Station
-.. slug: galveston-train-station
-.. date: 2015-07-31 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/07/20150705115117.jpg
- :alt: Galveston Train Station
diff --git a/posts/2015/08/01/working-in-time.rst b/posts/2015/08/01/working-in-time.rst
deleted file mode 100644
index 487784e1..00000000
--- a/posts/2015/08/01/working-in-time.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Working In Time
-.. slug: working-in-time
-.. date: 2015-08-01 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150705115416.jpg
- :alt: Working In Time
diff --git a/posts/2015/08/02/benches-forever-ready.rst b/posts/2015/08/02/benches-forever-ready.rst
deleted file mode 100644
index 56ace5d5..00000000
--- a/posts/2015/08/02/benches-forever-ready.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Benches Forever Ready
-.. slug: benches-forever-ready
-.. date: 2015-08-02 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150705115428.jpg
- :alt: Benches Forever Ready
diff --git a/posts/2015/08/03/olde-tyme-pay-phone.rst b/posts/2015/08/03/olde-tyme-pay-phone.rst
deleted file mode 100644
index 8d7d4bd3..00000000
--- a/posts/2015/08/03/olde-tyme-pay-phone.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Olde Tyme Pay Phone
-.. slug: olde-tyme-pay-phone
-.. date: 2015-08-03 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150705115553.jpg
- :alt: Olde Tyme Pay Phone
diff --git a/posts/2015/08/04/bonnet-warrior-no.-315.rst b/posts/2015/08/04/bonnet-warrior-no.-315.rst
deleted file mode 100644
index d572fd96..00000000
--- a/posts/2015/08/04/bonnet-warrior-no.-315.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Bonnet Warrior No. 315
-.. slug: bonnet-warrior-no.-315
-.. date: 2015-08-04 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150705120816.jpg
- :alt: Bonnet Warrior No. 315
diff --git a/posts/2015/08/05/coupling.rst b/posts/2015/08/05/coupling.rst
deleted file mode 100644
index 066dcb8e..00000000
--- a/posts/2015/08/05/coupling.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Coupling
-.. slug: coupling
-.. date: 2015-08-05 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150705121513.jpg
- :alt: Coupling
diff --git a/posts/2015/08/06/sp-stainless.rst b/posts/2015/08/06/sp-stainless.rst
deleted file mode 100644
index 376aa5f6..00000000
--- a/posts/2015/08/06/sp-stainless.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: SP Stainless
-.. slug: sp-stainless
-.. date: 2015-08-06 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150705122327.jpg
- :alt: SP Stainless
diff --git a/posts/2015/08/07/engine-needs-love.rst b/posts/2015/08/07/engine-needs-love.rst
deleted file mode 100644
index fb36d227..00000000
--- a/posts/2015/08/07/engine-needs-love.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Engine Needs Love
-.. slug: engine-needs-love
-.. date: 2015-08-07 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150705122436.jpg
- :alt: Engine Needs Love
diff --git a/posts/2015/08/08/nighttime-model.rst b/posts/2015/08/08/nighttime-model.rst
deleted file mode 100644
index 4d3540f3..00000000
--- a/posts/2015/08/08/nighttime-model.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Nighttime Model
-.. slug: nighttime-model
-.. date: 2015-08-08 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150705123935.jpg
- :alt: Nighttime Model
diff --git a/posts/2015/08/09/view-from-room.rst b/posts/2015/08/09/view-from-room.rst
deleted file mode 100644
index 9f7dacb8..00000000
--- a/posts/2015/08/09/view-from-room.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: View From Room
-.. slug: view-from-room
-.. date: 2015-08-09 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706080810.jpg
- :alt: View From Room
diff --git a/posts/2015/08/10/crabs.rst b/posts/2015/08/10/crabs.rst
deleted file mode 100644
index 33d713fa..00000000
--- a/posts/2015/08/10/crabs.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Crabs!
-.. slug: crabs
-.. date: 2015-08-10 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706092540.jpg
- :alt: Crabs!
diff --git a/posts/2015/08/11/elissa-rigging-i.rst b/posts/2015/08/11/elissa-rigging-i.rst
deleted file mode 100644
index f499d9c8..00000000
--- a/posts/2015/08/11/elissa-rigging-i.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Elissa Rigging I
-.. slug: elissa-rigging-i
-.. date: 2015-08-11 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706135619.jpg
- :alt: Elissa Rigging I
diff --git a/posts/2015/08/12/brown-pelican-in-flight.rst b/posts/2015/08/12/brown-pelican-in-flight.rst
deleted file mode 100644
index 6a3b07a2..00000000
--- a/posts/2015/08/12/brown-pelican-in-flight.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Brown Pelican In Flight
-.. slug: brown-pelican-in-flight
-.. date: 2015-08-12 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706145430.jpg
- :alt: Brown Pelican In Flight
diff --git a/posts/2015/08/13/dolphin.rst b/posts/2015/08/13/dolphin.rst
deleted file mode 100644
index 71b061b6..00000000
--- a/posts/2015/08/13/dolphin.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Dolphin!
-.. slug: dolphin
-.. date: 2015-08-13 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706151037.jpg
- :alt: Dolphin!
diff --git a/posts/2015/08/14/another-dolphin.rst b/posts/2015/08/14/another-dolphin.rst
deleted file mode 100644
index 450bf3c9..00000000
--- a/posts/2015/08/14/another-dolphin.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Another Dolphin!
-.. slug: another-dolphin
-.. date: 2015-08-14 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706151222.jpg
- :alt: Another Dolphin!
diff --git a/posts/2015/08/15/elissa-rigging-ii.rst b/posts/2015/08/15/elissa-rigging-ii.rst
deleted file mode 100644
index c73348ad..00000000
--- a/posts/2015/08/15/elissa-rigging-ii.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Elissa Rigging II
-.. slug: elissa-rigging-ii
-.. date: 2015-08-15 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706153259.jpg
- :alt: Elissa Rigging II
diff --git a/posts/2015/08/16/elissa-rigging-iii.rst b/posts/2015/08/16/elissa-rigging-iii.rst
deleted file mode 100644
index 891b1d37..00000000
--- a/posts/2015/08/16/elissa-rigging-iii.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Elissa Rigging III
-.. slug: elissa-rigging-iii
-.. date: 2015-08-16 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706153442.jpg
- :alt: Elissa Rigging III
diff --git a/posts/2015/08/17/elissa-rigging-iv.rst b/posts/2015/08/17/elissa-rigging-iv.rst
deleted file mode 100644
index 146d18b6..00000000
--- a/posts/2015/08/17/elissa-rigging-iv.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Elissa Rigging IV
-.. slug: elissa-rigging-iv
-.. date: 2015-08-17 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706153812.jpg
- :alt: Elissa Rigging IV
diff --git a/posts/2015/08/18/elissa-rigging-v.rst b/posts/2015/08/18/elissa-rigging-v.rst
deleted file mode 100644
index 71603ef4..00000000
--- a/posts/2015/08/18/elissa-rigging-v.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Elissa Rigging V
-.. slug: elissa-rigging-v
-.. date: 2015-08-18 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706153925.jpg
- :alt: Elissa Rigging V
diff --git a/posts/2015/08/19/elissa-rigging-vi.rst b/posts/2015/08/19/elissa-rigging-vi.rst
deleted file mode 100644
index c605386d..00000000
--- a/posts/2015/08/19/elissa-rigging-vi.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Elissa Rigging VI
-.. slug: elissa-rigging-vi
-.. date: 2015-08-19 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706153938.jpg
- :alt: Elissa Rigging VI
diff --git a/posts/2015/08/20/elissa-rigging-vii.rst b/posts/2015/08/20/elissa-rigging-vii.rst
deleted file mode 100644
index 38d27cbc..00000000
--- a/posts/2015/08/20/elissa-rigging-vii.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Elissa Rigging VII
-.. slug: elissa-rigging-vii
-.. date: 2015-08-20 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150706154152.jpg
- :alt: Elissa Rigging VII
diff --git a/posts/2015/08/21/watching-the-waves.rst b/posts/2015/08/21/watching-the-waves.rst
deleted file mode 100644
index 53a67c55..00000000
--- a/posts/2015/08/21/watching-the-waves.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Watching The Waves
-.. slug: watching-the-waves
-.. date: 2015-08-21 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150707110811.jpg
- :alt: Watching The Waves
diff --git a/posts/2015/08/22/under-the-sea.rst b/posts/2015/08/22/under-the-sea.rst
deleted file mode 100644
index 0ed463a3..00000000
--- a/posts/2015/08/22/under-the-sea.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Under The Sea
-.. slug: under-the-sea
-.. date: 2015-08-22 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150707141537.jpg
- :alt: Under The Sea
diff --git a/posts/2015/08/23/building-detail-iv.rst b/posts/2015/08/23/building-detail-iv.rst
deleted file mode 100644
index adac9e7f..00000000
--- a/posts/2015/08/23/building-detail-iv.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Building Detail IV
-.. slug: building-detail-iv
-.. date: 2015-08-23 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150708123602.jpg
- :alt: Building Detail IV
diff --git a/posts/2015/08/24/watermelon-candy-slices.rst b/posts/2015/08/24/watermelon-candy-slices.rst
deleted file mode 100644
index 22bf6eb4..00000000
--- a/posts/2015/08/24/watermelon-candy-slices.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Watermelon Candy Slices
-.. slug: watermelon-candy-slices
-.. date: 2015-08-24 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150708134205.jpg
- :alt: Watermelon Candy Slices
diff --git a/posts/2015/08/25/black-cherry-candy-slices.rst b/posts/2015/08/25/black-cherry-candy-slices.rst
deleted file mode 100644
index 3e7e1989..00000000
--- a/posts/2015/08/25/black-cherry-candy-slices.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Black Cherry Candy Slices
-.. slug: black-cherry-candy-slices
-.. date: 2015-08-25 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150708134213.jpg
- :alt: Black Cherry Candy Slices
diff --git a/posts/2015/08/26/soda-fountain-bar-back.rst b/posts/2015/08/26/soda-fountain-bar-back.rst
deleted file mode 100644
index eda59d00..00000000
--- a/posts/2015/08/26/soda-fountain-bar-back.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Soda Fountain Bar Back
-.. slug: soda-fountain-bar-back
-.. date: 2015-08-26 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150708134856.jpg
- :alt: Soda Fountain Bar Back
diff --git a/posts/2015/08/27/ice-cream.rst b/posts/2015/08/27/ice-cream.rst
deleted file mode 100644
index 5e2620c2..00000000
--- a/posts/2015/08/27/ice-cream.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Ice Cream
-.. slug: ice-cream
-.. date: 2015-08-27 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150708135001.jpg
- :alt: Ice Cream
diff --git a/posts/2015/08/28/happy-mouse.rst b/posts/2015/08/28/happy-mouse.rst
deleted file mode 100644
index 7807c1c2..00000000
--- a/posts/2015/08/28/happy-mouse.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Happy Mouse
-.. slug: happy-mouse
-.. date: 2015-08-28 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150708141403.jpg
- :alt: Happy Mouse
diff --git a/posts/2015/08/29/powerfull-distance.rst b/posts/2015/08/29/powerfull-distance.rst
deleted file mode 100644
index 2ac0aa84..00000000
--- a/posts/2015/08/29/powerfull-distance.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Powerfull Distance
-.. slug: powerfull-distance
-.. date: 2015-08-29 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150803074118.jpg
- :alt: Powerfull Distance
diff --git a/posts/2015/08/30/reflections-of-progress.rst b/posts/2015/08/30/reflections-of-progress.rst
deleted file mode 100644
index 8dbd1ac0..00000000
--- a/posts/2015/08/30/reflections-of-progress.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Reflections Of Progress
-.. slug: reflections-of-progress
-.. date: 2015-08-30 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150804075136.jpg
- :alt: Reflections Of Progress
diff --git a/posts/2015/08/31/swing.rst b/posts/2015/08/31/swing.rst
deleted file mode 100644
index 93299de3..00000000
--- a/posts/2015/08/31/swing.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Swing
-.. slug: swing
-.. date: 2015-08-31 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/08/20150809193454.jpg
- :alt: Swing
diff --git a/posts/2015/09/01/houston-graffiti-i.rst b/posts/2015/09/01/houston-graffiti-i.rst
deleted file mode 100644
index 16a536a3..00000000
--- a/posts/2015/09/01/houston-graffiti-i.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Houston Graffiti I
-.. slug: houston-graffiti-i
-.. date: 2015-09-01 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/09/20150810174519.jpg
- :alt: Houston Graffiti I
diff --git a/posts/2015/09/02/houston-graffiti-ii.rst b/posts/2015/09/02/houston-graffiti-ii.rst
deleted file mode 100644
index 9fefe931..00000000
--- a/posts/2015/09/02/houston-graffiti-ii.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Houston Graffiti II
-.. slug: houston-graffiti-ii
-.. date: 2015-09-02 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/09/20150810174538.jpg
- :alt: Houston Graffiti II
diff --git a/posts/2015/09/03/long-wait.rst b/posts/2015/09/03/long-wait.rst
deleted file mode 100644
index 17cfca1a..00000000
--- a/posts/2015/09/03/long-wait.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Long Wait
-.. slug: long-wait
-.. date: 2015-09-03 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/09/20150811180411.jpg
- :alt: Long Wait
diff --git a/posts/2015/09/04/sun-and-clouds.rst b/posts/2015/09/04/sun-and-clouds.rst
deleted file mode 100644
index 7820acd9..00000000
--- a/posts/2015/09/04/sun-and-clouds.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Sun and Clouds
-.. slug: sun-and-clouds
-.. date: 2015-09-04 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/09/20150813074407.jpg
- :alt: Sun and Clouds
diff --git a/posts/2015/09/05/sunlight-through-trees.rst b/posts/2015/09/05/sunlight-through-trees.rst
deleted file mode 100644
index 7b39d0f6..00000000
--- a/posts/2015/09/05/sunlight-through-trees.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Sunlight Through Trees
-.. slug: sunlight-through-trees
-.. date: 2015-09-05 04:00
-.. tags: Pictures
-.. image:: /wp-content/uploads/2015/09/20150815102011.jpg
- :alt: Sunlight Through Trees
diff --git a/posts/2018/12/19/hanging-orniment.rst b/posts/2018/12/19/hanging-orniment.rst
deleted file mode 100644
index 0137f973..00000000
--- a/posts/2018/12/19/hanging-orniment.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Hanging Orniment
-.. slug: hanging-orniment
-.. date: 2018-12-19 15:25
-.. tags: Pictures,TRF,Christmas
-.. image:: /wp-content/uploads/2018/12/20181112114249.jpg
- :alt: Hanging Orniment
diff --git a/posts/2018/12/20/stone-elephant.rst b/posts/2018/12/20/stone-elephant.rst
deleted file mode 100644
index 4ee9ade3..00000000
--- a/posts/2018/12/20/stone-elephant.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: Stone Elephant
-.. slug: stone-elephant
-.. date: 2018-12-20 15:25
-.. tags: Pictures,Houston Museum of Natural Science
-.. image:: /wp-content/uploads/2018/12/20181209182208.jpg
- :alt: Stone Elephant
diff --git a/posts/2018/12/26/and-now-for-something-new.md b/posts/2018/12/26/and-now-for-something-new.md
deleted file mode 100644
index 0a2eeb1a..00000000
--- a/posts/2018/12/26/and-now-for-something-new.md
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-Well, since it is almost 2019, I think it is time to revisit this little blog.
-
-This time around, I am commiting only to be posting something once a week. I hope with this cadence that the output will be much higher. I may (and probably will) post a bit more often than that, but no promises. And, after over three years of no updates, you get what you get. :)
diff --git a/posts/2019/01/05/p52-1.rst b/posts/2019/01/05/p52-1.rst
deleted file mode 100644
index 44035afb..00000000
--- a/posts/2019/01/05/p52-1.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-1 : Butterfly
-.. slug: p52-1-butterfly
-.. date: 2019-01-05 10:05
-.. tags: Pictures,P52
-.. image:: /wp-content/uploads/2019/01/20190101182342.jpg
- :alt: Butterfly
diff --git a/posts/2019/01/11/p52-2.rst b/posts/2019/01/11/p52-2.rst
deleted file mode 100644
index 0e1b2043..00000000
--- a/posts/2019/01/11/p52-2.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-2 : Power Colors
-.. slug: p52-2-power-colors
-.. date: 2019-01-11 22:05
-.. tags: Pictures,P52
-.. image:: /wp-content/uploads/2019/01/20190109065804.jpg
- :alt: Power Colors
diff --git a/posts/2019/01/17/p52-3.rst b/posts/2019/01/17/p52-3.rst
deleted file mode 100644
index bdf2fe28..00000000
--- a/posts/2019/01/17/p52-3.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-3 : Oil Rig Sign
-.. slug: p52-3-oil-rig-sign
-.. date: 2019-01-17 22:05
-.. tags: Pictures,P52
-.. image:: /wp-content/uploads/2019/01/20190117074054.jpg
- :alt: Oil Rig Sign
diff --git a/posts/2019/01/26/p52-4.rst b/posts/2019/01/26/p52-4.rst
deleted file mode 100644
index d2ac1b87..00000000
--- a/posts/2019/01/26/p52-4.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-4 : Friday Sunrise
-.. slug: p52-4-friday-sunrise
-.. date: 2019-01-26 11:02
-.. tags: Pictures,P52
-.. image:: /wp-content/uploads/2019/01/20190125075731.jpg
- :alt: Friday Sunrise
diff --git a/posts/2019/02/02/p52-5-devil-duck-sitting-pretty.rst b/posts/2019/02/02/p52-5-devil-duck-sitting-pretty.rst
deleted file mode 100644
index 73a8a2c3..00000000
--- a/posts/2019/02/02/p52-5-devil-duck-sitting-pretty.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-5 : Devil Duck Sitting Pretty
-.. slug: p52-5-devil-duck-sitting-pretty
-.. date: 2019-02-02 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/02/20190126141820.jpg
- :alt: P52-5 : Devil Duck Sitting Pretty
diff --git a/posts/2019/02/09/p52-6-i-see-you.rst b/posts/2019/02/09/p52-6-i-see-you.rst
deleted file mode 100644
index dbc491ea..00000000
--- a/posts/2019/02/09/p52-6-i-see-you.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-6 : I See You
-.. slug: p52-6-i-see-you
-.. date: 2019-02-09 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/02/20190202144335.jpg
- :alt: P52-6 : I See You
diff --git a/posts/2019/02/15/p52-6-royal-legos.rst b/posts/2019/02/15/p52-6-royal-legos.rst
deleted file mode 100644
index a67ab3f2..00000000
--- a/posts/2019/02/15/p52-6-royal-legos.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-6 : Royal Legos
-.. slug: p52-6-royal-legos
-.. date: 2019-02-15 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/02/20190210154207.jpg
- :alt: P52-6 : Royal Legos
diff --git a/posts/2019/02/22/p52-7-reflections-from-the-roots.rst b/posts/2019/02/22/p52-7-reflections-from-the-roots.rst
deleted file mode 100644
index c301a15d..00000000
--- a/posts/2019/02/22/p52-7-reflections-from-the-roots.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-7 : Reflections from the Roots
-.. slug: p52-7-reflections-from-the-roots
-.. date: 2019-02-22 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/02/20190221154455.jpg
- :alt: P52-7 : Reflections from the Roots
diff --git a/posts/2019/03/01/p52-8-duck.rst b/posts/2019/03/01/p52-8-duck.rst
deleted file mode 100644
index dee939e8..00000000
--- a/posts/2019/03/01/p52-8-duck.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-8 : Duck!
-.. slug: p52-8-duck
-.. date: 2019-03-01 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/03/20190228184848.jpg
- :alt: P52-8 : Duck!
diff --git a/posts/2019/03/08/p52-9-lost-reminder.rst b/posts/2019/03/08/p52-9-lost-reminder.rst
deleted file mode 100644
index ea7ee55c..00000000
--- a/posts/2019/03/08/p52-9-lost-reminder.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-9 : Lost Reminder
-.. slug: p52-9-lost-reminder
-.. date: 2019-03-08 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/03/20190307075921.jpg
- :alt: P52-9 : Lost Reminder
diff --git a/posts/2019/03/15/p52-10-small-devil-duck.rst b/posts/2019/03/15/p52-10-small-devil-duck.rst
deleted file mode 100644
index ed308776..00000000
--- a/posts/2019/03/15/p52-10-small-devil-duck.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-10 : Small Devil Duck
-.. slug: p52-10-small-devil-duck
-.. date: 2019-03-15 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/03/20190312085038.jpg
- :alt: P52-10 : Small Devil Duck
diff --git a/posts/2019/03/22/p52-11-let-sleeping-ducks-lie.rst b/posts/2019/03/22/p52-11-let-sleeping-ducks-lie.rst
deleted file mode 100644
index 80f0dbe6..00000000
--- a/posts/2019/03/22/p52-11-let-sleeping-ducks-lie.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-11 : Let Sleeping Ducks Lie
-.. slug: p52-11-let-sleeping-ducks-lie
-.. date: 2019-03-22 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/03/20190316160220.jpg
- :alt: P52-11 : Let Sleeping Ducks Lie
diff --git a/posts/2019/03/30/p52-13-tiny-duck,-big-universe.rst b/posts/2019/03/30/p52-13-tiny-duck,-big-universe.rst
deleted file mode 100644
index cb420b86..00000000
--- a/posts/2019/03/30/p52-13-tiny-duck,-big-universe.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-13 : Tiny Duck, Big Universe
-.. slug: p52-13-tiny-duck,-big-universe
-.. date: 2019-03-29 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/03/20190323155127218.jpg
- :alt: P52-13 : Tiny Duck, Big Universe
diff --git a/posts/2019/04/04/p52-13-reflections-of-parking.rst b/posts/2019/04/04/p52-13-reflections-of-parking.rst
deleted file mode 100644
index 7a259e85..00000000
--- a/posts/2019/04/04/p52-13-reflections-of-parking.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-13 : Reflections of Parking
-.. slug: p52-13-reflections-of-parking
-.. date: 2019-04-04 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/04/20190404114452.jpg
- :alt: P52-13 : Reflections of Parking
diff --git a/posts/2019/04/12/p52-14-coreopsis-and-friend.rst b/posts/2019/04/12/p52-14-coreopsis-and-friend.rst
deleted file mode 100644
index 85078ff7..00000000
--- a/posts/2019/04/12/p52-14-coreopsis-and-friend.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-14 : Coreopsis and Friend
-.. slug: p52-14-coreopsis-and-friend
-.. date: 2019-04-12 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/04/20190412150030.jpg
- :alt: P52-14 : Coreopsis and Friend
diff --git a/posts/2019/04/18/p52-15-sunrise-through-trees.rst b/posts/2019/04/18/p52-15-sunrise-through-trees.rst
deleted file mode 100644
index 3180a2f3..00000000
--- a/posts/2019/04/18/p52-15-sunrise-through-trees.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-15 : Sunrise Through Trees
-.. slug: p52-15-sunrise-through-trees
-.. date: 2019-04-18 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/04/20190414070453.jpg
- :alt: P52-15 : Sunrise Through Trees
diff --git a/posts/2019/04/26/p52-16-cow-and-tailgate.rst b/posts/2019/04/26/p52-16-cow-and-tailgate.rst
deleted file mode 100644
index 9de3a1a0..00000000
--- a/posts/2019/04/26/p52-16-cow-and-tailgate.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-16 : Cow and Tailgate
-.. slug: p52-16-cow-and-tailgate
-.. date: 2019-04-26 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/04/20190421083848.jpg
- :alt: P52-16 : Cow and Tailgate
diff --git a/posts/2019/05/03/p52-17-exploration-in-monocolor.rst b/posts/2019/05/03/p52-17-exploration-in-monocolor.rst
deleted file mode 100644
index 876fa5b7..00000000
--- a/posts/2019/05/03/p52-17-exploration-in-monocolor.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-17 : Exploration in monocolor
-.. slug: p52-17-exploration-in-monocolor
-.. date: 2019-05-03 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/05/20190430074526.jpg
- :alt: P52-17 : Exploration in monocolor
diff --git a/posts/2019/05/10/p52-18-blanket-flower.rst b/posts/2019/05/10/p52-18-blanket-flower.rst
deleted file mode 100644
index 364bde7c..00000000
--- a/posts/2019/05/10/p52-18-blanket-flower.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-18 : Blanket Flower
-.. slug: p52-18-blanket-flower
-.. date: 2019-05-10 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/05/20190510143759.jpg
- :alt: P52-18 : Blanket Flower
diff --git a/posts/2019/05/17/p52-19-lots-of-dice.rst b/posts/2019/05/17/p52-19-lots-of-dice.rst
deleted file mode 100644
index ad229c14..00000000
--- a/posts/2019/05/17/p52-19-lots-of-dice.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-19 : Lots of dice
-.. slug: p52-19-lots-of-dice
-.. date: 2019-05-17 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/05/20190511110636.jpg
- :alt: P52-19 : Lots of dice
diff --git a/posts/2019/05/24/p52-20-mckinney-falls.rst b/posts/2019/05/24/p52-20-mckinney-falls.rst
deleted file mode 100644
index a00c30ea..00000000
--- a/posts/2019/05/24/p52-20-mckinney-falls.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-20 : McKinney Falls
-.. slug: p52-20-mckinney-falls
-.. date: 2019-05-24 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/05/20190518120737.jpg
- :alt: P52-20 : McKinney Falls
diff --git a/posts/2019/05/31/p52-21-blanket-flower.rst b/posts/2019/05/31/p52-21-blanket-flower.rst
deleted file mode 100644
index 2b849fd3..00000000
--- a/posts/2019/05/31/p52-21-blanket-flower.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. title: P52-21 : Blanket Flower
-.. slug: p52-21-blanket-flower
-.. date: 2019-05-31 04:00
-.. tags: P52,Pictures
-.. image:: /wp-content/uploads/2019/05/20190531072716106561.jpg
- :alt: P52-21 : Blanket Flower
diff --git a/resources/_gen/assets/css/css/style.css_d3f53f09220d597dac26fe7840c31fc9.content b/resources/_gen/assets/css/css/style.css_d3f53f09220d597dac26fe7840c31fc9.content
new file mode 100644
index 00000000..8b53b5a6
--- /dev/null
+++ b/resources/_gen/assets/css/css/style.css_d3f53f09220d597dac26fe7840c31fc9.content
@@ -0,0 +1,11 @@
+@import url(
+ https://fonts.googleapis.com/css?family=Roboto:400,
+ 300,
+ 100,
+ 500,
+ 700
+);@import url(
+ https://fonts.googleapis.com/css?family=Roboto+Condensed:400,
+ 300,
+ 700
+);@import "https://fonts.googleapis.com/css?family=Glegoo";body{font-family:roboto,sans-serif;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;color:rgba(0,0,0,.8);font-size:20px;line-height:1.4;overflow-x:hidden}div{display:block}img{border:0}a{text-decoration:none;color:rgba(100,100,100,.8)}a:hover{color:inherit;text-decoration:none;-webkit-tap-highlight-color:transparent;background-color:transparent}h1{font-size:2em;margin:.67em 0}h2{display:block;font-size:1.5em;margin-block-start:.83em;margin-block-end:.83em;margin-inline-start:0;margin-inline-end:0;font-weight:700}h3{display:block;font-size:1.17em;margin-block-start:1em;margin-block-end:1em;margin-inline-start:0;margin-inline-end:0;font-weight:700}.clear{display:table;content:" ";clear:both}.lightText{color:rgba(0,0,0,.54);fill:rgba(0,0,0,.54)}.line-spacer{margin-top:5px;margin-bottom:5px;height:.5pt;background-color:rgba(0,0,0,.3)}.content{}.fof{margin-left:auto;margin-right:auto}.topbar{top:0;width:100%;background:#fff;color:#fff;transition:all .2s ease-out 0s;box-shadow:0 0 3px 0 rgba(0,0,0,.1);border-bottom:1px solid #dedede;z-index:10;height:67px}.topbar.animated-header{padding:20px 0;background:#fff;box-shadow:none}.brand{margin:10px;height:47px}.brand-title,.brand-title a{position:relative;color:rgba(0,0,0,.8);font-weight:600;font-size:26px;line-height:1.6;margin-left:auto}.navbar{border:0;border-radius:0;margin-bottom:0;padding:0}.navbar.bg-light{background:#fff!important}.navbar .nav-item .nav-link{color:#444!important;font-size:14px;font-weight:500;transition:.3s all;text-transform:uppercase;padding:5px 15px;display:block}.navbar .nav-item .nav-link:hover{color:#02bdd5!important}.navbar .nav-item:last-child .nav-link{padding-right:0}.head-spacer{padding:10px}.collection{margin-bottom:40px!important;max-width:100%}.collection-item-large{max-width:1072px!important;width:100vw;margin-bottom:15px!important;box-sizing:border-box;max-height:350px}.collection-item-large-thumb,.collection-item-large-content{position:relative;min-height:1px;max-height:350px}.collection-item-large-content{padding-left:20px}.collection-item-large-thumb{width:100%;height:350px!important}.collection-item-large-headline{font-weight:600;font-size:34px;line-height:1;color:rgba(0,0,0,.8)}.collection-item-large-description,.collection-item-description{font-weight:400!important;font-size:20px!important;line-height:1.2!important}.collection-item-clearfix{margin-top:20px;font-size:15px;line-height:1.4px;padding-left:10px;padding-top:15px}.collection-item{margin-top:15px!important;margin-bottom:15px!important;box-sizing:border-box}.collection-item-thumb,.collection-item-large-thumb{display:block;background-origin:border-box!important;background-size:cover!important}.collection-item-thumb{height:172px}.collection-item-content{position:relative;min-height:1px}.collection-item-headline{word-break:break-word;word-wrap:break-word;text-overflow:ellipsis!important;line-height:1.1;font-size:26px;font-weight:600;color:rgba(0,0,0,.8)}.footer{position:fixed;bottom:0;left:0;right:0;width:100vw;height:40px;color:#000;background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,0,.1)}.copyright,.impressum,.social{margin-top:10px!important;margin-bottom:10px!important;font-size:18px;color:rgba(0,0,0,.8)}.impressum{float:right;margin-right:40px}.impressum a{color:rgba(0,0,0,.8)}.copyright{margin-left:10px}.social{font-size:20px;margin-top:10px;margin-bottom:10px;margin-left:auto;margin-right:10px}.social a{color:rgba(0,0,0,.8)}.post{position:relative;width:100%;margin-bottom:40px}.post-header{margin-left:auto;margin-right:auto;width:60%;max-width:1072px}.maintitle{padding-top:16px!important}.subtitle{font-weight:400;margin-top:5px;margin-bottom:22px;font-size:28px;line-height:1.22;letter-spacing:-.012em}.figure{position:relative;z-index:100;margin-top:22px;margin-bottom:40px;width:100%}.figure img{visibility:visible;opacity:1;transition:visibility 0s linear 0s,opacity .4s 0s}.paginator{margin-top:40px;margin-left:auto;margin-right:auto;display:inline-block}.paginator .paginator-item{float:left;margin-right:10px}.paginator .paginator-item a[disabled]{cursor:pointer;opacity:.5;pointer-events:none;user-select:none}.paginator .paginator-item a.active{border:1px solid rgba(0,0,0,.6);border-radius:5px}.paginator .paginator-item a:hover:not(.active){background-color:rgba(0,0,0,.3)}@media(min-width:1200px){.collection-latest{margin-left:auto!important;margin-right:auto!important}}@media(min-width:992px) and (max-width:1199px){.collection-latest{margin-left:30px}.collection-item-large-thumb{width:100%;height:350px!important}}@media(min-width:768px) and (max-width:991px){.collection-latest{height:700px}.collection-item-large-thumb{max-width:690px;padding-left:15px;padding-right:15px;margin-left:30px}.collection-item-large-content{margin-left:10px}}@media(min-width:576px) and (max-width:767px){.collection-item-large-thumb{width:510px;height:172px!important;margin-left:30px}.collection-item-large-content{margin-left:10px}.collection-item-large-headline{word-break:break-word;word-wrap:break-word;text-overflow:ellipsis!important;line-height:1.1;font-size:26px;font-weight:600}.collection-item-large-description{font-weight:400!important;font-size:20px!important;line-height:1.2!important}.line-spacer{display:none}}@media(max-width:575px){.collection-item-large-thumb{margin-right:47px;height:172px!important;margin-left:30px}.collection-item-large-content{margin-left:10px}.collection-item-large-headline{word-break:break-word;word-wrap:break-word;text-overflow:ellipsis!important;line-height:1.1;font-size:26px;font-weight:600}.collection-item-large-description{font-weight:400!important;font-size:20px!important;line-height:1.2!important}.line-spacer{display:none}}@media(max-width:300px){.brand-title{display:none}}
\ No newline at end of file
diff --git a/resources/_gen/assets/css/css/style.css_d3f53f09220d597dac26fe7840c31fc9.json b/resources/_gen/assets/css/css/style.css_d3f53f09220d597dac26fe7840c31fc9.json
new file mode 100644
index 00000000..0095485d
--- /dev/null
+++ b/resources/_gen/assets/css/css/style.css_d3f53f09220d597dac26fe7840c31fc9.json
@@ -0,0 +1 @@
+{"Target":"css/style.min.css","MediaType":"text/css","Data":{}}
\ No newline at end of file
diff --git a/stories/about.rst b/stories/about.rst
deleted file mode 100644
index e142482c..00000000
--- a/stories/about.rst
+++ /dev/null
@@ -1,12 +0,0 @@
-.. title: About
-.. slug: about
-.. date: 2018-12-19 12:00:28 UTC-06:00
-.. tags:
-.. link:
-.. description:
-.. type: text
-
-
-Hello there. My name is Donald Harper, and I take photographs. My main camera right now is an Olympus OMD-5. I also shoot with my Google Pixel 2 phone, my Canon compact, and a Pansonic compact.
-
-My work-flow is all Linux, all the time. A lot of the photos on here have been processes with Gimp and/or Picasa for Linux, but as of May 2012, I am using Corel’s Aftershot Pro. If you like my work, drop me a line at don@donaldharper.com. I hope you enjoy your stay.
diff --git a/themes/Bleach b/themes/Bleach
new file mode 160000
index 00000000..1a2fd1b4
--- /dev/null
+++ b/themes/Bleach
@@ -0,0 +1 @@
+Subproject commit 1a2fd1b40cb422b532dac13476250a22061456d6
diff --git a/themes/canterville/LICENSE.md b/themes/canterville/LICENSE.md
deleted file mode 100644
index 6bf979a5..00000000
--- a/themes/canterville/LICENSE.md
+++ /dev/null
@@ -1,9 +0,0 @@
-The MIT License (MIT)
-
-Copyright (c) 2017 Roberto Alsina, Valere Jeantet
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/themes/canterville/README.md b/themes/canterville/README.md
deleted file mode 100644
index cb966fad..00000000
--- a/themes/canterville/README.md
+++ /dev/null
@@ -1,14 +0,0 @@
-A port of the Casper theme from Ghost, via https://github.com/vjeantet/hugo-theme-casper/
-
-License is MIT
-
-Included is a copy of Genericons, which is GPLv2
-
-The Silk Road image is CC licensed from
-[Jonathan Kos-Read](http://www.flickr.com/photos/jonathankosread/)
-
-Special variables
-
-* TWITTER_URL
-* GITHUB_URL
-* BANNER_URL
diff --git a/themes/canterville/assets/css/nav.css b/themes/canterville/assets/css/nav.css
deleted file mode 100644
index 724c3c96..00000000
--- a/themes/canterville/assets/css/nav.css
+++ /dev/null
@@ -1,108 +0,0 @@
-nav.breadcrumb{
- margin-bottom:0px;
-}
-nav.breadcrumb li {
- display: inline ;
- font-size: 14px;
- font-family: helvetica;
-}
-nav.breadcrumb li a {
- text-decoration: none;
-}
-nav.breadcrumb li a:after {
- content: " >";
-}
-
- nav.navpage {
- font-size: 1em;
- font-family: helvetica;
- width: 100%;
-
- }
-
-nav.navpage > ul {
- background: #efefef;
- background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
- background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
- background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%);
- box-shadow: 0px 0px 90px rgba(0,0,0,0.15);
- padding: 0 20px;
- border-radius: 10px;
- list-style: none;
- position: relative;
- display: inline-table;
- width: 100%;
-}
-nav.navpage li {
- list-style: none;
-}
-
- nav.navpage:after {
- content: ""; clear: both; display: block;
- }
-
-nav.navpage > ul > li > a {
- font-weight: bold;
- text-decoration: none;
- font-size: 1.2em;
- font-variant: small-caps;
-}
-
-
-nav.navpage ul {
- padding-left: 0px;
- margin-left: 0px;
-}
-nav.navpage ul ul li {
- display: block;
- margin-left: 30px;
- line-height: 1.2em;
-}
-nav.navpage ul ul li a {
- text-decoration: none
-}
-nav.navpage ul ul li a:hover {
- text-decoration: underline;
-}
-nav.navpage ul ul li:after {
- content: "";
-}
-
-nav.navpage ul ul li ul li{
- display: block;
- font-size: smaller;
- margin-left: 30px;
- line-height: 1.1em;
-}
-
-nav.navchildren{
- margin-top: 0px;
- background: #efefef;
- background: linear-gradient(top, #efefef 0%, #bbbbbb 100%);
- background: -moz-linear-gradient(top, #efefef 0%, #bbbbbb 100%);
- background: -webkit-linear-gradient(top, #efefef 0%,#bbbbbb 100%);
- box-shadow: 0px 0px 90px rgba(0,0,0,0.15);
- padding: 0 20px;
- border-radius: 10px;
- list-style: none;
- position: relative;
- display: inline-table;
- width: 100%;
-}
-
-nav.navchildren li {
- font-size: smaller;
- line-height: 1.1em;
- font-family: helvetica;
- /*display: block;*/
-
-}
-nav.navchildren a {
-
- line-height: 1.1em;
-
- text-decoration: none
-}
-nav.navchildren a:hover {
- text-decoration: underline;
-}
\ No newline at end of file
diff --git a/themes/canterville/assets/css/screen.css b/themes/canterville/assets/css/screen.css
deleted file mode 100644
index cfe98c27..00000000
--- a/themes/canterville/assets/css/screen.css
+++ /dev/null
@@ -1,1921 +0,0 @@
-/* ==========================================================================
- Table of Contents
- ========================================================================== */
-
-/*
-
- 0. Normalize
- 1. Icons
- 2. General
- 3. Utilities
- 4. General
- 5. Single Post
- 6. Tag Archive
- 7. Third Party Elements
- 8. Pagination
- 9. Footer
- 10. Media Queries (Tablet)
- 11. Media Queries (Mobile)
- 12. Animations
-
-*/
-
-/* ==========================================================================
- 0. Normalize.css v2.1.3 | MIT License | git.io/normalize | (minified)
- ========================================================================== */
-
-article, aside, details,
-figcaption, figure,
-footer, header, hgroup,
-main, nav, section,
-summary { display: block; }
-audio, canvas, video { display: inline-block; }
-audio:not([controls]) { display: none; height: 0; }
-[hidden], template { display: none; }
-html {
- font-family: sans-serif;
- -ms-text-size-adjust: 100%;
- -webkit-text-size-adjust: 100%;
-}
-body { margin: 0; padding: 0; }
-a { background: transparent; }
-a:focus { outline: thin dotted; }
-a:active, a:hover { outline: 0; }
-h1 { font-size: 2em; margin: 0.67em 0; }
-abbr[title] { border-bottom: 1px dotted; }
-b, strong { font-weight: 700; }
-dfn { font-style: italic; }
-hr {
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- height: 0;
-}
-mark { background: #FF0; color: #000; }
-code, kbd, pre,
-samp { font-family: monospace, serif; font-size: 1em; }
-pre { white-space: pre-wrap; }
-q { quotes: "\201C" "\201D" "\2018" "\2019"; }
-small { font-size: 80%; }
-sub, sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
-}
-sup { top: -0.5em; }
-sub { bottom: -0.25em; }
-img { border: 0; }
-svg:not(:root) { overflow: hidden; }
-figure { margin: 0; }
-fieldset {
- border: 1px solid #c0c0c0;
- margin: 0 2px;
- padding: 0.35em 0.625em 0.75em;
-}
-legend { border: 0; padding: 0; }
-button, input, select,
-textarea { font-family: inherit; font-size: 100%; margin: 0; }
-button, input { line-height: normal; }
-button, select { text-transform: none; }
-button, html input[type="button"],
-input[type="reset"], input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
-}
-button[disabled], html input[disabled] { cursor: default; }
-input[type="checkbox"],
-input[type="radio"] { box-sizing: border-box; padding: 0; }
-input[type="search"] {
- -webkit-appearance: textfield;
- -moz-box-sizing: content-box;
- -webkit-box-sizing: content-box;
- box-sizing: content-box;
-}
-input[type="search"]::-webkit-search-cancel-button,
-input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
-button::-moz-focus-inner,
-input::-moz-focus-inner { border: 0; padding: 0; }
-textarea { overflow: auto; vertical-align: top; }
-table { border-collapse: collapse; border-spacing: 0; }
-
-
-/* ==========================================================================
- 1. Icons - Sets up the icon font and respective classes
- ========================================================================== */
-
-/* Import the font file with the icons in it */
-@font-face {
- font-family: 'genericons';
- src: url('../fonts/Genericons.eot');
- src: url('../fonts/Genericons.eot?#iefix') format('embedded-opentype'),
- url('../fonts/Genericons.woff') format('woff'),
- url('../fonts/Genericons.ttf') format('truetype'),
- url('../fonts/Genericons.svg#entypo') format('svg');
- font-weight: normal; font-style: normal;
-}
-
-/* Apply these base styles to all icons */
-[class^="icon-"]:before, [class*=" icon-"]:before {
- font-family: "genericons", "Open Sans", sans-serif;
- speak: none;
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- text-transform: none;
- line-height: 1;
- text-decoration: none !important;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
-}
-
-/* Each icon is created by inserting the correct character into the
- content of the :before pseudo element. Like a boss. */
-.icon-github:before {
- content: "\f200";
-}
-
-.icon-hugo:before{
- content:"\f216";
-}
-
-.icon-ghost:before {
- content: "\f100";
-}
-.icon-feed:before {
- content: "\f413";
-}
-.icon-twitter:before {
- content: "\f202";
-}
-.icon-google-plus:before {
- content: "\f206";
-}
-.icon-facebook:before {
- content: "\f203";
-}
-.icon-instagram:before {
- content: "\f215";
-}
-.icon-pinterest:before {
- content: "\f210";
-}
-.icon-linkedin:before {
- content: "\f208";
-}
-.icon-arrow-left:before {
- content: "\f431";
-}
-.icon-stats:before {
- content: "\f508";
-}
-.icon-location:before {
- content: "\f417";
-}
-.icon-link:before {
- content: "\f442";
-}
-
-
-/* ==========================================================================
- 2. General - Setting up some base styles
- ========================================================================== */
-
-html {
- height: 100%;
- max-height: 100%;
- font-size: 62.5%;
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-}
-
-body {
- height: 100%;
- max-height: 100%;
- font-family: "Merriweather", serif;
- letter-spacing: 0.01rem;
- font-size: 1.8rem;
- line-height: 1.75em;
- color: #3A4145;
- -webkit-font-feature-settings: 'kern' 1;
- -moz-font-feature-settings: 'kern' 1;
- -o-font-feature-settings: 'kern' 1;
- text-rendering: geometricPrecision;
-}
-
-::-moz-selection {
- background: #D6EDFF;
-}
-
-::selection {
- background: #D6EDFF;
-}
-
-h1, h2, h3,
-h4, h5, h6 {
- -webkit-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1;
- -moz-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1;
- -o-font-feature-settings: 'dlig' 1, 'liga' 1, 'lnum' 1, 'kern' 1;
- color: #2E2E2E;
- line-height: 1.15em;
- margin: 0 0 0.4em 0;
- font-family: "Open Sans", sans-serif;
- text-rendering: geometricPrecision;
-}
-
-h1 {
- font-size: 5rem;
- letter-spacing: -2px;
- text-indent: -3px;
-}
-
-h2 {
- font-size: 3.6rem;
- letter-spacing: -1px;
-}
-
-h3 {
- font-size: 3rem;
-}
-
-h4 {
- font-size: 2.5rem;
-}
-
-h5 {
- font-size: 2rem;
-}
-
-h6 {
- font-size: 2rem;
-}
-
-a {
- color: #4A4A4A;
- transition: color 0.3s ease;
-}
-
-a:hover {
- color: #111;
-}
-
-p, ul, ol, dl {
- -webkit-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
- -moz-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
- -o-font-feature-settings: 'liga' 1, 'onum' 1, 'kern' 1;
- margin: 0 0 1.75em 0;
- text-rendering: geometricPrecision;
-}
-
-ol, ul {
- padding-left: 3rem;
-}
-
-ol ol, ul ul,
-ul ol, ol ul {
- margin: 0 0 0.4em 0;
- padding-left: 2em;
-}
-
-dl dt {
- float: left;
- width: 180px;
- overflow: hidden;
- clear: left;
- text-align: right;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-weight: 700;
- margin-bottom: 1em;
-}
-
-dl dd {
- margin-left: 200px;
- margin-bottom: 1em
-}
-
-li {
- margin: 0.4em 0;
-}
-
-li li {
- margin: 0;
-}
-
-hr {
- display: block;
- height: 1px;
- border: 0;
- border-top: #EFEFEF 1px solid;
- margin: 3.2em 0;
- padding: 0;
-}
-
-blockquote {
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- margin: 1.75em 0 1.75em -2.2em;
- padding: 0 0 0 1.75em;
- border-left: #4A4A4A 0.4em solid;
-}
-
-blockquote p {
- margin: 0.8em 0;
- font-style: italic;
-}
-
-blockquote small {
- display: inline-block;
- margin: 0.8em 0 0.8em 1.5em;
- font-size: 0.9em;
- color: #CCC;
-}
-
-blockquote small:before { content: "\2014 \00A0"; }
-
-blockquote cite {
- font-weight: 700;
-}
-
-blockquote cite a { font-weight: normal; }
-
-mark {
- background-color: #FFC336;
-}
-
-code, tt {
- padding: 1px 3px;
- font-family: Inconsolata, monospace, sans-serif;
- font-size: 0.85em;
- white-space: pre-wrap;
- border: #E3EDF3 1px solid;
- background: #F7FAFB;
- border-radius: 2px;
-}
-
-pre {
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- margin: 0 0 1.75em 0;
- border: #E3EDF3 1px solid;
- width: 100%;
- padding: 10px;
- font-family: Inconsolata, monospace, sans-serif;
- font-size: 0.9em;
- white-space: pre;
- overflow: auto;
- background: #F7FAFB;
- border-radius: 3px;
-}
-
-pre code, pre tt {
- font-size: inherit;
- white-space: pre-wrap;
- background: transparent;
- border: none;
- padding: 0;
-}
-
-kbd {
- display: inline-block;
- margin-bottom: 0.4em;
- padding: 1px 8px;
- border: #CCC 1px solid;
- color: #666;
- text-shadow: #FFF 0 1px 0;
- font-size: 0.9em;
- font-weight: 700;
- background: #F4F4F4;
- border-radius: 4px;
- box-shadow:
- 0 1px 0 rgba(0, 0, 0, 0.2),
- 0 1px 0 0 #fff inset;
-}
-
-table {
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- margin: 1.75em 0;
- width: 100%;
- max-width: 100%;
- background-color: transparent;
-}
-
-table th,
-table td {
- padding: 8px;
- line-height: 20px;
- text-align: left;
- vertical-align: top;
- border-top: #EFEFEF 1px solid;
-}
-
-table th { color: #000; }
-
-table caption + thead tr:first-child th,
-table caption + thead tr:first-child td,
-table colgroup + thead tr:first-child th,
-table colgroup + thead tr:first-child td,
-table thead:first-child tr:first-child th,
-table thead:first-child tr:first-child td {
- border-top: 0;
-}
-
-table tbody + tbody { border-top: #EFEFEF 2px solid; }
-
-table table table { background-color: #FFF; }
-
-table tbody > tr:nth-child(odd) > td,
-table tbody > tr:nth-child(odd) > th {
- background-color: #F6F6F6;
-}
-
-table.plain tbody > tr:nth-child(odd) > td,
-table.plain tbody > tr:nth-child(odd) > th {
- background: transparent;
-}
-
-iframe, .fluid-width-video-wrapper {
- display: block;
- margin: 1.75em 0;
-}
-
-/* When a video is inside the fitvids wrapper, drop the
-margin on the iframe, cause it breaks stuff. */
-.fluid-width-video-wrapper iframe {
- margin: 0;
-}
-
-
-/* ==========================================================================
- 3. Utilities - These things get used a lot
- ========================================================================== */
-
-/* Clears shit */
-.clearfix:before,
-.clearfix:after {
- content: " ";
- display: table;
-}
-.clearfix:after { clear: both; }
-.clearfix { zoom: 1; }
-
-/* Hides shit */
-.hidden {
- text-indent: -9999px;
- visibility: hidden;
- display: none;
-}
-
-/* Creates a responsive wrapper that makes our content scale nicely */
-.inner {
- position: relative;
- width: 80%;
- max-width: 710px;
- margin: 0 auto;
-}
-
-/* Centres vertically yo. (IE8+) */
-.vertical {
- display: table-cell;
- vertical-align: middle;
-}
-
-/* Wraps the main content & footer */
-.site-wrapper {
- position: relative;
- z-index: 10;
- min-height: 100%;
- background: #fff;
- -webkit-transition: -webkit-transform 0.5s ease;
- transition: transform 0.5s ease;
-}
-
-body.nav-opened .site-wrapper {
- overflow-x: hidden;
- -webkit-transform: translate3D(-240px, 0, 0);
- -ms-transform: translate3D(-240px, 0, 0);
- transform: translate3D(-240px, 0, 0);
- -webkit-transition: -webkit-transform 0.3s ease;
- transition: transform 0.3s ease;
-}
-
-
-/* ==========================================================================
- 4. General - The main styles for the the theme
- ========================================================================== */
-
-/* Big cover image on the home page */
-.main-header {
- position: relative;
- display: table;
- width: 100%;
- height: 100vh;
- margin-bottom: 5rem;
- text-align: center;
- background: #222 no-repeat center center;
- background-size: cover;
- overflow: hidden;
-}
-
-.main-header .inner {
- width: 80%;
-}
-
-.main-nav {
- position: relative;
- padding: 35px 40px;
- margin: 0 0 30px 0;
-}
-
-.main-nav a {
- text-decoration: none;
- font-family: 'Open Sans', sans-serif;
-}
-
-/* Navigation */
-body.nav-opened .nav-cover {
- position: fixed;
- top: 0;
- left: 0;
- right: 240px;
- bottom: 0;
- z-index: 200;
-}
-
-.nav {
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- z-index: 5;
- width: 240px;
- opacity: 0;
- background: #111;
- margin-bottom: 0;
- text-align: left;
- overflow-y: auto;
- -webkit-transition: -webkit-transform 0.5s ease,
- opacity 0.3s ease 0.7s;
- transition: transform 0.5s ease,
- opacity 0.3s ease 0.7s;
-font-family: "Open Sans","Myriad Pro","Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,Verdana,sans-serif;
-font-weight: 700;
-font-size: 11px;
-color: #909090;
-}
-
-body.nav-closed .nav {
- -webkit-transform: translate3D(97px, 0, 0);
- -ms-transform: translate3D(97px, 0, 0);
- transform: translate3D(97px, 0, 0);
-}
-
-body.nav-opened .nav {
- opacity: 1;
- -webkit-transition: -webkit-transform 0.3s ease,
- opacity 0s ease 0s;
- transition: transform 0.3s ease,
- opacity 0s ease 0s;
- -webkit-transform: translate3D(0, 0, 0);
- -ms-transform: translate3D(0, 0, 0);
- transform: translate3D(0, 0, 0);
-}
-
-.nav-title {
- position: absolute;
- top: 45px;
- left: 30px;
- font-size: 16px;
- font-weight: 100;
- text-transform: uppercase;
- color: #fff;
-}
-
-.nav-close {
- position: absolute;
- top: 38px;
- right: 25px;
- width: 20px;
- height: 20px;
- padding: 0;
- font-size: 10px;
-}
-
-.nav-close:focus {
- outline: 0;
-}
-
-.nav-close:before,
-.nav-close:after {
- content: '';
- position: absolute;
- top: 0;
- width: 20px;
- height: 1px;
- background: rgb(150,150,150);
- top: 15px;
- -webkit-transition: background 0.15s ease;
- transition: background 0.15s ease;
-}
-
-.nav-close:before {
- -webkit-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- transform: rotate(45deg);
-}
-
-.nav-close:after {
- -webkit-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- transform: rotate(-45deg);
-}
-
-.nav-close:hover:before,
-.nav-close:hover:after {
- background: rgb(255,255,255);
-}
-
-.nav ul {
- padding: 90px 9% 5%;
- list-style: none;
- counter-reset: item;
-}
-
-.nav li:before {
- display: block;
- float: right;
- padding-right: 4%;
- padding-left: 5px;
- text-align: right;
- font-size: 1.2rem;
- vertical-align: bottom;
- color: #B8B8B8;
- content: counter(item, lower-roman);
- counter-increment: item;
-}
-.nav li {
- margin: 0;
-}
-.nav li a {
- text-decoration: none;
- line-height: 1.4;
- font-size: 1.4rem;
- display: block;
- padding: 0.6rem 4%;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
-}
-.nav li a:after {
- display: inline-block;
- content: " .......................................................";
- color: rgba(255,255,255,0.2);
- margin-left: 5px;
-}
-.nav .nav-current:before {
- color: #fff;
-}
-.nav .nav-current a:after {
- content: " ";
- border-bottom: rgba(255,255,255,0.5) 1px solid;
- width: 100%;
- height: 1px;
-}
-
-.nav a:link,
-.nav a:visited {
- color: #B8B8B8;
-}
-
-.nav li.nav-current a,
-.nav a:hover,
-.nav a:active,
-.nav a:focus {
- color: #fff;
-}
-
-.subscribe-button {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- display: block;
- position: absolute;
- bottom: 30px;
- left: 30px;
- right: 30px;
- height: 38px;
- padding: 0 20px;
- color: #111 !important;
- text-align: center;
- font-size: 12px;
- font-family: "Open Sans", sans-serif;
- text-transform: uppercase;
- text-decoration: none;
- line-height: 35px;
- border-radius: 3px;
- background: #fff;
- transition: all ease 0.3s;
-}
-.subscribe-button:before {
- font-size: 9px;
- margin-right: 6px;
-}
-
-
-/* Create a bouncing scroll-down arrow on homepage with cover image */
-.scroll-down {
- display: block;
- position: absolute;
- z-index: 100;
- bottom: 45px;
- left: 50%;
- margin-left: -16px;
- width: 34px;
- height: 34px;
- font-size: 44px;
- text-align: center;
- text-decoration: none;
- color: rgba(255,255,255,0.7);
- -webkit-animation: bounce 4s 2s infinite;
- animation: bounce 4s 2s infinite;
-}
-
-/* Stop it bouncing and increase contrast when hovered */
-.scroll-down:hover {
- color: #fff;
- -webkit-animation: none;
- animation: none;
-}
-
-/* Put a semi-opaque radial gradient behind the icon to make it more visible
- on photos which happen to have a light background. */
-.home-template .main-header:after {
- display: block;
- content: " ";
- width: 150px;
- height: 130px;
- border-radius: 100%;
- position: absolute;
- bottom: 0;
- left: 50%;
- margin-left: -75px;
- background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%,rgba(0,0,0,0) 70%,rgba(0,0,0,0) 100%);
-}
-
-/* Hide when there's no cover image or on page2+ */
-.no-cover .scroll-down,
-.no-cover.main-header:after,
-.archive-template .scroll-down,
-.archive-template .main-header:after {
- display: none
-}
-
-/* Appears in the top right corner of your home page */
-.blog-logo {
- display: block;
- float: left;
- background: none !important;
- border: none !important;
-}
-
-.blog-logo img {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- display: block;
- height: 38px;
- padding: 1px 0 5px 0;
- width: auto;
-}
-
-.menu-button {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- display: inline-block;
- float: right;
- height: 38px;
- padding: 0 15px;
- border: #bfc8cd 1px solid;
- opacity: 1;
- color: #9EABB3;
- text-align: center;
- font-size: 12px;
- text-transform: uppercase;
- line-height: 35px;
- white-space: nowrap;
- border-radius: 3px;
- background: rgba(0,0,0,0.1);
- transition: all 0.5s ease;
-}
-.menu-button:focus {
- outline: 0;
-}
-.menu-button .burger {
- font-size: 12px;
- margin-right: 6px;
-}
-
-body.nav-opened .menu-button {
- padding: 0 12px;
- background: #111 !important;
- border-color: #111 !important;
- color: #fff !important;
- -webkit-transform: translate3D(94px, 0, 0);
- -ms-transform: translate3D(94px, 0, 0);
- transform: translate3D(94px, 0, 0);
- transition: all 0.3s ease;
-}
-body.nav-opened .menu-button .word {
- opacity: 0;
- transition: all 0.3s ease;
-}
-
-/* Special styles when overlaid on an image*/
-.main-nav.overlay {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- height: 70px;
- border: none;
- background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
-}
-.no-cover .main-nav.overlay,
-.no-cover .menu-button {
- background: none;
-}
-
-.main-nav.overlay a {
- color: #fff;
-}
-
-.main-nav.overlay .menu-button {
- border-color: rgba(255,255,255,0.6);
-}
-
-.main-nav.overlay a:hover {
- color: #222;
- border-color: #fff;
- background: #fff;
-}
-
-/* Add a border to the buttons on hover */
-.menu-button:hover {
- border-color: #555;
- color: #555;
-}
-
-/* The details of your blog. Defined in ghost/settings/ */
-.page-title {
- margin: 10px 0 10px 0;
- font-size: 5rem;
- letter-spacing: -1px;
- font-weight: 700;
- font-family: "Open Sans", sans-serif;
- color: #fff;
-}
-
-.page-description {
- margin: 0;
- font-size: 2rem;
- line-height: 1.5em;
- font-weight: 400;
- font-family: "Merriweather", serif;
- letter-spacing: 0.01rem;
- color: rgba(255,255,255,0.8);
-}
-
-.no-cover.main-header {
- min-height: 160px;
- max-height: 40vh;
- background: #f5f8fa;
-}
-
-.no-cover .page-title {
- color: rgba(0,0,0,0.8);
-}
-
-.no-cover .page-description {
- color: rgba(0,0,0,0.5);
-}
-
-.no-cover .main-nav.overlay .menu-button {
- color: rgba(0,0,0,0.4);
- border-color: rgba(0,0,0,0.3);
-}
-
-/* Add subtle load-in animation for content on the home page */
-.home-template .page-title {
- -webkit-animation: fade-in-down 0.6s;
- animation: fade-in-down 0.6s;
- -webkit-animation-delay: 0.2s;
- animation-delay: 0.2s;
-}
-.home-template .page-description {
- -webkit-animation: fade-in-down 0.9s;
- animation: fade-in-down 0.9s;
- -webkit-animation-delay: 0.1s;
- animation-delay: 0.1s;
-}
-
-/* Every post, on every page, gets this style on its tag */
-.post{
- position: relative;
- width: 80%;
- max-width: 710px;
- margin: 4rem auto;
- padding-bottom: 4rem;
- border-bottom: #EBF2F6 1px solid;
- word-wrap: break-word;
- -moz-hyphens: auto;
- -ms-hyphens: auto;
- -webkit-hyphens: auto;
- hyphens: auto;
-}
-
-article {
- position: relative;
- width: 80%;
- max-width: 710px;
- margin: 4rem auto;
- padding-bottom: 4rem;
- border-bottom: #EBF2F6 1px solid;
- word-wrap: break-word;
- -moz-hyphens: auto;
- -ms-hyphens: auto;
- -webkit-hyphens: auto;
- hyphens: auto;
-}
-
-
-/* Add a little circle in the middle of the border-bottom on our .post
- just for the lolz and stylepoints. */
-.post:after {
- display: block;
- content: "";
- width: 7px;
- height: 7px;
- border: #E7EEF2 1px solid;
- position: absolute;
- bottom: -5px;
- left: 50%;
- margin-left: -5px;
- background: #FFF;
- border-radius: 100%;
- box-shadow: #FFF 0 0 0 5px;
-}
-
-body:not(.post-template) .post-title {
- font-size: 3.6rem;
-}
-
-.post-title a {
- text-decoration: none;
-}
-
-.post-excerpt p {
- margin: 0;
- font-size: 0.9em;
- line-height: 1.7em;
-}
-
-.read-more {
- text-decoration: none;
-}
-
-.post-meta {
- display: block;
- margin: 1.75rem 0 0 0;
- font-family: "Open Sans", sans-serif;
- font-size: 1.5rem;
- line-height: 2.2rem;
- color: #9EABB3;
-}
-
-.author-thumb {
- width: 24px;
- height: 24px;
- float: left;
- margin-right: 9px;
- border-radius: 100%;
-}
-
-.post-meta a {
- color: #9EABB3;
- text-decoration: none;
-}
-
-.post-meta a:hover {
- text-decoration: underline;
-}
-
-.user-meta {
- position: relative;
- padding: 0.3rem 40px 0 100px;
- min-height: 77px;
-}
-
-.post-date {
- display: inline-block;
- margin-left: 8px;
- padding-left: 12px;
- border-left: #d5dbde 1px solid;
- text-transform: uppercase;
- font-size: 1.3rem;
- white-space: nowrap;
-}
-
-.user-image {
- position: absolute;
- top: 0;
- left: 0;
-}
-
-.user-name {
- display: block;
- font-weight: 700;
-}
-
-.user-bio {
- display: block;
- max-width: 440px;
- font-size: 1.4rem;
- line-height: 1.5em;
-}
-
-.publish-meta {
- position: absolute;
- top: 0;
- right: 0;
- padding: 4.3rem 0 4rem 0;
- text-align: right;
-}
-
-.publish-heading {
- display: block;
- font-weight: 700;
-}
-
-.publish-date {
- display: block;
- font-size: 1.4rem;
- line-height: 1.5em;
-}
-
-
-/* ==========================================================================
- 5. Single Post - When you click on an individual post
- ========================================================================== */
-
-.post-template .post-header {
- margin-bottom: 3.4rem;
-}
-
-.post-template .post-title {
- margin-bottom: 0;
-}
-
-.post-template .post-meta {
- margin: 0;
-}
-
-.post-template .post-date {
- padding: 0;
- margin: 0;
- border: none;
-}
-
-/* Stop elements, such as img wider than the post content, from
- creating horizontal scroll - slight hack due to imperfections
- with browser width % calculations and rounding */
-.post-template .content {
- overflow: hidden;
-}
-
-/* Tweak the .post wrapper style */
-.post-template .post {
- margin-top: 0;
- border-bottom: none;
- padding-bottom: 0;
-}
-
-/* Kill that stylish little circle that was on the border, too */
-.post-template .post:after {
- display: none;
-}
-
-/* Keep images centered, and allow images wider than the main
- text column to break out. */
-.post-content img {
- display: block;
- max-width: 126%;
- height: auto;
- padding: 0.6em 0;
- /* Centers an image by (1) pushing its left edge to the
- center of its container and (2) shifting the entire image
- in the opposite direction by half its own width.
- Works for images that are larger than their containers. */
- position: relative;
- left: 50%;
- -webkit-transform: translateX(-50%); /* for Safari and iOS */
- -ms-transform: translateX(-50%); /* for IE9 */
- transform: translateX(-50%);
-}
-
-/* The author credit area after the post */
-.post-footer {
- position: relative;
- margin: 6rem 0 0 0;
- padding: 6rem 0 0 0;
- border-top: #EBF2F6 1px solid;
-}
-
-.post-footer h4 {
- font-size: 1.8rem;
- margin: 0;
-}
-
-.post-footer p {
- margin: 1rem 0;
- font-size: 1.4rem;
- line-height: 1.75em;
-}
-
-/* list of author links - location / url */
-.author-meta {
- padding: 0;
- margin: 0;
- list-style: none;
- font-size: 1.4rem;
- line-height: 1;
- font-style: italic;
- color: #9EABB3;
-}
-
-.author-meta a {
- color: #9EABB3;
-}
-.author-meta a:hover {
- color: #111;
-}
-
-/* Create some space to the right for the share links */
-.post-footer .author {
- margin-right: 180px;
-}
-
-.post-footer h4 a {
- color: #2e2e2e;
- text-decoration: none;
-}
-
-.post-footer h4 a:hover {
- text-decoration: underline;
-}
-
-/* Drop the share links in the space to the right.
- Doing it like this means it's easier for the author bio
- to be flexible at smaller screen sizes while the share
- links remain at a fixed width the whole time */
-.post-footer .share {
- position: absolute;
- top: 6rem;
- right: 0;
- width: 180px;
-}
-
-.post-footer .share a {
- font-size: 1.8rem;
- display: inline-block;
- margin: 1rem 1.6rem 1.6rem 0;
- color: #BBC7CC;
- text-decoration: none;
-}
-
-.post-footer .share a:hover {
- color: #50585D;
-}
-
-
-/* ==========================================================================
- 6. Author profile
- ========================================================================== */
-
-.post-head.main-header {
- height: 65vh;
- min-height: 180px;
-}
-
-.no-cover.post-head.main-header {
- height: 85px;
- min-height: 0;
- margin-bottom: 0;
- background: transparent;
-}
-
-.tag-head.main-header {
- height: 40vh;
- min-height: 180px;
-}
-
-.author-head.main-header {
- height: 40vh;
- min-height: 180px;
-}
-
-.no-cover.author-head.main-header {
- height: 10vh;
- min-height: 100px;
- background: transparent;
-}
-
-.author-profile {
- padding: 0 15px 5rem 15px;
- border-bottom: #EBF2F6 1px solid;
- text-align: center;
-}
-
-/* Add a little circle in the middle of the border-bottom */
-.author-profile:after {
- display: block;
- content: "";
- width: 7px;
- height: 7px;
- border: #E7EEF2 1px solid;
- position: absolute;
- bottom: -5px;
- left: 50%;
- margin-left: -5px;
- background: #FFF;
- border-radius: 100%;
- box-shadow: #FFF 0 0 0 5px;
-}
-
-.author-image {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- display: block;
- position: absolute;
- top: -40px;
- left: 50%;
- margin-left: -40px;
- width: 80px;
- height: 80px;
- border-radius: 100%;
- overflow: hidden;
- padding: 6px;
- background: #fff;
- z-index: 2;
- box-shadow: #E7EEF2 0 0 0 1px;
-}
-
-.author-image .img {
- position: relative;
- display: block;
- width: 100%;
- height: 100%;
- background-size: cover;
- background-position: center center;
- border-radius: 100%;
-}
-
-.author-profile .author-image {
- position: relative;
- left: auto;
- top: auto;
- width: 120px;
- height: 120px;
- padding: 3px;
- margin: -100px auto 0 auto;
- box-shadow: none;
-}
-
-.author-title {
- margin: 1.5rem 0 1rem;
-}
-
-.author-bio {
- font-size: 1.8rem;
- line-height: 1.5em;
- font-weight: 200;
- color: #50585D;
- letter-spacing: 0;
- text-indent: 0;
-}
-
-.author-meta {
- margin: 1.6rem 0;
-}
-/* Location, website, and link */
-.author-profile .author-meta {
- margin: 2rem 0;
- font-family: "Merriweather", serif;
- letter-spacing: 0.01rem;
- font-size: 1.7rem;
-}
-.author-meta span {
- display: inline-block;
- margin: 0 2rem 1rem 0;
- word-wrap: break-word;
-}
-.author-meta a {
- text-decoration: none;
-}
-
-/* Turn off meta for page2+ to make room for extra
- pagination prev/next links */
-.archive-template .author-profile .author-meta {
- display: none;
-}
-
-/* ==========================================================================
- 7. Third Party Elements - Embeds from other services
- ========================================================================== */
-
-/* Github */
-.gist table {
- margin: 0;
- font-size: 1.4rem;
-}
-.gist td {
- line-height: 1.4;
-}
-.gist .line-number {
- min-width: 25px;
-}
-
-/* Pastebin */
-.content .embedPastebin {
- margin-bottom: 1.75em;
-}
-
-/* ==========================================================================
- 8. Pagination - Tools to let you flick between pages
- ========================================================================== */
-
-/* The main wrapper for our pagination links */
-.pagination {
- position: relative;
- width: 80%;
- max-width: 710px;
- margin: 4rem auto;
- font-family: "Open Sans", sans-serif;
- font-size: 1.3rem;
- color: #9EABB3;
- text-align: center;
-}
-
-.pagination a {
- color: #9EABB3;
- transition: all 0.2s ease;
-}
-
-/* Push the previous/next links out to the left/right */
-.older-posts,
-.newer-posts {
- position: absolute;
- display: inline-block;
- padding: 0 15px;
- border: #bfc8cd 1px solid;
- text-decoration: none;
- border-radius: 4px;
- transition: border 0.3s ease;
-}
-
-.older-posts {
- right: 0;
-}
-
-.page-number {
- display: inline-block;
- padding: 2px 0;
- min-width: 100px;
-}
-
-.newer-posts {
- left: 0;
-}
-
-.older-posts:hover,
-.newer-posts:hover {
- color: #889093;
- border-color: #98a0a4;
-}
-
-.extra-pagination {
- display: none;
- border-bottom: #EBF2F6 1px solid;
-}
-.extra-pagination:after {
- display: block;
- content: "";
- width: 7px;
- height: 7px;
- border: #E7EEF2 1px solid;
- position: absolute;
- bottom: -5px;
- left: 50%;
- margin-left: -5px;
- background: #FFF;
- border-radius: 100%;
- box-shadow: #FFF 0 0 0 5px;
-}
-.extra-pagination .pagination {
- width: auto;
-}
-
-/* On page2+ make all the headers smaller */
-.archive-template .main-header {
- max-height: 30vh;
-}
-
-/* On page2+ show extra pagination controls at the top of post list */
-.archive-template .extra-pagination {
- display: block;
-}
-
-
-/* ==========================================================================
- 9. Footer - The bottom of every page
- ========================================================================== */
-
-.site-footer {
- position: relative;
- margin: 8rem 0 0 0;
- padding: 0.5rem 15px;
- border-top: #EBF2F6 1px solid;
- font-family: "Open Sans", sans-serif;
- font-size: 1rem;
- line-height: 1.75em;
- color: #BBC7CC;
-}
-
-.site-footer a {
- color: #BBC7CC;
- text-decoration: none;
- font-weight: bold;
-}
-
-.site-footer a:hover {
- color: #50585D;
-}
-
-.poweredby {
- display: block;
- width: 45%;
- float: right;
- text-align: right;
-}
-
-.copyright {
- display: block;
- width: 45%;
- float: left;
-}
-
-
-/* ==========================================================================
- 10. Media Queries - Smaller than 900px
- ========================================================================== */
-
-@media only screen and (max-width: 900px) {
-
- blockquote {
- margin-left: 0;
- }
-
- .main-header {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- height: auto;
- min-height: 240px;
- height: 60vh;
- padding: 15% 0;
- }
-
- .scroll-down,
- .home-template .main-header:after { display: none; }
-
- .archive-template .main-header {
- min-height: 180px;
- padding: 10% 0;
- }
-
- .blog-logo img {
- padding: 4px 0;
- }
-
- .page-title {
- font-size: 4rem;
- letter-spacing: -1px;
- }
-
- .page-description {
- font-size: 1.8rem;
- line-height: 1.5em;
- }
-
- .post {
- font-size: 0.95em
- }
-
- body:not(.post-template) .post-title {
- font-size: 3.2rem;
- }
-
- hr {
- margin: 2.4em 0;
- }
-
- ol, ul {
- padding-left: 2em;
- }
-
- h1 {
- font-size: 4.5rem;
- text-indent: -2px;
- }
-
- h2 {
- font-size: 3.6rem;
- }
-
- h3 {
- font-size: 3.1rem;
- }
-
- h4 {
- font-size: 2.5rem;
- }
-
- h5 {
- font-size: 2.2rem;
- }
-
- h6 {
- font-size: 1.8rem;
- }
-
- .author-profile {
- padding-bottom: 4rem;
- }
-
- .author-profile .author-bio {
- font-size: 1.6rem;
- }
-
- .author-meta span {
- display: block;
- margin: 1.5rem 0;
- }
- .author-profile .author-meta span {
- font-size: 1.6rem;
- }
-
- .post-head.main-header {
- height:45vh;
- }
-
- .tag-head.main-header,
- .author-head.main-header {
- height: 30vh;
- }
-
- .no-cover.post-head.main-header {
- height: 55px;
- padding: 0;
- }
-
- .no-cover.author-head.main-header {
- padding: 0;
- }
-
-}
-
-
-/* ==========================================================================
- 11. Media Queries - Smaller than 500px
- ========================================================================== */
-
-@media only screen and (max-width: 500px) {
-
- .main-header {
- margin-bottom: 15px;
- height: 40vh;
- }
-
- .no-cover.main-header {
- height: 30vh;
- }
-
- .archive-template .main-header {
- max-height: 20vh;
- min-height: 160px;
- padding: 10% 0;
- }
-
- .main-nav {
- padding: 5px;
- margin-bottom: 2rem;
- }
-
- .blog-logo {
- padding: 5px;
- }
-
- .blog-logo img {
- height: 30px;
- }
-
- .menu-button {
- padding: 0 5px;
- border-radius: 0;
- border-color: transparent;
- color: #2e2e2e;
- background: transparent;
- }
- .menu-button:hover {
- color: #2e2e2e;
- border-color: transparent;
- background: none;
- }
- body.nav-opened .menu-button {
- background: none !important;
- border: transparent !important;
- }
-
- .main-nav.overlay a:hover {
- color: #fff;
- border-color: transparent;
- background: transparent;
- }
-
- .no-cover .main-nav.overlay {
- background: none;
- }
- .no-cover .main-nav.overlay .menu-button {
- border: none;
- }
-
- .main-nav.overlay .menu-button {
- border-color: transparent;
- }
-
- .nav-title {
- top: 25px;
-
- }
-
- .nav-close {
- position: absolute;
- top: 18px;
- }
-
- .nav ul {
- padding: 60px 9% 5%;
- }
-
- .inner,
- .pagination {
- width: auto;
- margin: 2rem auto;
- }
-
- .post {
- width: auto;
- margin-top: 2rem;
- margin-bottom: 2rem;
- margin-left: 16px;
- margin-right: 16px;
- padding-bottom: 2rem;
- line-height: 1.65em;
- }
-
- .post-date {
- display: none;
- }
-
- .post-template .post-header {
- margin-bottom: 2rem;
- }
-
- .post-template .post-date {
- display: inline-block;
- }
-
- hr {
- margin: 1.75em 0;
- }
-
- p, ul, ol, dl {
- font-size: 0.95em;
- margin: 0 0 2.5rem 0;
- }
-
- .page-title {
- font-size: 3rem;
- }
-
- .post-excerpt p {
- font-size: 0.85em;
- }
-
- .page-description {
- font-size: 1.6rem;
- }
-
- h1, h2, h3,
- h4, h5, h6 {
- margin: 0 0 0.3em 0;
- }
-
- h1 {
- font-size: 2.8rem;
- letter-spacing: -1px;
- }
-
- h2 {
- font-size: 2.4rem;
- letter-spacing: 0;
- }
-
- h3 {
- font-size: 2.1rem;
- }
-
- h4 {
- font-size: 1.9rem;
- }
-
- h5 {
- font-size: 1.8rem;
- }
-
- h6 {
- font-size: 1.8rem;
- }
-
- body:not(.post-template) .post-title {
- font-size: 2.5rem;
- }
-
- .post-template .post {
- padding-bottom: 0;
- margin-bottom: 0;
- }
-
- .post-template .site-footer {
- margin-top: 0;
- }
-
- .post-content img {
- padding: 0;
- width: calc(100% + 32px); /* expand with to image + margins */
- min-width: 0;
- max-width: 112%; /* fallback when calc doesn't work */
- }
-
- .post-meta {
- font-size: 1.3rem;
- margin-top: 1rem;
- }
-
- .post-footer {
- padding: 5rem 0 3rem 0;
- text-align: center;
- }
-
- .post-footer .author {
- margin: 0 0 2rem 0;
- padding: 0 0 1.6rem 0;
- border-bottom: #EBF2F6 1px dashed;
- }
-
- .post-footer .share {
- position: static;
- width: auto;
- }
-
- .post-footer .share a {
- margin: 1.4rem 0.8rem 0 0.8rem;
- }
-
- .author-meta li {
- float: none;
- margin: 0;
- line-height: 1.75em;
- }
-
- .author-meta li:before {
- display: none;
- }
-
- .older-posts,
- .newer-posts {
- position: static;
- margin: 10px 0;
- }
-
- .page-number {
- display: block;
- }
-
- .site-footer {
- margin-top: 3rem;
- }
-
- .author-profile {
- padding-bottom: 2rem;
- }
-
- .post-head.main-header {
- height: 30vh;
- }
-
- .tag-head.main-header,
- .author-head.main-header {
- height: 20vh;
- }
-
- .author-profile .author-image {
- margin-top: -70px;
- }
-
- .author-profile .author-meta span {
- font-size: 1.4rem;
- }
-
- .archive-template .main-header .page-description {
- display: none;
- }
-
-}
-
-
-/* ==========================================================================
- 12. Animations
- ========================================================================== */
-
-/* Used to fade in title/desc on the home page */
-@-webkit-keyframes fade-in-down {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-10px);
- transform: translateY(-10px);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
-}
-@keyframes fade-in-down {
- 0% {
- opacity: 0;
- -webkit-transform: translateY(-10px);
- transform: translateY(-10px);
- }
- 100% {
- opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
-}
-
-/* Used to bounce .scroll-down on home page */
-@-webkit-keyframes bounce {
- 0%, 10%, 25%, 40%, 50% {
- -webkit-transform: translateY(0) ;
- transform: translateY(0) ;
- }
- 20% {
- -webkit-transform: translateY(-10px) ;
- transform: translateY(-10px) ;
- }
- 30% {
- -webkit-transform: translateY(-5px) ;
- transform: translateY(-5px) ;
- }
-}
-@keyframes bounce {
- 0%, 20%, 50%, 80%, 100% {
- -webkit-transform: translateY(0) ;
- transform: translateY(0) ;
- }
- 40% {
- -webkit-transform: translateY(-10px) ;
- transform: translateY(-10px) ;
- }
- 60% {
- -webkit-transform: translateY(-5px) ;
- transform: translateY(-5px) ;
- }
-}
-
-
-/* ==========================================================================
- End of file. Animations should be the last thing here. Do not add stuff
- below this point, or it will probably fuck everything up.
- ========================================================================== */
diff --git a/themes/canterville/assets/js/index.js b/themes/canterville/assets/js/index.js
deleted file mode 100644
index aacb397d..00000000
--- a/themes/canterville/assets/js/index.js
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- * Main JS file for Casper behaviours
- */
-
-/* globals jQuery, document */
-(function ($, undefined) {
- "use strict";
-
- var $document = $(document);
-
- $document.ready(function () {
-
- var $postContent = $(".post-content");
- $postContent.fitVids();
-
- $(".scroll-down").arctic_scroll();
-
- $(".menu-button[href='#'], .nav-cover, .nav-close").on("click", function(e){
- e.preventDefault();
- $("body").toggleClass("nav-opened nav-closed");
- });
-
- });
-
- // Arctic Scroll by Paul Adam Davis
- // https://github.com/PaulAdamDavis/Arctic-Scroll
- $.fn.arctic_scroll = function (options) {
-
- var defaults = {
- elem: $(this),
- speed: 500
- },
-
- allOptions = $.extend(defaults, options);
-
- allOptions.elem.click(function (event) {
- event.preventDefault();
- var $this = $(this),
- $htmlBody = $('html, body'),
- offset = ($this.attr('data-offset')) ? $this.attr('data-offset') : false,
- position = ($this.attr('data-position')) ? $this.attr('data-position') : false,
- toMove;
-
- if (offset) {
- toMove = parseInt(offset);
- $htmlBody.stop(true, false).animate({scrollTop: ($(this.hash).offset().top + toMove) }, allOptions.speed);
- } else if (position) {
- toMove = parseInt(position);
- $htmlBody.stop(true, false).animate({scrollTop: toMove }, allOptions.speed);
- } else {
- $htmlBody.stop(true, false).animate({scrollTop: ($(this.hash).offset().top) }, allOptions.speed);
- }
- });
-
- };
-})(jQuery);
diff --git a/themes/canterville/assets/js/jquery.fitvids.js b/themes/canterville/assets/js/jquery.fitvids.js
deleted file mode 100644
index b9b8d5d2..00000000
--- a/themes/canterville/assets/js/jquery.fitvids.js
+++ /dev/null
@@ -1,67 +0,0 @@
-/*global jQuery */
-/*jshint browser:true */
-/*!
-* FitVids 1.1
-*
-* Copyright 2013, Chris Coyier - http://css-tricks.com + Dave Rupert - http://daverupert.com
-* Credit to Thierry Koblentz - http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
-* Released under the WTFPL license - http://sam.zoy.org/wtfpl/
-*
-*/
-
-(function( $ ){
-
- "use strict";
-
- $.fn.fitVids = function( options ) {
- var settings = {
- customSelector: null
- };
-
- if(!document.getElementById('fit-vids-style')) {
- // appendStyles: https://github.com/toddmotto/fluidvids/blob/master/dist/fluidvids.js
- var head = document.head || document.getElementsByTagName('head')[0];
- var css = '.fluid-width-video-wrapper{width:100%;position:relative;padding:0;}.fluid-width-video-wrapper iframe,.fluid-width-video-wrapper object,.fluid-width-video-wrapper embed {position:absolute;top:0;left:0;width:100%;height:100%;}';
- var div = document.createElement('div');
- div.innerHTML = 'x
';
- head.appendChild(div.childNodes[1]);
- }
-
- if ( options ) {
- $.extend( settings, options );
- }
-
- return this.each(function(){
- var selectors = [
- "iframe[src*='player.vimeo.com']",
- "iframe[src*='youtube.com']",
- "iframe[src*='youtube-nocookie.com']",
- "iframe[src*='kickstarter.com'][src*='video.html']",
- "object",
- "embed"
- ];
-
- if (settings.customSelector) {
- selectors.push(settings.customSelector);
- }
-
- var $allVideos = $(this).find(selectors.join(','));
- $allVideos = $allVideos.not("object object"); // SwfObj conflict patch
-
- $allVideos.each(function(){
- var $this = $(this);
- if (this.tagName.toLowerCase() === 'embed' && $this.parent('object').length || $this.parent('.fluid-width-video-wrapper').length) { return; }
- var height = ( this.tagName.toLowerCase() === 'object' || ($this.attr('height') && !isNaN(parseInt($this.attr('height'), 10))) ) ? parseInt($this.attr('height'), 10) : $this.height(),
- width = !isNaN(parseInt($this.attr('width'), 10)) ? parseInt($this.attr('width'), 10) : $this.width(),
- aspectRatio = height / width;
- if(!$this.attr('id')){
- var videoID = 'fitvid' + Math.floor(Math.random()*999999);
- $this.attr('id', videoID);
- }
- $this.wrap('').parent('.fluid-width-video-wrapper').css('padding-top', (aspectRatio * 100)+"%");
- $this.removeAttr('height').removeAttr('width');
- });
- });
- };
-// Works with either jQuery or Zepto
-})( window.jQuery || window.Zepto );
diff --git a/themes/canterville/assets/js/jquery.js b/themes/canterville/assets/js/jquery.js
deleted file mode 100644
index 25714ed2..00000000
--- a/themes/canterville/assets/js/jquery.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v2.1.3 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.3",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)+1>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=hb(),z=hb(),A=hb(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N=M.replace("w","w#"),O="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+N+"))|)"+L+"*\\]",P=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+O+")*)|.*)\\)|)",Q=new RegExp(L+"+","g"),R=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),S=new RegExp("^"+L+"*,"+L+"*"),T=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),U=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),V=new RegExp(P),W=new RegExp("^"+N+"$"),X={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+O),PSEUDO:new RegExp("^"+P),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},eb=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(fb){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function gb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],k=b.nodeType,"string"!=typeof a||!a||1!==k&&9!==k&&11!==k)return d;if(!e&&p){if(11!==k&&(f=_.exec(a)))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return H.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName)return H.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=1!==k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+rb(o[l]);w=ab.test(a)&&pb(b.parentNode)||b,x=o.join(",")}if(x)try{return H.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function hb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ib(a){return a[u]=!0,a}function jb(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function kb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function lb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function nb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function ob(a){return ib(function(b){return b=+b,ib(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function pb(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=gb.support={},f=gb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=gb.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=g.documentElement,e=g.defaultView,e&&e!==e.top&&(e.addEventListener?e.addEventListener("unload",eb,!1):e.attachEvent&&e.attachEvent("onunload",eb)),p=!f(g),c.attributes=jb(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=jb(function(a){return a.appendChild(g.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(g.getElementsByClassName),c.getById=jb(function(a){return o.appendChild(a).id=u,!g.getElementsByName||!g.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(g.querySelectorAll))&&(jb(function(a){o.appendChild(a).innerHTML="",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),jb(function(a){var b=g.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&jb(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",P)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===g||a.ownerDocument===v&&t(v,a)?-1:b===g||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,h=[a],i=[b];if(!e||!f)return a===g?-1:b===g?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return lb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?lb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},g):n},gb.matches=function(a,b){return gb(a,null,null,b)},gb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return gb(b,n,null,[a]).length>0},gb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},gb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},gb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},gb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=gb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=gb.selectors={cacheLength:50,createPseudo:ib,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||gb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&gb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=gb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(Q," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||gb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ib(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ib(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?ib(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ib(function(a){return function(b){return gb(a,b).length>0}}),contains:ib(function(a){return a=a.replace(cb,db),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ib(function(a){return W.test(a||"")||gb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:ob(function(){return[0]}),last:ob(function(a,b){return[b-1]}),eq:ob(function(a,b,c){return[0>c?c+b:c]}),even:ob(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:ob(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:ob(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:ob(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function sb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function tb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ub(a,b,c){for(var d=0,e=b.length;e>d;d++)gb(a,b[d],c);return c}function vb(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function wb(a,b,c,d,e,f){return d&&!d[u]&&(d=wb(d)),e&&!e[u]&&(e=wb(e,f)),ib(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ub(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:vb(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=vb(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=vb(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function xb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=sb(function(a){return a===b},h,!0),l=sb(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[sb(tb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return wb(i>1&&tb(m),i>1&&rb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&xb(a.slice(i,e)),f>e&&xb(a=a.slice(e)),f>e&&rb(a))}m.push(c)}return tb(m)}function yb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=F.call(i));s=vb(s)}H.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&gb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?ib(f):f}return h=gb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=xb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,yb(e,d)),f.selector=a}return f},i=gb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&pb(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&rb(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&pb(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=jb(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),jb(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||kb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&jb(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||kb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),jb(function(a){return null==a.getAttribute("disabled")})||kb(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),gb}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+K.uid++}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)
-},removeData:function(a,b){M.remove(a,b)},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*\s*$/g,ib={option:[1,""],thead:[1,""],col:[2,""],tr:[2,""],td:[3,""],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1>$2>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1>$2>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,"script"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("")).appendTo(b.documentElement),b=qb[0].contentDocument,b.write(),b.close(),c=sb(a,b),qb.detach()),rb[a]=c),c}var ub=/^margin/,vb=new RegExp("^("+Q+")(?!px)[a-z%]+$","i"),wb=function(b){return b.ownerDocument.defaultView.opener?b.ownerDocument.defaultView.getComputedStyle(b,null):a.getComputedStyle(b,null)};function xb(a,b,c){var d,e,f,g,h=a.style;return c=c||wb(a),c&&(g=c.getPropertyValue(b)||c[b]),c&&(""!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),vb.test(g)&&ub.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0!==g?g+"":g}function yb(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}!function(){var b,c,d=l.documentElement,e=l.createElement("div"),f=l.createElement("div");if(f.style){f.style.backgroundClip="content-box",f.cloneNode(!0).style.backgroundClip="",k.clearCloneStyle="content-box"===f.style.backgroundClip,e.style.cssText="border:0;width:0;height:0;top:0;left:-9999px;margin-top:1px;position:absolute",e.appendChild(f);function g(){f.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;display:block;margin-top:1%;top:1%;border:1px;padding:1px;width:4px;position:absolute",f.innerHTML="",d.appendChild(e);var g=a.getComputedStyle(f,null);b="1%"!==g.top,c="4px"===g.width,d.removeChild(e)}a.getComputedStyle&&n.extend(k,{pixelPosition:function(){return g(),b},boxSizingReliable:function(){return null==c&&g(),c},reliableMarginRight:function(){var b,c=f.appendChild(l.createElement("div"));return c.style.cssText=f.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",c.style.marginRight=c.style.width="0",f.style.width="1px",d.appendChild(e),b=!parseFloat(a.getComputedStyle(c,null).marginRight),d.removeChild(e),f.removeChild(c),b}})}}(),n.swap=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};var zb=/^(none|table(?!-c[ea]).+)/,Ab=new RegExp("^("+Q+")(.*)$","i"),Bb=new RegExp("^([+-])=("+Q+")","i"),Cb={position:"absolute",visibility:"hidden",display:"block"},Db={letterSpacing:"0",fontWeight:"400"},Eb=["Webkit","O","Moz","ms"];function Fb(a,b){if(b in a)return b;var c=b[0].toUpperCase()+b.slice(1),d=b,e=Eb.length;while(e--)if(b=Eb[e]+c,b in a)return b;return d}function Gb(a,b,c){var d=Ab.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function Hb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+R[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+R[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+R[f]+"Width",!0,e))):(g+=n.css(a,"padding"+R[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+R[f]+"Width",!0,e)));return g}function Ib(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=wb(a),g="border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=xb(a,b,f),(0>e||null==e)&&(e=a.style[b]),vb.test(e))return e;d=g&&(k.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+Hb(a,b,c||(g?"border":"content"),d,f)+"px"}function Jb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=L.get(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&S(d)&&(f[g]=L.access(d,"olddisplay",tb(d.nodeName)))):(e=S(d),"none"===c&&e||L.set(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=xb(a,"opacity");return""===c?"1":c}}}},cssNumber:{columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;return b=n.cssProps[h]||(n.cssProps[h]=Fb(i,h)),g=n.cssHooks[b]||n.cssHooks[h],void 0===c?g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b]:(f=typeof c,"string"===f&&(e=Bb.exec(c))&&(c=(e[1]+1)*e[2]+parseFloat(n.css(a,b)),f="number"),null!=c&&c===c&&("number"!==f||n.cssNumber[h]||(c+="px"),k.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),g&&"set"in g&&void 0===(c=g.set(a,c,d))||(i[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=Fb(a.style,h)),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=xb(a,b,d)),"normal"===e&&b in Db&&(e=Db[b]),""===c||c?(f=parseFloat(e),c===!0||n.isNumeric(f)?f||0:e):e}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?zb.test(n.css(a,"display"))&&0===a.offsetWidth?n.swap(a,Cb,function(){return Ib(a,b,d)}):Ib(a,b,d):void 0},set:function(a,c,d){var e=d&&wb(a);return Gb(a,c,d?Hb(a,b,d,"border-box"===n.css(a,"boxSizing",!1,e),e):0)}}}),n.cssHooks.marginRight=yb(k.reliableMarginRight,function(a,b){return b?n.swap(a,{display:"inline-block"},xb,[a,"marginRight"]):void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+R[d]+b]=f[d]||f[d-2]||f[0];return e}},ub.test(a)||(n.cssHooks[a+b].set=Gb)}),n.fn.extend({css:function(a,b){return J(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=wb(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length>1)},show:function(){return Jb(this,!0)},hide:function(){return Jb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){S(this)?n(this).show():n(this).hide()})}});function Kb(a,b,c,d,e){return new Kb.prototype.init(a,b,c,d,e)}n.Tween=Kb,Kb.prototype={constructor:Kb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=Kb.propHooks[this.prop];return a&&a.get?a.get(this):Kb.propHooks._default.get(this)},run:function(a){var b,c=Kb.propHooks[this.prop];return this.pos=b=this.options.duration?n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):Kb.propHooks._default.set(this),this}},Kb.prototype.init.prototype=Kb.prototype,Kb.propHooks={_default:{get:function(a){var b;return null==a.elem[a.prop]||a.elem.style&&null!=a.elem.style[a.prop]?(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0):a.elem[a.prop]},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):a.elem.style&&(null!=a.elem.style[n.cssProps[a.prop]]||n.cssHooks[a.prop])?n.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},Kb.propHooks.scrollTop=Kb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},n.fx=Kb.prototype.init,n.fx.step={};var Lb,Mb,Nb=/^(?:toggle|show|hide)$/,Ob=new RegExp("^(?:([+-])=|)("+Q+")([a-z%]*)$","i"),Pb=/queueHooks$/,Qb=[Vb],Rb={"*":[function(a,b){var c=this.createTween(a,b),d=c.cur(),e=Ob.exec(b),f=e&&e[3]||(n.cssNumber[a]?"":"px"),g=(n.cssNumber[a]||"px"!==f&&+d)&&Ob.exec(n.css(c.elem,a)),h=1,i=20;if(g&&g[3]!==f){f=f||g[3],e=e||[],g=+d||1;do h=h||".5",g/=h,n.style(c.elem,a,g+f);while(h!==(h=c.cur()/d)&&1!==h&&--i)}return e&&(g=c.start=+g||+d||0,c.unit=f,c.end=e[1]?g+(e[1]+1)*e[2]:+e[2]),c}]};function Sb(){return setTimeout(function(){Lb=void 0}),Lb=n.now()}function Tb(a,b){var c,d=0,e={height:a};for(b=b?1:0;4>d;d+=2-b)c=R[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function Ub(a,b,c){for(var d,e=(Rb[b]||[]).concat(Rb["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function Vb(a,b,c){var d,e,f,g,h,i,j,k,l=this,m={},o=a.style,p=a.nodeType&&S(a),q=L.get(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,l.always(function(){l.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[o.overflow,o.overflowX,o.overflowY],j=n.css(a,"display"),k="none"===j?L.get(a,"olddisplay")||tb(a.nodeName):j,"inline"===k&&"none"===n.css(a,"float")&&(o.display="inline-block")),c.overflow&&(o.overflow="hidden",l.always(function(){o.overflow=c.overflow[0],o.overflowX=c.overflow[1],o.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],Nb.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(p?"hide":"show")){if("show"!==e||!q||void 0===q[d])continue;p=!0}m[d]=q&&q[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(m))"inline"===("none"===j?tb(a.nodeName):j)&&(o.display=j);else{q?"hidden"in q&&(p=q.hidden):q=L.access(a,"fxshow",{}),f&&(q.hidden=!p),p?n(a).show():l.done(function(){n(a).hide()}),l.done(function(){var b;L.remove(a,"fxshow");for(b in m)n.style(a,b,m[b])});for(d in m)g=Ub(p?q[d]:0,d,l),d in q||(q[d]=g.start,p&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function Wb(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function Xb(a,b,c){var d,e,f=0,g=Qb.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=Lb||Sb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:Lb||Sb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;for(Wb(k,j.opts.specialEasing);g>f;f++)if(d=Qb[f].call(j,a,k,j.opts))return d;return n.map(k,Ub,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(Xb,{tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");for(var c,d=0,e=a.length;e>d;d++)c=a[d],Rb[c]=Rb[c]||[],Rb[c].unshift(b)},prefilter:function(a,b){b?Qb.unshift(a):Qb.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,(null==d.queue||d.queue===!0)&&(d.queue="fx"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(S).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=Xb(this,n.extend({},a),f);(e||L.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=L.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&Pb.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));(b||!c)&&n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=L.get(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(Tb(b,!0),a,d,e)}}),n.each({slideDown:Tb("show"),slideUp:Tb("hide"),slideToggle:Tb("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=0,c=n.timers;for(Lb=n.now();b1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(a&&3!==f&&8!==f&&2!==f)return typeof a.getAttribute===U?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),d=n.attrHooks[b]||(n.expr.match.bool.test(b)?Zb:Yb)),void 0===c?d&&"get"in d&&null!==(e=d.get(a,b))?e:(e=n.find.attr(a,b),null==e?void 0:e):null!==c?d&&"set"in d&&void 0!==(e=d.set(a,c,b))?e:(a.setAttribute(b,c+""),c):void n.removeAttr(a,b))
-},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(E);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)&&(a[d]=!1),a.removeAttribute(c)},attrHooks:{type:{set:function(a,b){if(!k.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}}}),Zb={set:function(a,b,c){return b===!1?n.removeAttr(a,c):a.setAttribute(c,c),c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=$b[b]||n.find.attr;$b[b]=function(a,b,d){var e,f;return d||(f=$b[b],$b[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,$b[b]=f),e}});var _b=/^(?:input|select|textarea|button)$/i;n.fn.extend({prop:function(a,b){return J(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[n.propFix[a]||a]})}}),n.extend({propFix:{"for":"htmlFor","class":"className"},prop:function(a,b,c){var d,e,f,g=a.nodeType;if(a&&3!==g&&8!==g&&2!==g)return f=1!==g||!n.isXMLDoc(a),f&&(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){return a.hasAttribute("tabindex")||_b.test(a.nodeName)||a.href?a.tabIndex:-1}}}}),k.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this});var ac=/[\t\r\n\f]/g;n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h="string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ac," "):" ")){f=0;while(e=b[f++])d.indexOf(" "+e+" ")<0&&(d+=e+" ");g=n.trim(d),c.className!==g&&(c.className=g)}return this},removeClass:function(a){var b,c,d,e,f,g,h=0===arguments.length||"string"==typeof a&&a,i=0,j=this.length;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,this.className))});if(h)for(b=(a||"").match(E)||[];j>i;i++)if(c=this[i],d=1===c.nodeType&&(c.className?(" "+c.className+" ").replace(ac," "):"")){f=0;while(e=b[f++])while(d.indexOf(" "+e+" ")>=0)d=d.replace(" "+e+" "," ");g=a?n.trim(d):"",c.className!==g&&(c.className=g)}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):this.each(n.isFunction(a)?function(c){n(this).toggleClass(a.call(this,c,this.className,b),b)}:function(){if("string"===c){var b,d=0,e=n(this),f=a.match(E)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else(c===U||"boolean"===c)&&(this.className&&L.set(this,"__className__",this.className),this.className=this.className||a===!1?"":L.get(this,"__className__")||"")})},hasClass:function(a){for(var b=" "+a+" ",c=0,d=this.length;d>c;c++)if(1===this[c].nodeType&&(" "+this[c].className+" ").replace(ac," ").indexOf(b)>=0)return!0;return!1}});var bc=/\r/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(bc,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a))}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],!(!c.selected&&i!==e||(k.optDisabled?c.disabled:null!==c.getAttribute("disabled"))||c.parentNode.disabled&&n.nodeName(c.parentNode,"optgroup"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=n.inArray(d.value,f)>=0)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>=0:void 0}},k.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}});var cc=n.now(),dc=/\?/;n.parseJSON=function(a){return JSON.parse(a+"")},n.parseXML=function(a){var b,c;if(!a||"string"!=typeof a)return null;try{c=new DOMParser,b=c.parseFromString(a,"text/xml")}catch(d){b=void 0}return(!b||b.getElementsByTagName("parsererror").length)&&n.error("Invalid XML: "+a),b};var ec=/#.*$/,fc=/([?&])_=[^&]*/,gc=/^(.*?):[ \t]*([^\r\n]*)$/gm,hc=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,ic=/^(?:GET|HEAD)$/,jc=/^\/\//,kc=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,lc={},mc={},nc="*/".concat("*"),oc=a.location.href,pc=kc.exec(oc.toLowerCase())||[];function qc(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(E)||[];if(n.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function rc(a,b,c,d){var e={},f=a===mc;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function sc(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&n.extend(!0,a,d),a}function tc(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function uc(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:oc,type:"GET",isLocal:hc.test(pc[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":nc,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?sc(sc(a,n.ajaxSettings),b):sc(n.ajaxSettings,a)},ajaxPrefilter:qc(lc),ajaxTransport:qc(mc),ajax:function(a,b){"object"==typeof a&&(b=a,a=void 0),b=b||{};var c,d,e,f,g,h,i,j,k=n.ajaxSetup({},b),l=k.context||k,m=k.context&&(l.nodeType||l.jquery)?n(l):n.event,o=n.Deferred(),p=n.Callbacks("once memory"),q=k.statusCode||{},r={},s={},t=0,u="canceled",v={readyState:0,getResponseHeader:function(a){var b;if(2===t){if(!f){f={};while(b=gc.exec(e))f[b[1].toLowerCase()]=b[2]}b=f[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===t?e:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return t||(a=s[c]=s[c]||a,r[a]=b),this},overrideMimeType:function(a){return t||(k.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>t)for(b in a)q[b]=[q[b],a[b]];else v.always(a[v.status]);return this},abort:function(a){var b=a||u;return c&&c.abort(b),x(0,b),this}};if(o.promise(v).complete=p.add,v.success=v.done,v.error=v.fail,k.url=((a||k.url||oc)+"").replace(ec,"").replace(jc,pc[1]+"//"),k.type=b.method||b.type||k.method||k.type,k.dataTypes=n.trim(k.dataType||"*").toLowerCase().match(E)||[""],null==k.crossDomain&&(h=kc.exec(k.url.toLowerCase()),k.crossDomain=!(!h||h[1]===pc[1]&&h[2]===pc[2]&&(h[3]||("http:"===h[1]?"80":"443"))===(pc[3]||("http:"===pc[1]?"80":"443")))),k.data&&k.processData&&"string"!=typeof k.data&&(k.data=n.param(k.data,k.traditional)),rc(lc,k,b,v),2===t)return v;i=n.event&&k.global,i&&0===n.active++&&n.event.trigger("ajaxStart"),k.type=k.type.toUpperCase(),k.hasContent=!ic.test(k.type),d=k.url,k.hasContent||(k.data&&(d=k.url+=(dc.test(d)?"&":"?")+k.data,delete k.data),k.cache===!1&&(k.url=fc.test(d)?d.replace(fc,"$1_="+cc++):d+(dc.test(d)?"&":"?")+"_="+cc++)),k.ifModified&&(n.lastModified[d]&&v.setRequestHeader("If-Modified-Since",n.lastModified[d]),n.etag[d]&&v.setRequestHeader("If-None-Match",n.etag[d])),(k.data&&k.hasContent&&k.contentType!==!1||b.contentType)&&v.setRequestHeader("Content-Type",k.contentType),v.setRequestHeader("Accept",k.dataTypes[0]&&k.accepts[k.dataTypes[0]]?k.accepts[k.dataTypes[0]]+("*"!==k.dataTypes[0]?", "+nc+"; q=0.01":""):k.accepts["*"]);for(j in k.headers)v.setRequestHeader(j,k.headers[j]);if(k.beforeSend&&(k.beforeSend.call(l,v,k)===!1||2===t))return v.abort();u="abort";for(j in{success:1,error:1,complete:1})v[j](k[j]);if(c=rc(mc,k,b,v)){v.readyState=1,i&&m.trigger("ajaxSend",[v,k]),k.async&&k.timeout>0&&(g=setTimeout(function(){v.abort("timeout")},k.timeout));try{t=1,c.send(r,x)}catch(w){if(!(2>t))throw w;x(-1,w)}}else x(-1,"No Transport");function x(a,b,f,h){var j,r,s,u,w,x=b;2!==t&&(t=2,g&&clearTimeout(g),c=void 0,e=h||"",v.readyState=a>0?4:0,j=a>=200&&300>a||304===a,f&&(u=tc(k,v,f)),u=uc(k,u,v,j),j?(k.ifModified&&(w=v.getResponseHeader("Last-Modified"),w&&(n.lastModified[d]=w),w=v.getResponseHeader("etag"),w&&(n.etag[d]=w)),204===a||"HEAD"===k.type?x="nocontent":304===a?x="notmodified":(x=u.state,r=u.data,s=u.error,j=!s)):(s=x,(a||!x)&&(x="error",0>a&&(a=0))),v.status=a,v.statusText=(b||x)+"",j?o.resolveWith(l,[r,x,v]):o.rejectWith(l,[v,x,s]),v.statusCode(q),q=void 0,i&&m.trigger(j?"ajaxSuccess":"ajaxError",[v,k,j?r:s]),p.fireWith(l,[v,x]),i&&(m.trigger("ajaxComplete",[v,k]),--n.active||n.event.trigger("ajaxStop")))}return v},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax({url:a,type:b,dataType:e,data:c,success:d})}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){var b;return n.isFunction(a)?this.each(function(b){n(this).wrapAll(a.call(this,b))}):(this[0]&&(b=n(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this)},wrapInner:function(a){return this.each(n.isFunction(a)?function(b){n(this).wrapInner(a.call(this,b))}:function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}}),n.expr.filters.hidden=function(a){return a.offsetWidth<=0&&a.offsetHeight<=0},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var vc=/%20/g,wc=/\[\]$/,xc=/\r?\n/g,yc=/^(?:submit|button|image|reset|file)$/i,zc=/^(?:input|select|textarea|keygen)/i;function Ac(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||wc.test(a)?d(a,e):Ac(a+"["+("object"==typeof e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)Ac(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)Ac(c,a[c],b,e);return d.join("&").replace(vc,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&zc.test(this.nodeName)&&!yc.test(a)&&(this.checked||!T.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(xc,"\r\n")}}):{name:b.name,value:c.replace(xc,"\r\n")}}).get()}}),n.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(a){}};var Bc=0,Cc={},Dc={0:200,1223:204},Ec=n.ajaxSettings.xhr();a.attachEvent&&a.attachEvent("onunload",function(){for(var a in Cc)Cc[a]()}),k.cors=!!Ec&&"withCredentials"in Ec,k.ajax=Ec=!!Ec,n.ajaxTransport(function(a){var b;return k.cors||Ec&&!a.crossDomain?{send:function(c,d){var e,f=a.xhr(),g=++Bc;if(f.open(a.type,a.url,a.async,a.username,a.password),a.xhrFields)for(e in a.xhrFields)f[e]=a.xhrFields[e];a.mimeType&&f.overrideMimeType&&f.overrideMimeType(a.mimeType),a.crossDomain||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest");for(e in c)f.setRequestHeader(e,c[e]);b=function(a){return function(){b&&(delete Cc[g],b=f.onload=f.onerror=null,"abort"===a?f.abort():"error"===a?d(f.status,f.statusText):d(Dc[f.status]||f.status,f.statusText,"string"==typeof f.responseText?{text:f.responseText}:void 0,f.getAllResponseHeaders()))}},f.onload=b(),f.onerror=b("error"),b=Cc[g]=b("abort");try{f.send(a.hasContent&&a.data||null)}catch(h){if(b)throw h}},abort:function(){b&&b()}}:void 0}),n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(d,e){b=n("
- %else:
-
- %endif
-
- ${extra_head_data}
-%def>
-
-<%def name="late_load_js()">
-
-
-
-%def>
-
-<%def name="html_stylesheets()">
-
-
-
-
-
-
- % if needs_ipython_css:
-
-
- % endif
-%def>
-
-<%def name="html_feedlinks()">
- %if rss_link:
- ${rss_link}
- %elif generate_rss:
- %if len(translations) > 1:
- %for language in sorted(translations):
-
- %endfor
- %else:
-
- %endif
- %endif
- %if generate_atom:
- %if len(translations) > 1:
- %for language in sorted(translations):
-
- %endfor
- %else:
-
- %endif
- %endif
-%def>
-
-<%def name="html_translations()">
-
-%def>
diff --git a/themes/canterville/templates/index.tmpl b/themes/canterville/templates/index.tmpl
deleted file mode 100644
index fdfeac6e..00000000
--- a/themes/canterville/templates/index.tmpl
+++ /dev/null
@@ -1,62 +0,0 @@
-## -*- coding: utf-8 -*-
-<%namespace name="helper" file="index_helper.tmpl"/>
-<%namespace name="math" file="math_helper.tmpl"/>
-<%namespace name="comments" file="comments_helper.tmpl"/>
-<%namespace name="pagination" file="pagination_helper.tmpl"/>
-<%inherit file="base.tmpl"/>
-
-<%block name="extra_head">
- ${parent.extra_head()}
- % if posts and (permalink == '/' or permalink == '/' + index_file):
-
- % endif
- ${math.math_styles_ifposts(posts)}
-%block>
-
-<%block name="content">
-<%block name="content_header">%block>
-% if 'main_index' in pagekind:
- ${front_index_header}
-% endif
-% if page_links:
- ${pagination.page_navigation(current_page, page_links, prevlink, nextlink, prev_next_links_reversed)}
-% endif
-
-% for post in posts:
-
-
-
-
- %if index_teasers:
-
- ${post.text(teaser_only=True)}
- %else:
-
- ${post.text(teaser_only=False)}
- %endif
-
-
-
-% endfor
-
-${helper.html_pager()}
-${comments.comment_link_script()}
-${math.math_scripts_ifposts(posts)}
-%block>
diff --git a/themes/canterville/templates/post.tmpl b/themes/canterville/templates/post.tmpl
deleted file mode 100644
index e1c01b7b..00000000
--- a/themes/canterville/templates/post.tmpl
+++ /dev/null
@@ -1,63 +0,0 @@
-## -*- coding: utf-8 -*-
-<%namespace name="helper" file="post_helper.tmpl"/>
-<%namespace name="pheader" file="post_header.tmpl"/>
-<%namespace name="comments" file="comments_helper.tmpl"/>
-<%namespace name="math" file="math_helper.tmpl"/>
-<%inherit file="base.tmpl"/>
-
-<%block name="extra_head">
- ${parent.extra_head()}
- % if post.meta('keywords'):
-
- % endif
-
- %if post.prev_post:
-
- %endif
- %if post.next_post:
-
- %endif
- % if post.is_draft:
-
- % endif
- ${helper.open_graph_metadata(post)}
- ${helper.twitter_card_information(post)}
- ${helper.meta_translations(post)}
- ${math.math_styles_ifpost(post)}
-%block>
-
-<%block name="content">
-
-
-
-
-
-
-${comments.comment_link_script()}
-%block>
diff --git a/themes/hyde/README.md b/themes/hyde/README.md
deleted file mode 100644
index 6b321504..00000000
--- a/themes/hyde/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-This theme is a port of the [Hyde theme by mdo](http://hyde.getpoole.com/) Everything that's good in it is mdo's fault, everything bad is mine.
-
-It supports one variable set in the config:
-
-```
- GLOBAL_CONTEXT = {
- "hyde_subtheme": "theme-base-08"
- }
-```
-
-That changes the color scheme, replace 08 with one of 09, 0a, 0b, 0c, 0d, 0e, 0f.
-
-You can read a tutorial about how to create/port new theme [at Nikola's site](https://getnikola.com/creating-a-theme.html)
-
-(*Note:* The `.sidebar` class was renamed to `.hsidebar` to avoid conflicts with reST.)
-
-License is MIT
-
-Known Issues:
-
-* Not all features of Nikola are tested.
-* Galleries will work better when [Issue #1764](https://github.com/getnikola/nikola/issues/1764) is fixed.
-* Submenus in navigation links are not supported
diff --git a/themes/hyde/assets/css/flaticon.css b/themes/hyde/assets/css/flaticon.css
deleted file mode 100644
index ae14fddd..00000000
--- a/themes/hyde/assets/css/flaticon.css
+++ /dev/null
@@ -1,1107 +0,0 @@
-.flaticon-add-square-button:before {
- content: "\e001";
-}
-.flaticon-adjust-contrast:before {
- content: "\e002";
-}
-.flaticon-align-justify:before {
- content: "\e003";
-}
-.flaticon-align-to-left:before {
- content: "\e004";
-}
-.flaticon-align-to-right:before {
- content: "\e005";
-}
-.flaticon-ambulance:before {
- content: "\e006";
-}
-.flaticon-anchor-shape:before {
- content: "\e007";
-}
-.flaticon-android-character-symbol:before {
- content: "\e008";
-}
-.flaticon-angle-arrow-down:before {
- content: "\e009";
-}
-.flaticon-angle-arrow-pointing-to-right:before {
- content: "\e00a";
-}
-.flaticon-angle-pointing-to-left:before {
- content: "\e00b";
-}
-.flaticon-apple-logo:before {
- content: "\e00c";
-}
-.flaticon-archive-black-box:before {
- content: "\e00d";
-}
-.flaticon-arrow-angle-pointing-down:before {
- content: "\e00e";
-}
-.flaticon-arrow-down-on-black-circular-background:before {
- content: "\e00f";
-}
-.flaticon-arrow-pointing-down:before {
- content: "\e010";
-}
-.flaticon-arrow-pointing-right-in-a-circle:before {
- content: "\e011";
-}
-.flaticon-arrow-pointing-to-left:before {
- content: "\e012";
-}
-.flaticon-arrow-pointing-to-right:before {
- content: "\e013";
-}
-.flaticon-arrow-up-on-a-black-circle-background:before {
- content: "\e014";
-}
-.flaticon-arrow-up:before {
- content: "\e015";
-}
-.flaticon-arrowhead-pointing-to-the-right:before {
- content: "\e016";
-}
-.flaticon-arrowhead-pointing-up-inside-a-square-box-outline:before {
- content: "\e017";
-}
-.flaticon-arrowheads-pointing-to-the-left:before {
- content: "\e018";
-}
-.flaticon-asterisk:before {
- content: "\e019";
-}
-.flaticon-ban-circle-symbol:before {
- content: "\e01a";
-}
-.flaticon-bar-graph-on-a-rectangle:before {
- content: "\e01b";
-}
-.flaticon-barcode:before {
- content: "\e01c";
-}
-.flaticon-beaker:before {
- content: "\e01d";
-}
-.flaticon-beer-jar-black-silhouette:before {
- content: "\e01e";
-}
-.flaticon-bell-musical-tool:before {
- content: "\e01f";
-}
-.flaticon-bitbucket-logotype-camera-lens-in-perspective:before {
- content: "\e020";
-}
-.flaticon-bitbucket-sign:before {
- content: "\e021";
-}
-.flaticon-bitcoin-logo:before {
- content: "\e022";
-}
-.flaticon-blank-file:before {
- content: "\e023";
-}
-.flaticon-bold-text-option:before {
- content: "\e024";
-}
-.flaticon-book:before {
- content: "\e025";
-}
-.flaticon-bookmark-black-shape:before {
- content: "\e026";
-}
-.flaticon-bookmark-white:before {
- content: "\e027";
-}
-.flaticon-branch-with-leaves-black-shape:before {
- content: "\e028";
-}
-.flaticon-briefcase:before {
- content: "\e029";
-}
-.flaticon-bug:before {
- content: "\e02a";
-}
-.flaticon-building-front:before {
- content: "\e02b";
-}
-.flaticon-bull-horn-announcer:before {
- content: "\e02c";
-}
-.flaticon-bullseye:before {
- content: "\e02d";
-}
-.flaticon-calendar-page-empty:before {
- content: "\e02e";
-}
-.flaticon-calendar-with-spring-binder-and-date-blocks:before {
- content: "\e02f";
-}
-.flaticon-camera-retro:before {
- content: "\e030";
-}
-.flaticon-caret-arrow-up:before {
- content: "\e031";
-}
-.flaticon-caret-down:before {
- content: "\e032";
-}
-.flaticon-center-text-alignment:before {
- content: "\e033";
-}
-.flaticon-certificate-shape:before {
- content: "\e034";
-}
-.flaticon-check-box-empty:before {
- content: "\e035";
-}
-.flaticon-check-mark:before {
- content: "\e036";
-}
-.flaticon-check-sign-in-a-rounded-black-square:before {
- content: "\e037";
-}
-.flaticon-check:before {
- content: "\e038";
-}
-.flaticon-checked-symbol:before {
- content: "\e039";
-}
-.flaticon-checkered-raised-flag:before {
- content: "\e03a";
-}
-.flaticon-chevron-arrow-down:before {
- content: "\e03b";
-}
-.flaticon-chevron-arrow-up:before {
- content: "\e03c";
-}
-.flaticon-chevron-pointing-to-the-left:before {
- content: "\e03d";
-}
-.flaticon-chevron-sign-down:before {
- content: "\e03e";
-}
-.flaticon-chevron-sign-left:before {
- content: "\e03f";
-}
-.flaticon-chevron-sign-to-right:before {
- content: "\e040";
-}
-.flaticon-chevron-up:before {
- content: "\e041";
-}
-.flaticon-circle-shape-outline:before {
- content: "\e042";
-}
-.flaticon-circle-with-an-arrow-pointing-to-left:before {
- content: "\e043";
-}
-.flaticon-circular-shape-silhouette:before {
- content: "\e044";
-}
-.flaticon-cloud-storage-download:before {
- content: "\e045";
-}
-.flaticon-cloud-storage-uploading-option:before {
- content: "\e046";
-}
-.flaticon-cocktail-glass:before {
- content: "\e047";
-}
-.flaticon-code-fork-symbol:before {
- content: "\e048";
-}
-.flaticon-code:before {
- content: "\e049";
-}
-.flaticon-coffee-cup-on-a-plate-black-silhouettes:before {
- content: "\e04a";
-}
-.flaticon-cog-wheel-silhouette:before {
- content: "\e04b";
-}
-.flaticon-collapse-window-option:before {
- content: "\e04c";
-}
-.flaticon-comment-black-oval-bubble-shape:before {
- content: "\e04d";
-}
-.flaticon-comment-white-oval-bubble:before {
- content: "\e04e";
-}
-.flaticon-comments:before {
- content: "\e04f";
-}
-.flaticon-compass-circular-variant:before {
- content: "\e050";
-}
-.flaticon-computer-tablet:before {
- content: "\e051";
-}
-.flaticon-copy-document:before {
- content: "\e052";
-}
-.flaticon-correct-symbol:before {
- content: "\e053";
-}
-.flaticon-couple-of-arrows-changing-places:before {
- content: "\e054";
-}
-.flaticon-credit-card:before {
- content: "\e055";
-}
-.flaticon-crop-symbol:before {
- content: "\e056";
-}
-.flaticon-cross-mark-on-a-black-circle-background:before {
- content: "\e057";
-}
-.flaticon-css-3-logo:before {
- content: "\e058";
-}
-.flaticon-cursor:before {
- content: "\e059";
-}
-.flaticon-cut:before {
- content: "\e05a";
-}
-.flaticon-dashboard:before {
- content: "\e05b";
-}
-.flaticon-delivery-truck-silhouette:before {
- content: "\e05c";
-}
-.flaticon-desktop-monitor:before {
- content: "\e05d";
-}
-.flaticon-dollar-symbol:before {
- content: "\e05e";
-}
-.flaticon-dot-and-circle:before {
- content: "\e05f";
-}
-.flaticon-double-angle-pointing-to-right:before {
- content: "\e060";
-}
-.flaticon-double-left-chevron:before {
- content: "\e061";
-}
-.flaticon-double-sided-eraser:before {
- content: "\e062";
-}
-.flaticon-double-strikethrough-option:before {
- content: "\e063";
-}
-.flaticon-down-arrow:before {
- content: "\e064";
-}
-.flaticon-download-symbol:before {
- content: "\e065";
-}
-.flaticon-download-to-storage-drive:before {
- content: "\e066";
-}
-.flaticon-dribbble-logo:before {
- content: "\e067";
-}
-.flaticon-dropbox-logo:before {
- content: "\e068";
-}
-.flaticon-earth-globe:before {
- content: "\e069";
-}
-.flaticon-edit-interface-sign:before {
- content: "\e06a";
-}
-.flaticon-eject-symbol:before {
- content: "\e06b";
-}
-.flaticon-envelope-of-white-paper:before {
- content: "\e06c";
-}
-.flaticon-envelope:before {
- content: "\e06d";
-}
-.flaticon-euro-currency-symbol:before {
- content: "\e06e";
-}
-.flaticon-exchange-arrows:before {
- content: "\e06f";
-}
-.flaticon-exclamation-sign:before {
- content: "\e070";
-}
-.flaticon-exclamation:before {
- content: "\e071";
-}
-.flaticon-external-link-square-with-an-arrow-in-right-diagonal:before {
- content: "\e072";
-}
-.flaticon-external-link-symbol:before {
- content: "\e073";
-}
-.flaticon-eye-open:before {
- content: "\e074";
-}
-.flaticon-eye-with-a-diagonal-line-interface-symbol-for-invisibility:before {
- content: "\e075";
-}
-.flaticon-facebook-logo-1:before {
- content: "\e076";
-}
-.flaticon-facebook-logo:before {
- content: "\e077";
-}
-.flaticon-facetime-button:before {
- content: "\e078";
-}
-.flaticon-fast-forward-arrows:before {
- content: "\e079";
-}
-.flaticon-female-silhouette:before {
- content: "\e07a";
-}
-.flaticon-fighter-jet-silhouette:before {
- content: "\e07b";
-}
-.flaticon-file:before {
- content: "\e07c";
-}
-.flaticon-film-strip-with-two-photograms:before {
- content: "\e07d";
-}
-.flaticon-filter-tool-black-shape:before {
- content: "\e07e";
-}
-.flaticon-finger-of-a-hand-pointing-to-right-direction:before {
- content: "\e07f";
-}
-.flaticon-fire-extinguisher:before {
- content: "\e080";
-}
-.flaticon-fire-symbol:before {
- content: "\e081";
-}
-.flaticon-flag-black-shape:before {
- content: "\e082";
-}
-.flaticon-flickr-website-logo-silhouette:before {
- content: "\e083";
-}
-.flaticon-fluffy-cloud-silhouette:before {
- content: "\e084";
-}
-.flaticon-folder-closed-black-shape:before {
- content: "\e085";
-}
-.flaticon-folder-white-shape:before {
- content: "\e086";
-}
-.flaticon-font-selection-editor:before {
- content: "\e087";
-}
-.flaticon-font-symbol-of-letter-a:before {
- content: "\e088";
-}
-.flaticon-fork-and-knife-silhouette:before {
- content: "\e089";
-}
-.flaticon-forward-button:before {
- content: "\e08a";
-}
-.flaticon-four-black-squares:before {
- content: "\e08b";
-}
-.flaticon-foursquare-button:before {
- content: "\e08c";
-}
-.flaticon-frown:before {
- content: "\e08d";
-}
-.flaticon-fullscreen-symbol:before {
- content: "\e08e";
-}
-.flaticon-gamepad-console:before {
- content: "\e08f";
-}
-.flaticon-gift-box:before {
- content: "\e090";
-}
-.flaticon-github-character:before {
- content: "\e091";
-}
-.flaticon-github-logo:before {
- content: "\e092";
-}
-.flaticon-github-sign:before {
- content: "\e093";
-}
-.flaticon-gittip-website-logo:before {
- content: "\e094";
-}
-.flaticon-google-plus-symbol-1:before {
- content: "\e095";
-}
-.flaticon-google-plus-symbol:before {
- content: "\e096";
-}
-.flaticon-great-britain-pound:before {
- content: "\e097";
-}
-.flaticon-group-profile-users:before {
- content: "\e098";
-}
-.flaticon-half-star-shape:before {
- content: "\e099";
-}
-.flaticon-hand-finger-pointing-down:before {
- content: "\e09a";
-}
-.flaticon-hand-pointing-to-left-direction:before {
- content: "\e09b";
-}
-.flaticon-hand-pointing-upward:before {
- content: "\e09c";
-}
-.flaticon-hard-drive:before {
- content: "\e09d";
-}
-.flaticon-heart-shape-outline:before {
- content: "\e09e";
-}
-.flaticon-heart-shape-silhouette:before {
- content: "\e09f";
-}
-.flaticon-home:before {
- content: "\e0a0";
-}
-.flaticon-horizontal-resize-option:before {
- content: "\e0a1";
-}
-.flaticon-hostpital-building:before {
- content: "\e0a2";
-}
-.flaticon-hotel-letter-h-sign-inside-a-black-rounded-square:before {
- content: "\e0a3";
-}
-.flaticon-html-5-logo:before {
- content: "\e0a4";
-}
-.flaticon-inbox:before {
- content: "\e0a5";
-}
-.flaticon-increase-size-option:before {
- content: "\e0a6";
-}
-.flaticon-indent-right:before {
- content: "\e0a7";
-}
-.flaticon-information-button:before {
- content: "\e0a8";
-}
-.flaticon-information-symbol:before {
- content: "\e0a9";
-}
-.flaticon-instagram-symbol:before {
- content: "\e0aa";
-}
-.flaticon-italicize-text:before {
- content: "\e0ab";
-}
-.flaticon-keyboard:before {
- content: "\e0ac";
-}
-.flaticon-left-arrow-1:before {
- content: "\e0ad";
-}
-.flaticon-left-arrow:before {
- content: "\e0ae";
-}
-.flaticon-left-indentation-option:before {
- content: "\e0af";
-}
-.flaticon-legal-hammer:before {
- content: "\e0b0";
-}
-.flaticon-lemon:before {
- content: "\e0b1";
-}
-.flaticon-leter-a-inside-a-black-circle:before {
- content: "\e0b2";
-}
-.flaticon-letter-p-symbol:before {
- content: "\e0b3";
-}
-.flaticon-level-up:before {
- content: "\e0b4";
-}
-.flaticon-light-bulb:before {
- content: "\e0b5";
-}
-.flaticon-lightning-bolt-shadow:before {
- content: "\e0b6";
-}
-.flaticon-link-symbol:before {
- content: "\e0b7";
-}
-.flaticon-linkedin-letters:before {
- content: "\e0b8";
-}
-.flaticon-linkedin-sign:before {
- content: "\e0b9";
-}
-.flaticon-linux-logo:before {
- content: "\e0ba";
-}
-.flaticon-list-on-window:before {
- content: "\e0bb";
-}
-.flaticon-list-with-dots:before {
- content: "\e0bc";
-}
-.flaticon-list:before {
- content: "\e0bd";
-}
-.flaticon-listing-option:before {
- content: "\e0be";
-}
-.flaticon-long-arrow-pointing-to-left:before {
- content: "\e0bf";
-}
-.flaticon-long-arrow-pointing-to-the-right:before {
- content: "\e0c0";
-}
-.flaticon-long-arrow-pointing-up:before {
- content: "\e0c1";
-}
-.flaticon-magic-wand:before {
- content: "\e0c2";
-}
-.flaticon-magnifying-glass:before {
- content: "\e0c3";
-}
-.flaticon-man:before {
- content: "\e0c4";
-}
-.flaticon-map-marker:before {
- content: "\e0c5";
-}
-.flaticon-maxcdn-website-logo:before {
- content: "\e0c6";
-}
-.flaticon-medical-kit:before {
- content: "\e0c7";
-}
-.flaticon-meh-face-emoticon:before {
- content: "\e0c8";
-}
-.flaticon-microphone-black-shape:before {
- content: "\e0c9";
-}
-.flaticon-microphone-off:before {
- content: "\e0ca";
-}
-.flaticon-minus-button:before {
- content: "\e0cb";
-}
-.flaticon-minus-sign-inside-a-black-circle:before {
- content: "\e0cc";
-}
-.flaticon-minus-sign-inside-a-black-rounded-square-shape:before {
- content: "\e0cd";
-}
-.flaticon-minus-sign-on-a-square-outline:before {
- content: "\e0ce";
-}
-.flaticon-minus-symbol:before {
- content: "\e0cf";
-}
-.flaticon-mobile-phone:before {
- content: "\e0d0";
-}
-.flaticon-moon-phase-outline:before {
- content: "\e0d1";
-}
-.flaticon-move-option:before {
- content: "\e0d2";
-}
-.flaticon-music-headphones:before {
- content: "\e0d3";
-}
-.flaticon-music-note-black-symbol:before {
- content: "\e0d4";
-}
-.flaticon-musical-bell-outline:before {
- content: "\e0d5";
-}
-.flaticon-nine-black-tiles:before {
- content: "\e0d6";
-}
-.flaticon-numbered-list:before {
- content: "\e0d7";
-}
-.flaticon-open-folder-outline:before {
- content: "\e0d8";
-}
-.flaticon-open-folder:before {
- content: "\e0d9";
-}
-.flaticon-open-laptop-computer:before {
- content: "\e0da";
-}
-.flaticon-open-padlock-silhouette:before {
- content: "\e0db";
-}
-.flaticon-open-wrench-tool-silhouette:before {
- content: "\e0dc";
-}
-.flaticon-padlock-unlock:before {
- content: "\e0dd";
-}
-.flaticon-padlock:before {
- content: "\e0de";
-}
-.flaticon-paper-bill:before {
- content: "\e0df";
-}
-.flaticon-paper-clip-outline:before {
- content: "\e0e0";
-}
-.flaticon-paper-push-pin:before {
- content: "\e0e1";
-}
-.flaticon-paste-from-clipboard:before {
- content: "\e0e2";
-}
-.flaticon-pause-symbol:before {
- content: "\e0e3";
-}
-.flaticon-pencil:before {
- content: "\e0e4";
-}
-.flaticon-photo-camera:before {
- content: "\e0e5";
-}
-.flaticon-picture:before {
- content: "\e0e6";
-}
-.flaticon-pinterest-logo:before {
- content: "\e0e7";
-}
-.flaticon-pinterest-sign:before {
- content: "\e0e8";
-}
-.flaticon-plane:before {
- content: "\e0e9";
-}
-.flaticon-plant-leaf-with-white-details:before {
- content: "\e0ea";
-}
-.flaticon-play-button:before {
- content: "\e0eb";
-}
-.flaticon-play-circle:before {
- content: "\e0ec";
-}
-.flaticon-play-sign:before {
- content: "\e0ed";
-}
-.flaticon-play-video-button:before {
- content: "\e0ee";
-}
-.flaticon-plus-black-symbol:before {
- content: "\e0ef";
-}
-.flaticon-plus-sign-in-a-black-circle:before {
- content: "\e0f0";
-}
-.flaticon-plus-symbol-in-a-rounded-black-square:before {
- content: "\e0f1";
-}
-.flaticon-power-button-off:before {
- content: "\e0f2";
-}
-.flaticon-printing-tool:before {
- content: "\e0f3";
-}
-.flaticon-puzzle-piece-silhouette:before {
- content: "\e0f4";
-}
-.flaticon-qr-code:before {
- content: "\e0f5";
-}
-.flaticon-question-mark-on-a-circular-black-background:before {
- content: "\e0f6";
-}
-.flaticon-question-sign:before {
- content: "\e0f7";
-}
-.flaticon-quote-left:before {
- content: "\e0f8";
-}
-.flaticon-reduced-volume:before {
- content: "\e0f9";
-}
-.flaticon-refresh-arrow:before {
- content: "\e0fa";
-}
-.flaticon-refresh-page-option:before {
- content: "\e0fb";
-}
-.flaticon-remove-button:before {
- content: "\e0fc";
-}
-.flaticon-remove-symbol:before {
- content: "\e0fd";
-}
-.flaticon-renren-social-network-of-china-logotype:before {
- content: "\e0fe";
-}
-.flaticon-reorder-option:before {
- content: "\e0ff";
-}
-.flaticon-reply-arrow:before {
- content: "\e100";
-}
-.flaticon-reply:before {
- content: "\e101";
-}
-.flaticon-resize-option:before {
- content: "\e102";
-}
-.flaticon-retweet-arrows-symbol:before {
- content: "\e103";
-}
-.flaticon-rewind-button:before {
- content: "\e104";
-}
-.flaticon-right-arrow-in-a-circle:before {
- content: "\e105";
-}
-.flaticon-right-chevron:before {
- content: "\e106";
-}
-.flaticon-right-quotation-mark:before {
- content: "\e107";
-}
-.flaticon-road-perspective:before {
- content: "\e108";
-}
-.flaticon-rounded-black-square-shape:before {
- content: "\e109";
-}
-.flaticon-rss-feed-button:before {
- content: "\e10a";
-}
-.flaticon-rss-symbol:before {
- content: "\e10b";
-}
-.flaticon-rupee-indian:before {
- content: "\e10c";
-}
-.flaticon-save-file-option:before {
- content: "\e10d";
-}
-.flaticon-screenshot:before {
- content: "\e10e";
-}
-.flaticon-settings:before {
- content: "\e10f";
-}
-.flaticon-share-option:before {
- content: "\e110";
-}
-.flaticon-share-post-symbol:before {
- content: "\e111";
-}
-.flaticon-share-symbol:before {
- content: "\e112";
-}
-.flaticon-shield:before {
- content: "\e113";
-}
-.flaticon-shopping-cart-black-shape:before {
- content: "\e114";
-}
-.flaticon-sign-in:before {
- content: "\e115";
-}
-.flaticon-sign-out-option:before {
- content: "\e116";
-}
-.flaticon-signal-bars:before {
- content: "\e117";
-}
-.flaticon-sitemap:before {
- content: "\e118";
-}
-.flaticon-skype-logo:before {
- content: "\e119";
-}
-.flaticon-small-rocket-ship-silhouette:before {
- content: "\e11a";
-}
-.flaticon-smile:before {
- content: "\e11b";
-}
-.flaticon-sort-arrows-couple-pointing-up-and-down:before {
- content: "\e11c";
-}
-.flaticon-sort-by-alphabet:before {
- content: "\e11d";
-}
-.flaticon-sort-by-attributes-interface-button-option:before {
- content: "\e11e";
-}
-.flaticon-sort-by-attributes:before {
- content: "\e11f";
-}
-.flaticon-sort-by-numeric-order:before {
- content: "\e120";
-}
-.flaticon-sort-by-order:before {
- content: "\e121";
-}
-.flaticon-sort-down:before {
- content: "\e122";
-}
-.flaticon-sort-reverse-alphabetical-order:before {
- content: "\e123";
-}
-.flaticon-sort-up:before {
- content: "\e124";
-}
-.flaticon-speech-bubbles-comment-option:before {
- content: "\e125";
-}
-.flaticon-spinner-of-dots:before {
- content: "\e126";
-}
-.flaticon-square-shape-shadow:before {
- content: "\e127";
-}
-.flaticon-stack-exchange-logo:before {
- content: "\e128";
-}
-.flaticon-stack-exchange-symbol:before {
- content: "\e129";
-}
-.flaticon-star-1:before {
- content: "\e12a";
-}
-.flaticon-star-half-empty:before {
- content: "\e12b";
-}
-.flaticon-star:before {
- content: "\e12c";
-}
-.flaticon-step-backward:before {
- content: "\e12d";
-}
-.flaticon-step-forward:before {
- content: "\e12e";
-}
-.flaticon-stethoscope:before {
- content: "\e12f";
-}
-.flaticon-strikethrough:before {
- content: "\e130";
-}
-.flaticon-suitcase-with-white-details:before {
- content: "\e131";
-}
-.flaticon-sun:before {
- content: "\e132";
-}
-.flaticon-superscript-text-formatting:before {
- content: "\e133";
-}
-.flaticon-table-grid:before {
- content: "\e134";
-}
-.flaticon-tag-black-shape:before {
- content: "\e135";
-}
-.flaticon-tags:before {
- content: "\e136";
-}
-.flaticon-tasks-list:before {
- content: "\e137";
-}
-.flaticon-telephone-handle-silhouette:before {
- content: "\e138";
-}
-.flaticon-telephone-symbol-button:before {
- content: "\e139";
-}
-.flaticon-terminal:before {
- content: "\e13a";
-}
-.flaticon-text-file-1:before {
- content: "\e13b";
-}
-.flaticon-text-file:before {
- content: "\e13c";
-}
-.flaticon-text-height-adjustment:before {
- content: "\e13d";
-}
-.flaticon-text-width:before {
- content: "\e13e";
-}
-.flaticon-thin-arrowheads-pointing-down:before {
- content: "\e13f";
-}
-.flaticon-three-small-square-shapes:before {
- content: "\e140";
-}
-.flaticon-thumb-down:before {
- content: "\e141";
-}
-.flaticon-thumbs-down-silhouette:before {
- content: "\e142";
-}
-.flaticon-thumbs-up-hand-symbol:before {
- content: "\e143";
-}
-.flaticon-thumbs-up:before {
- content: "\e144";
-}
-.flaticon-ticket:before {
- content: "\e145";
-}
-.flaticon-time:before {
- content: "\e146";
-}
-.flaticon-tint-drop:before {
- content: "\e147";
-}
-.flaticon-trash:before {
- content: "\e148";
-}
-.flaticon-trello-website-logo:before {
- content: "\e149";
-}
-.flaticon-trophy:before {
- content: "\e14a";
-}
-.flaticon-tumblr-logo-1:before {
- content: "\e14b";
-}
-.flaticon-tumblr-logo:before {
- content: "\e14c";
-}
-.flaticon-turkish-lire-symbol:before {
- content: "\e14d";
-}
-.flaticon-twitter-black-shape:before {
- content: "\e14e";
-}
-.flaticon-twitter-sign:before {
- content: "\e14f";
-}
-.flaticon-two-columns-layout:before {
- content: "\e150";
-}
-.flaticon-u-shaped-thick-magnet:before {
- content: "\e151";
-}
-.flaticon-umbrella-black-silhouette:before {
- content: "\e152";
-}
-.flaticon-underline-text-option:before {
- content: "\e153";
-}
-.flaticon-undo-arrow:before {
- content: "\e154";
-}
-.flaticon-unlink-symbol:before {
- content: "\e155";
-}
-.flaticon-up-arrow:before {
- content: "\e156";
-}
-.flaticon-up-chevron-button:before {
- content: "\e157";
-}
-.flaticon-upload-button:before {
- content: "\e158";
-}
-.flaticon-upload:before {
- content: "\e159";
-}
-.flaticon-user-md-symbol:before {
- content: "\e15a";
-}
-.flaticon-user-shape:before {
- content: "\e15b";
-}
-.flaticon-vertical-ellipsis:before {
- content: "\e15c";
-}
-.flaticon-vertical-resizing-option:before {
- content: "\e15d";
-}
-.flaticon-video-play-square-button:before {
- content: "\e15e";
-}
-.flaticon-vimeo-square-logo:before {
- content: "\e15f";
-}
-.flaticon-vintage-key-outline:before {
- content: "\e160";
-}
-.flaticon-vk-social-network-logo:before {
- content: "\e161";
-}
-.flaticon-volume-off:before {
- content: "\e162";
-}
-.flaticon-volume-up-interface-symbol:before {
- content: "\e163";
-}
-.flaticon-warning-sign-on-a-triangular-background:before {
- content: "\e164";
-}
-.flaticon-weibo-website-logo:before {
- content: "\e165";
-}
-.flaticon-wheelchair:before {
- content: "\e166";
-}
-.flaticon-white-flag-symbol:before {
- content: "\e167";
-}
-.flaticon-windows-logo-silhouette:before {
- content: "\e168";
-}
-.flaticon-x2-symbol-of-a-letter-and-a-number-subscript:before {
- content: "\e169";
-}
-.flaticon-xing-logo:before {
- content: "\e16a";
-}
-.flaticon-xing-logotype:before {
- content: "\e16b";
-}
-.flaticon-yen-symbol:before {
- content: "\e16c";
-}
-.flaticon-youtube-logo-1:before {
- content: "\e16d";
-}
-.flaticon-youtube-logo-2:before {
- content: "\e16e";
-}
-.flaticon-youtube-logo:before {
- content: "\e16f";
-}
-.flaticon-zoom-in:before {
- content: "\e170";
-}
-.flaticon-zoom-out:before {
- content: "\e171";
-}
diff --git a/themes/hyde/assets/css/hyde.css b/themes/hyde/assets/css/hyde.css
deleted file mode 100644
index be5012e9..00000000
--- a/themes/hyde/assets/css/hyde.css
+++ /dev/null
@@ -1,357 +0,0 @@
-/*
- * __ __
- * /\ \ /\ \
- * \ \ \___ __ __ \_\ \ __
- * \ \ _ `\/\ \/\ \ /'_` \ /'__`\
- * \ \ \ \ \ \ \_\ \/\ \_\ \/\ __/
- * \ \_\ \_\/`____ \ \___,_\ \____\
- * \/_/\/_/`/___/> \/__,_ /\/____/
- * /\___/
- * \/__/
- *
- * Designed, built, and released under MIT license by @mdo. Learn more at
- * https://github.com/poole/hyde.
- */
-
-
-/*
- * Contents
- *
- * Global resets
- * Sidebar
- * Container
- * Reverse layout
- * Themes
- */
-
-
-/*
- * Global resets
- *
- * Update the foundational and global aspects of the page.
- */
-
-html {
- font-family: "PT Sans", Helvetica, Arial, sans-serif;
-}
-@media (min-width: 48em) {
- html {
- font-size: 16px;
- }
-}
-@media (min-width: 58em) {
- html {
- font-size: 20px;
- }
-}
-
-
-/*
- * Sidebar
- *
- * Flexible banner for housing site name, intro, and "footer" content. Starts
- * out above content in mobile and later moves to the side with wider viewports.
- */
-
-div.hsidebar, .hsidebar {
- padding: 2rem 1rem;
- color: rgba(255,255,255,.5);
- background-color: #202020;
- text-align: center;
- margin-left: 0;
- margin-bottom: 0;
-}
-
-@media (min-width: 48em) {
-div.hsidebar, .hsidebar {
- position: fixed;
- text-align: left;
- top: 0;
- left: 0;
- bottom: 0;
- width: 18rem;
- }
-}
-
-/* Sidebar images */
-div.hsidebar img, .hsidebar img {
- display: block;
- margin-left: auto;
- margin-right: auto;
-}
-
-img#logo {
-
- width: 200px;
-}
-
-/* Sidebar links */
-div.hsidebar a, .hsidebar a {
- color: #fff;
-}
-
-/* About section */
-.sidebar-about h1 {
- color: #fff;
- margin-top: 0;
- font-family: "Abril Fatface", serif;
- font-size: 2.75rem;
-}
-
-/* Sidebar nav */
-.sidebar-nav {
- margin-bottom: 1rem;
-}
-.sidebar-nav-item {
- display: block;
- line-height: 1.50;
-}
-a.sidebar-nav-item:hover,
-a.sidebar-nav-item:focus {
- text-decoration: underline;
-}
-.sidebar-nav-item.active {
- font-weight: bold;
-}
-
-/* Sticky sidebar
- *
- * Add the `sidebar-sticky` class to the sidebar's container to affix it the
- * contents to the bottom of the sidebar in tablets and up.
- */
-
-@media (min-width: 48em) {
- .sidebar-sticky {
- position: absolute;
- right: 1rem;
- bottom: 0;
- left: 1rem;
- }
-}
-
-/*
- * Footer
- *
- * Edit Styles for footer
- */
-.footer {
- font-size: 16px;
-}
-
-.icon_row{
- width: auto;
- height: auto;
- display: inline-block;
- vertical-align: middle;
-}
-
-.icon_row img.social_icon{
- width: 24px;
- display: inline-block;
- margin: 0px auto;
- vertical-align: bottom;
-}
-
-.copyright{
- font-size: smaller;
- line-height: 0.5;
- text-align: center;
-}
-
-/* Container
- *
- * Align the contents of the site above the proper threshold with some margin-fu
- * with a 25%-wide `.sidebar`.
- */
-
-.content {
- padding-top: 4rem;
- padding-bottom: 4rem;
-}
-
-@media (min-width: 48em) {
- .content {
- max-width: 38rem;
- margin-left: 20rem;
- margin-right: 2rem;
- }
-}
-
-@media (min-width: 64em) {
- .content {
- margin-left: 22rem;
- margin-right: 4rem;
- }
-}
-
-
-/*
- * Reverse layout
- *
- * Flip the orientation of the page by placing the `.sidebar` on the right.
- */
-
-@media (min-width: 48em) {
- .layout-reverse .hsidebar {
- left: auto;
- right: 0;
- }
- .layout-reverse .content {
- margin-left: 2rem;
- margin-right: 20rem;
- }
-}
-
-@media (min-width: 64em) {
- .layout-reverse .content {
- margin-left: 4rem;
- margin-right: 22rem;
- }
-}
-
-
-
-/*
- * Themes
- *
- * As of v1.1, Hyde includes optional themes to color the sidebar and links
- * within blog posts. To use, add the class of your choosing to the `body`.
- */
-
-/* Base16 (http://chriskempson.github.io/base16/#default) */
-
-/* Red */
-.theme-base-08 .hsidebar {
- background-color: #ac4142;
-}
-.theme-base-08 .content a,
-.theme-base-08 .related-posts li a:hover {
- color: #ac4142;
-}
-
-/* Orange */
-.theme-base-09 .hsidebar {
- background-color: #d28445;
-}
-.theme-base-09 .content a,
-.theme-base-09 .related-posts li a:hover {
- color: #d28445;
-}
-
-/* Yellow */
-.theme-base-0a .hsidebar {
- background-color: #f4bf75;
-}
-.theme-base-0a .content a,
-.theme-base-0a .related-posts li a:hover {
- color: #f4bf75;
-}
-
-/* Green */
-.theme-base-0b .hsidebar {
- background-color: #90a959;
-}
-.theme-base-0b .content a,
-.theme-base-0b .related-posts li a:hover {
- color: #90a959;
-}
-
-/* Cyan */
-.theme-base-0c .hsidebar {
- background-color: #75b5aa;
-}
-.theme-base-0c .content a,
-.theme-base-0c .related-posts li a:hover {
- color: #75b5aa;
-}
-
-/* Blue */
-.theme-base-0d .hsidebar {
- background-color: #6a9fb5;
-}
-.theme-base-0d .content a,
-.theme-base-0d .related-posts li a:hover {
- color: #6a9fb5;
-}
-
-/* Magenta */
-.theme-base-0e .hsidebar {
- background-color: #aa759f;
-}
-.theme-base-0e .content a,
-.theme-base-0e .related-posts li a:hover {
- color: #aa759f;
-}
-
-/* Brown */
-.theme-base-0f .hsidebar {
- background-color: #8f5536;
-}
-.theme-base-0f .content a,
-.theme-base-0f .related-posts li a:hover {
- color: #8f5536;
-}
-
-
-
-/*
- * Additional Classes pertaining to Nikola
- *
- * The accessible link at the top shouldn't be visible. The class that make
- * them invisible were in themes.css.
- * To use, example below:
- * ...
- *
- */
-
-.sr-only {
- position: absolute;
- width: 1px;
- height: 1px;
- padding: 0;
- margin: -1px;
- overflow: hidden;
- clip: rect(0, 0, 0, 0);
- border: 0;
-}
-
-.sr-only-focusable:active,
-.sr-only-focusable:focus {
- position: static;
- width: auto;
- height: auto;
- margin: 0;
- overflow: visible;
- clip: auto;
-}
-
-.breadcrumb {
- padding: 8px 15px;
- margin-bottom: 20px;
- list-style: none;
-}
-
-.breadcrumb > li {
- display: inline-block;
- margin-right: 0;
- margin-left: 0;
-}
-
-.breadcrumb > li:after {
- content: ' / ';
- color: #888;
-}
-
-.breadcrumb > li:last-of-type:after {
- content: '';
- margin-left: 0;
-}
-
-.thumbnails > li {
- display: inline-block;
- margin-right: 10px;
-}
-
-.thumbnails > li:last-of-type {
- margin-right: 0;
-}
diff --git a/themes/hyde/assets/css/poole.css b/themes/hyde/assets/css/poole.css
deleted file mode 100644
index 1a697b45..00000000
--- a/themes/hyde/assets/css/poole.css
+++ /dev/null
@@ -1,483 +0,0 @@
-/*
- * ___
- * /\_ \
- * _____ ___ ___\//\ \ __
- * /\ '__`\ / __`\ / __`\\ \ \ /'__`\
- * \ \ \_\ \/\ \_\ \/\ \_\ \\_\ \_/\ __/
- * \ \ ,__/\ \____/\ \____//\____\ \____\
- * \ \ \/ \/___/ \/___/ \/____/\/____/
- * \ \_\
- * \/_/
- *
- * Designed, built, and released under MIT license by @mdo. Learn more at
- * https://github.com/poole/poole.
- */
-
-
-/*
- * Contents
- *
- * Body resets
- * Custom type
- * Messages
- * Container
- * Masthead
- * Posts and pages
- * Pagination
- * Reverse layout
- * Themes
- */
-
-
-/*
- * Body resets
- *
- * Update the foundational and global aspects of the page.
- */
-
-* {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
-}
-
-html,
-body {
- margin: 0;
- padding: 0;
-}
-
-html {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 16px;
- line-height: 1.5;
-}
-@media (min-width: 38em) {
- html {
- font-size: 20px;
- }
-}
-
-body {
- color: #515151;
- background-color: #fff;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
-}
-
-/* No `:visited` state is required by default (browsers will use `a`) */
-a {
- color: #268bd2;
- text-decoration: none;
-}
-a strong {
- color: inherit;
-}
-/* `:focus` is linked to `:hover` for basic accessibility */
-a:hover,
-a:focus {
- text-decoration: underline;
-}
-
-/* Headings */
-h1, h2, h3, h4, h5, h6 {
- margin-bottom: .5rem;
- font-weight: bold;
- line-height: 1.25;
- color: #313131;
- text-rendering: optimizeLegibility;
-}
-h1 {
- font-size: 2rem;
-}
-h2 {
- margin-top: 1rem;
- font-size: 1.5rem;
-}
-h3 {
- margin-top: 1.5rem;
- font-size: 1.25rem;
-}
-h4, h5, h6 {
- margin-top: 1rem;
- font-size: 1rem;
-}
-
-/* Body text */
-p {
- margin-top: 0;
- margin-bottom: 1rem;
-}
-
-strong {
- color: #303030;
-}
-
-
-/* Lists */
-ul, ol, dl {
- margin-top: 0;
- margin-bottom: 1rem;
-}
-
-dt {
- font-weight: bold;
-}
-dd {
- margin-bottom: .5rem;
-}
-
-/* Misc */
-hr {
- position: relative;
- margin: 1.5rem 0;
- border: 0;
- border-top: 1px solid #eee;
- border-bottom: 1px solid #fff;
-}
-
-abbr {
- font-size: 85%;
- font-weight: bold;
- color: #555;
- text-transform: uppercase;
-}
-abbr[title] {
- cursor: help;
- border-bottom: 1px dotted #e5e5e5;
-}
-
-/* Code */
-code,
-pre {
- font-family: Menlo, Monaco, "Courier New", monospace;
-}
-code {
- padding: .25em .5em;
- font-size: 85%;
- color: #bf616a;
- background-color: #f9f9f9;
- border-radius: 3px;
-}
-pre {
- display: block;
- margin-top: 0;
- margin-bottom: 1rem;
- padding: 1rem;
- font-size: .8rem;
- line-height: 1.4;
- white-space: pre;
- word-break: break-all;
- word-wrap: break-word;
- background-color: #f9f9f9;
-}
-pre code {
- padding: 0;
- font-size: 100%;
- color: inherit;
- background-color: transparent;
-}
-
-/* Pygments via Jekyll */
-.highlight {
- margin-bottom: 1rem;
- border-radius: 4px;
-}
-.highlight pre {
- margin-bottom: 0;
-}
-
-/* Gist via GitHub Pages */
-.gist .gist-file {
- font-family: Menlo, Monaco, "Courier New", monospace !important;
-}
-.gist .markdown-body {
- padding: 15px;
-}
-.gist pre {
- padding: 0;
- background-color: transparent;
-}
-.gist .gist-file .gist-data {
- font-size: .8rem !important;
- line-height: 1.4;
-}
-.gist code {
- padding: 0;
- color: inherit;
- background-color: transparent;
- border-radius: 0;
-}
-
-/* Quotes */
-blockquote {
- padding: .5rem 1rem;
- margin: .8rem 0;
- color: #7a7a7a;
- border-left: .25rem solid #e5e5e5;
-}
-blockquote p:last-child {
- margin-bottom: 0;
-}
-@media (min-width: 30em) {
- blockquote {
- padding-right: 5rem;
- padding-left: 1.25rem;
- }
-}
-
-img {
- display: block;
- max-width: 100%;
- margin: 0 0 1rem;
- border-radius: 5px;
-}
-
-/* Tables */
-table {
- margin-bottom: 1rem;
- width: 100%;
- border: 1px solid #e5e5e5;
- border-collapse: collapse;
-}
-td,
-th {
- padding: .25rem .5rem;
- border: 1px solid #e5e5e5;
-}
-tbody tr:nth-child(odd) td,
-tbody tr:nth-child(odd) th {
- background-color: #f9f9f9;
-}
-
-
-/*
- * Custom type
- *
- * Extend paragraphs with `.lead` for larger introductory text.
- */
-
-.lead {
- font-size: 1.25rem;
- font-weight: 300;
-}
-
-
-/*
- * Messages
- *
- * Show alert messages to users. You may add it to single elements like a ``,
- * or to a parent if there are multiple elements to show.
- */
-
-.message {
- margin-bottom: 1rem;
- padding: 1rem;
- color: #717171;
- background-color: #f9f9f9;
-}
-
-
-/*
- * Container
- *
- * Center the page content.
- */
-
-.container {
- max-width: 38rem;
- padding-left: 1rem;
- padding-right: 1rem;
- margin-left: auto;
- margin-right: auto;
-}
-
-
-/*
- * Masthead
- *
- * Super small header above the content for site name and short description.
- */
-
-.masthead {
- padding-top: 1rem;
- padding-bottom: 1rem;
- margin-bottom: 3rem;
-}
-.masthead-title {
- margin-top: 0;
- margin-bottom: 0;
- color: #505050;
-}
-.masthead-title a {
- color: #505050;
-}
-.masthead-title small {
- font-size: 75%;
- font-weight: 400;
- color: #c0c0c0;
- letter-spacing: 0;
-}
-
-
-/*
- * Posts and pages
- *
- * Each post is wrapped in `.post` and is used on default and post layouts. Each
- * page is wrapped in `.page` and is only used on the page layout.
- */
-
-.page,
-.post {
- margin-bottom: 4em;
-}
-
-/* Blog post or page title */
-.page-title,
-.post-title,
-.post-title a {
- color: #303030;
-}
-.page-title,
-.post-title {
- margin-top: 0;
-}
-
-/* Meta data line below post title */
-.post-date {
- display: block;
- margin-top: -.5rem;
- margin-bottom: 1rem;
- color: #9a9a9a;
-}
-
-/* Related posts */
-.related {
- padding-top: 2rem;
- padding-bottom: 2rem;
- border-top: 1px solid #eee;
-}
-.related-posts {
- padding-left: 0;
- list-style: none;
-}
-.related-posts h3 {
- margin-top: 0;
-}
-.related-posts li small {
- font-size: 75%;
- color: #999;
-}
-.related-posts li a:hover {
- color: #268bd2;
- text-decoration: none;
-}
-.related-posts li a:hover small {
- color: inherit;
-}
-
-
-/*
- * Pagination
- *
- * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when
- * there are no more previous or next posts to show.
- */
-
-.pagination {
- overflow: hidden; /* clearfix */
- margin-left: -1rem;
- margin-right: -1rem;
- font-family: "PT Sans", Helvetica, Arial, sans-serif;
- color: #ccc;
- text-align: center;
-}
-
-/* Pagination items can be `span`s or `a`s */
-.pagination-item {
- display: block;
- padding: 1rem;
- border: 1px solid #eee;
-}
-.pagination-item:first-child {
- margin-bottom: -1px;
-}
-
-/* Only provide a hover state for linked pagination items */
-a.pagination-item:hover {
- background-color: #f5f5f5;
-}
-
-
-/*
- * Tags
- *
- * Super lightweight (HTML-wise) blog pagination. `span`s are provide for when
- * there are no more previous or next posts to show.
- */
-
-.tags {
-
- overflow: hidden; /* clearfix */
- font-family: "PT Sans", Helvetica, Arial, sans-serif;
- color: #ccc;
- text-align: center;
- border: 2px dotted #eee;
- border-radius: 3px;
- padding: 5px;
-
- height: auto;
- display: inline-block;
- vertical-align: middle;
-}
-
-/* Pagination items can be `span`s or `a`s */
-.tag {
- display: block;
- padding-top: 1px;
- padding-bottom: 1px;
- padding-left: 4px;
- padding-right: 4px;
- margin: 5px;
- border: 1px solid #eee;
- background: #f5f5f5;
- border-radius: 15px;
- font-size: smaller;
-}
-
-/* Only provide a hover state for linked pagination items */
-.tag:hover {
- background-color: #ddd;
-}
-
-
-
-@media (min-width: 30em) {
- .pagination {
- margin: 3rem 0;
- }
- .pagination-item {
- float: left;
- width: 50%;
- }
- .pagination-item:first-child {
- margin-bottom: 0;
- border-top-left-radius: 4px;
- border-bottom-left-radius: 4px;
- }
- .pagination-item:last-child {
- margin-left: -1px;
- border-top-right-radius: 4px;
- border-bottom-right-radius: 4px;
- }
-}
-
-
-/* Fix whitespace of listings w/ numbers (issue #155) */
-table.codehilitetable pre {
- padding: 0;
-}
-td.code /* to exclude listings w/o numbers */
-pre.code.literal-block {
- margin-left: 0;
-}
diff --git a/themes/hyde/bundles b/themes/hyde/bundles
deleted file mode 100644
index f89154fc..00000000
--- a/themes/hyde/bundles
+++ /dev/null
@@ -1 +0,0 @@
-assets/css/all.css=rst.css,poole.css,hyde.css,code.css,custom.css
diff --git a/themes/hyde/engine b/themes/hyde/engine
deleted file mode 100644
index 6f04b300..00000000
--- a/themes/hyde/engine
+++ /dev/null
@@ -1 +0,0 @@
-jinja
diff --git a/themes/hyde/hyde.theme b/themes/hyde/hyde.theme
deleted file mode 100644
index 2402b4bf..00000000
--- a/themes/hyde/hyde.theme
+++ /dev/null
@@ -1,7 +0,0 @@
-[Theme]
-engine = jinja
-parent = base-jinja
-author = Yoong Shin Chow
-author_url = https://github.com/chow1026
-based_on = Hyde theme by mdo
-license = MIT
diff --git a/themes/hyde/parent b/themes/hyde/parent
deleted file mode 100644
index e9ed6608..00000000
--- a/themes/hyde/parent
+++ /dev/null
@@ -1 +0,0 @@
-base-jinja
diff --git a/themes/hyde/templates/archiveindex.tmpl b/themes/hyde/templates/archiveindex.tmpl
deleted file mode 100644
index 8b9286e3..00000000
--- a/themes/hyde/templates/archiveindex.tmpl
+++ /dev/null
@@ -1,13 +0,0 @@
-{# -*- coding: utf-8 -*- #}
-{% extends 'index.tmpl' %}
-
-{% block extra_head %}
- {{ super() }}
- {% if translations|length > 1 and generate_atom %}
- {% for language in translations|sort %}
-
- {% endfor %}
- {% elif generate_atom %}
-
- {% endif %}
-{% endblock %}
diff --git a/themes/hyde/templates/base.tmpl b/themes/hyde/templates/base.tmpl
deleted file mode 100644
index 32648c12..00000000
--- a/themes/hyde/templates/base.tmpl
+++ /dev/null
@@ -1,39 +0,0 @@
-{# -*- coding: utf-8 -*- #}
-{% import 'base_helper.tmpl' as base with context %}
-{% import 'base_header.tmpl' as header with context %}
-{% import 'base_footer.tmpl' as footer with context %}
-{{ set_locale(lang) }}
-{{ base.html_headstart() }}
-{% block extra_head %}
-{# Leave this block alone. #}
-{% endblock %}
-{{ template_hooks['extra_head']() }}
-
-
- {{ messages("Skip to main content") }}
-
-
-
-
- {% block content %}{% endblock %}
-
-
- {% block extra_js %}{% endblock %}
- {{ body_end }}
- {{ template_hooks['body_end']() }}
- {{ base.late_load_js() }}
-
-