initial nikola -> hugo
This commit is contained in:
parent
f6b828e896
commit
49af233d6c
8136 changed files with 16214 additions and 28543 deletions
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
[submodule "themes/Bleach"]
|
||||
path = themes/Bleach
|
||||
url = https://github.com/digivend/bleach-theme
|
||||
|
|
@ -1 +0,0 @@
|
|||
# Plugin modules go here.
|
||||
6
archetypes/default.md
Normal file
6
archetypes/default.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
---
|
||||
|
||||
121
conf.py
121
conf.py
|
|
@ -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 = '<p class="more"><a href="{link}">{read_more}...</a></p>'
|
||||
FEED_READ_MORE_LINK = '<p><a href="{link}">{read_more}...</a> ({min_remaining_read})</p>'
|
||||
LICENSE = ""
|
||||
CONTENT_FOOTER = 'Contents © {date} <a href="mailto:{email}">{author}</a> {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
|
||||
38
config.toml
Normal file
38
config.toml
Normal file
|
|
@ -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"
|
||||
0
content/images/logo.jpg
Normal file
0
content/images/logo.jpg
Normal file
0
content/images/logo.png
Normal file
0
content/images/logo.png
Normal file
0
content/images/user.jpg
Normal file
0
content/images/user.jpg
Normal file
0
content/images/user.png
Normal file
0
content/images/user.png
Normal file
11
content/posts/2007/01/31/welcome.md
Normal file
11
content/posts/2007/01/31/welcome.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/02/01/pretty-sunset.md
Normal file
10
content/posts/2007/02/01/pretty-sunset.md
Normal file
|
|
@ -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.
|
||||
8
content/posts/2007/02/03/devil-toy.md
Normal file
8
content/posts/2007/02/03/devil-toy.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
+++
|
||||
date = "2007-02-03T01:35:24-07:00"
|
||||
title = "devil toy?"
|
||||
image = "http://www.flickr.com/photos/duckunix/378040420"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/02/03/expermiment-with-gimp.md
Normal file
8
content/posts/2007/02/03/expermiment-with-gimp.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/02/11/study-in-repetition.md
Normal file
8
content/posts/2007/02/11/study-in-repetition.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
+++
|
||||
date = "2007-02-11T16:55:49-07:00"
|
||||
title = "study in repetition"
|
||||
image = "/wp-content/uploads/2007/02/P2069947.JPG"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/02/15/color-or-the-lack-of.md
Normal file
8
content/posts/2007/02/15/color-or-the-lack-of.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
12
content/posts/2007/02/23/birds.md
Normal file
12
content/posts/2007/02/23/birds.md
Normal file
|
|
@ -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....
|
||||
|
||||

|
||||
8
content/posts/2007/02/25
Normal file
8
content/posts/2007/02/25
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
10
content/posts/2007/03/15/storm-clouds.md
Normal file
10
content/posts/2007/03/15/storm-clouds.md
Normal file
|
|
@ -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.....
|
||||
|
||||

|
||||
9
content/posts/2007/03/21/new-files.md
Normal file
9
content/posts/2007/03/21/new-files.md
Normal file
|
|
@ -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.
|
||||
12
content/posts/2007/03/21/texas-state-flower.md
Normal file
12
content/posts/2007/03/21/texas-state-flower.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||
<div style="width:240px;text-align:right;">
|
||||
|
||||

