summaryrefslogtreecommitdiff
path: root/design/templates/archives/expenses.html
blob: 0007270df6b3f3a58646a7f4f44c69c59b2e651a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends 'base.html' %}
{% load expense_total%}
{% load typogrify_tags %}

{% block pagetitle %}Luxagraf: Expenses{% endblock %}

{% block metadescription %}Think is costs a lot to drive around North America in a vintage Dodge Travco? Well, judge for yourself, here's how much is costs us.{% endblock %}
				
{% block primary %}		
    <main role="main">
    <article class="post--article">
            <header class="post--header">
                <h1 class="p-name entry-title post--title">Trip Costs</h1>
            </header>
        <div id="article" class="post--body post--body--single expense-wrapper">
            <p>When we were planning our trips the people who posted their finances were invaluably helpful for calculating how much we needed to make it work. It's also something many people don't like to talk about so expense breakdowns are sort of rare in the online travel world. In the spirit of (hopefully, maybe) inspiring someone else to get out there, here is a rough breakdown of our costs (sorry I didn't track expenses in much detail prior to the Travco trip).</p>
            {% for object in object_list %}
            <h2>{{object.name}}</h2>
            <p>{{object.dek}} <a href="{{object.get_absolute_url}}">View Details &#8674;</a></p>
            {%endfor%}
            <h2>Around the world in 2010</h2>
            <p>This trip cost us (two) roughly ~4k, including all airfare. That's horribly expense for 2 months of traveling and I would never do it again. But sometimes you have to spend some money to learn</p>
            <h2>Around the world in 2005-06</h2>
            <p>This trip cost me roughly ~10k, including all airfare. I was solo back then and could have probably spent about ~2k less without really cramping my style much, but a fair amount of the time was spent trying to drink myself into an early grave and alcohol is expensive. I don't know how those numbers translate to today's money, but I wouldn't hesitate to set out again with half that much.</p>

{%endblock%}