|
||||
|
||||
</div>
|
||||
9
content/posts/2007/03/22/sunflowers.md
Normal file
9
content/posts/2007/03/22/sunflowers.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/03/23/mutli-colored-sunflowers.md
Normal file
9
content/posts/2007/03/23/mutli-colored-sunflowers.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/03/24/reaching-for-the-sun.md
Normal file
9
content/posts/2007/03/24/reaching-for-the-sun.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/03/25/big-and-orange.md
Normal file
9
content/posts/2007/03/25/big-and-orange.md
Normal file
|
|
@ -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
|
||||
9
content/posts/2007/03/26/flowers-and-sky.md
Normal file
9
content/posts/2007/03/26/flowers-and-sky.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/03/28/sunset.md
Normal file
9
content/posts/2007/03/28/sunset.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-03-28T05:52:56-07:00"
|
||||
title = "Sunset"
|
||||
image = "http://www.flickr.com/photos/duckunix/337713741/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/03/29/ray-of-lights.md
Normal file
9
content/posts/2007/03/29/ray-of-lights.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/03/30/windmill.md
Normal file
9
content/posts/2007/03/30/windmill.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-03-30T08:00:40-07:00"
|
||||
title = "Windmill"
|
||||
image = "http://www.flickr.com/photos/duckunix/435972144/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
11
content/posts/2007/03/31/old-car.md
Normal file
11
content/posts/2007/03/31/old-car.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/04/01/i-am-not-a-rambler-no-more.md
Normal file
9
content/posts/2007/04/01/i-am-not-a-rambler-no-more.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/04/02/no-more-good-times.md
Normal file
9
content/posts/2007/04/02/no-more-good-times.md
Normal file
|
|
@ -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/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/03/lizard-2.md
Normal file
9
content/posts/2007/04/03/lizard-2.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/04/04/lizard.md
Normal file
9
content/posts/2007/04/04/lizard.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/04/05/don-juan.md
Normal file
9
content/posts/2007/04/05/don-juan.md
Normal file
|
|
@ -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
|
||||
9
content/posts/2007/04/06/sunflower.md
Normal file
9
content/posts/2007/04/06/sunflower.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-06T06:03:09-07:00"
|
||||
title = "sunflower"
|
||||
image = "http://www.flickr.com/photos/duckunix/435938240/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/07/purple-flower.md
Normal file
9
content/posts/2007/04/07/purple-flower.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-07T13:04:02-07:00"
|
||||
title = "purple flower"
|
||||
image = "http://www.flickr.com/photos/duckunix/435933066/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/08/two-purple-flowers.md
Normal file
9
content/posts/2007/04/08/two-purple-flowers.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-08T13:04:58-07:00"
|
||||
title = "two purple flowers"
|
||||
image = "http://www.flickr.com/photos/duckunix/435934937/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/09/paper-whites.md
Normal file
9
content/posts/2007/04/09/paper-whites.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-09T13:05:44-07:00"
|
||||
title = "paper-whites"
|
||||
image = "http://www.flickr.com/photos/duckunix/430634957/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/10/5-flowers.md
Normal file
9
content/posts/2007/04/10/5-flowers.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-10T13:06:17-07:00"
|
||||
title = "5 flowers"
|
||||
image = "http://www.flickr.com/photos/duckunix/429719834/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/11/rose-bud-1.md
Normal file
9
content/posts/2007/04/11/rose-bud-1.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-11T13:07:04-07:00"
|
||||
title = "Rose Bud 1"
|
||||
image = "http://www.flickr.com/photos/duckunix/59322292/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
11
content/posts/2007/04/12/pansy.md
Normal file
11
content/posts/2007/04/12/pansy.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/04/13/new-growthand-a-visitor.md
Normal file
10
content/posts/2007/04/13/new-growthand-a-visitor.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/04/14/volunteers.md
Normal file
10
content/posts/2007/04/14/volunteers.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/04/15/aurora.md
Normal file
10
content/posts/2007/04/15/aurora.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/04/16/blue-iris.md
Normal file
10
content/posts/2007/04/16/blue-iris.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/04/18/wild-oninon.md
Normal file
10
content/posts/2007/04/18/wild-oninon.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/04/19/yellow-flowers.md
Normal file
10
content/posts/2007/04/19/yellow-flowers.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/04/20/last-bloom.md
Normal file
10
content/posts/2007/04/20/last-bloom.md
Normal file
|
|
@ -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.
|
||||
8
content/posts/2007/04/21/new-beginings.md
Normal file
8
content/posts/2007/04/21/new-beginings.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/04/21/pretty-windows.md
Normal file
10
content/posts/2007/04/21/pretty-windows.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/04/22/gilded-ceiling.md
Normal file
10
content/posts/2007/04/22/gilded-ceiling.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/04/23/beach-view.md
Normal file
9
content/posts/2007/04/23/beach-view.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-23T08:10:24-07:00"
|
||||
title = "Beach view"
|
||||
image = "http://www.flickr.com/photos/duckunix/75283426/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/24/rock-out-crop.md
Normal file
9
content/posts/2007/04/24/rock-out-crop.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-24T08:11:07-07:00"
|
||||
title = "Rock out crop"
|
||||
image = "http://www.flickr.com/photos/duckunix/75282996/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/25/long-rocky-beach-view.md
Normal file
9
content/posts/2007/04/25/long-rocky-beach-view.md
Normal file
|
|
@ -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/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/26/don-juan-revisited.md
Normal file
9
content/posts/2007/04/26/don-juan-revisited.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/04/27/mutablis-reaching.md
Normal file
9
content/posts/2007/04/27/mutablis-reaching.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-27T08:13:37-07:00"
|
||||
title = "Mutablis reaching"
|
||||
image = "http://www.flickr.com/photos/duckunix/435817195/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/28/single-rose.md
Normal file
9
content/posts/2007/04/28/single-rose.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-28T08:14:25-07:00"
|
||||
title = "Single rose"
|
||||
image = "http://www.flickr.com/photos/duckunix/445647422/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/29/two-roses.md
Normal file
9
content/posts/2007/04/29/two-roses.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-29T08:14:58-07:00"
|
||||
title = "Two roses"
|
||||
image = "http://www.flickr.com/photos/duckunix/445647042/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/04/30/cluster-blooms.md
Normal file
9
content/posts/2007/04/30/cluster-blooms.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-04-30T08:15:43-07:00"
|
||||
title = "Cluster blooms"
|
||||
image = "http://www.flickr.com/photos/duckunix/445650593/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
9
content/posts/2007/05/01/mutablis-and-sky.md
Normal file
9
content/posts/2007/05/01/mutablis-and-sky.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
+++
|
||||
date = "2007-05-01T08:16:29-07:00"
|
||||
title = "Mutablis and sky"
|
||||
image = "http://www.flickr.com/photos/duckunix/435817664/"
|
||||
+++
|
||||
|
||||
|
||||
\
|
||||
|
||||
8
content/posts/2007/05/02/enter-the-duck.md
Normal file
8
content/posts/2007/05/02/enter-the-duck.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
9
content/posts/2007/05/03/thinking-cap.md
Normal file
9
content/posts/2007/05/03/thinking-cap.md
Normal file
|
|
@ -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....
|
||||
10
content/posts/2007/05/04/duck.md
Normal file
10
content/posts/2007/05/04/duck.md
Normal file
|
|
@ -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...
|
||||
8
content/posts/2007/05/04/make-way-for-the-duck.md
Normal file
8
content/posts/2007/05/04/make-way-for-the-duck.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/05/05/pretty-malard.md
Normal file
8
content/posts/2007/05/05/pretty-malard.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/05/06/goose-coming-through.md
Normal file
8
content/posts/2007/05/06/goose-coming-through.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/05/07/views-from-colorado.md
Normal file
8
content/posts/2007/05/07/views-from-colorado.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/05/08/rocky-mountain-sky.md
Normal file
8
content/posts/2007/05/08/rocky-mountain-sky.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
9
content/posts/2007/05/09/mountain-lake.md
Normal file
9
content/posts/2007/05/09/mountain-lake.md
Normal file
|
|
@ -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
|
||||
8
content/posts/2007/05/10/waterfall.md
Normal file
8
content/posts/2007/05/10/waterfall.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
+++
|
||||
date = "2007-05-10T06:32:07-07:00"
|
||||
title = "Waterfall"
|
||||
image = "http://farm1.static.flickr.com/166/429775006_b4dc7cdd85.jpg"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
9
content/posts/2007/05/11/rocky-peak.md
Normal file
9
content/posts/2007/05/11/rocky-peak.md
Normal file
|
|
@ -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!
|
||||
9
content/posts/2007/05/12/stop.md
Normal file
9
content/posts/2007/05/12/stop.md
Normal file
|
|
@ -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. :)
|
||||
11
content/posts/2007/05/13/paper-whites-2.md
Normal file
11
content/posts/2007/05/13/paper-whites-2.md
Normal file
|
|
@ -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
|
||||
.
|
||||
10
content/posts/2007/05/14/field-of-sunflowers.md
Normal file
10
content/posts/2007/05/14/field-of-sunflowers.md
Normal file
|
|
@ -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.
|
||||
8
content/posts/2007/05/15/rose-bud.md
Normal file
8
content/posts/2007/05/15/rose-bud.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
9
content/posts/2007/05/16/red-rose.md
Normal file
9
content/posts/2007/05/16/red-rose.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/05/17/triple-don.md
Normal file
9
content/posts/2007/05/17/triple-don.md
Normal file
|
|
@ -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.
|
||||
10
content/posts/2007/05/18/field-of-flowers-or-cool-sky.md
Normal file
10
content/posts/2007/05/18/field-of-flowers-or-cool-sky.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/05/19/sunflowers-2.md
Normal file
9
content/posts/2007/05/19/sunflowers-2.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/05/20/end-of-the-day.md
Normal file
9
content/posts/2007/05/20/end-of-the-day.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/05/21/yellow-orange-yellow.md
Normal file
9
content/posts/2007/05/21/yellow-orange-yellow.md
Normal file
|
|
@ -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.
|
||||
9
content/posts/2007/05/22/pretty-face.md
Normal file
9
content/posts/2007/05/22/pretty-face.md
Normal file
|
|
@ -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.
|
||||
8
content/posts/2007/05/23/duck-race.md
Normal file
8
content/posts/2007/05/23/duck-race.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
10
content/posts/2007/05/24/horns-anyone.md
Normal file
10
content/posts/2007/05/24/horns-anyone.md
Normal file
|
|
@ -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
|
||||
8
content/posts/2007/05/25/sky-at-lady-birds-place.md
Normal file
8
content/posts/2007/05/25/sky-at-lady-birds-place.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/05/26/rails-at-sunset.md
Normal file
8
content/posts/2007/05/26/rails-at-sunset.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
9
content/posts/2007/05/27/tall-building.md
Normal file
9
content/posts/2007/05/27/tall-building.md
Normal file
|
|
@ -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
|
||||
8
content/posts/2007/05/28/stop-2.md
Normal file
8
content/posts/2007/05/28/stop-2.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
+++
|
||||
date = "2007-05-28T06:06:37-07:00"
|
||||
title = "STOP!"
|
||||
image = "http://farm1.static.flickr.com/181/429744511_34d423cd46.jpg"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/05/29/water-foutain.md
Normal file
8
content/posts/2007/05/29/water-foutain.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/05/30/end-of-play.md
Normal file
8
content/posts/2007/05/30/end-of-play.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/05/31/steel-gate.md
Normal file
8
content/posts/2007/05/31/steel-gate.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
9
content/posts/2007/06/01/beach-flower.md
Normal file
9
content/posts/2007/06/01/beach-flower.md
Normal file
|
|
@ -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.
|
||||
8
content/posts/2007/06/02/beach-flower-and-rope.md
Normal file
8
content/posts/2007/06/02/beach-flower-and-rope.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/06/03/happy-dog-at-beach.md
Normal file
8
content/posts/2007/06/03/happy-dog-at-beach.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/06/04/sailboats-off-the-beach.md
Normal file
8
content/posts/2007/06/04/sailboats-off-the-beach.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/06/05/a-rose-is-still-a-rose.md
Normal file
8
content/posts/2007/06/05/a-rose-is-still-a-rose.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
10
content/posts/2007/06/08/coral-bean.md
Normal file
10
content/posts/2007/06/08/coral-bean.md
Normal file
|
|
@ -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.
|
||||
8
content/posts/2007/06/09/coral-beans.md
Normal file
8
content/posts/2007/06/09/coral-beans.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/06/10/last-coral-bean.md
Normal file
8
content/posts/2007/06/10/last-coral-bean.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
8
content/posts/2007/06/11/childs-bench.md
Normal file
8
content/posts/2007/06/11/childs-bench.md
Normal file
|
|
@ -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"
|
||||
+++
|
||||
|
||||
|
||||

|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue