Personal site update, and remove bugsnag.

master
Nick Sergeant 2012-11-19 18:49:10 -05:00
parent cacaecfcd6
commit 61796a5438
5 changed files with 15 additions and 9 deletions

View File

@ -79,6 +79,14 @@
</section>
<aside class="main">
{% if blog_user.username == 'nick' %}
<section class="module hire">
<h1>Hire me</h1>
<p>
I'm available for select freelance projects to help
you build value and increase revenue for your
web-based product. <a href="mailto:nick@nicksergeant.com">Email me</a>.
</p>
</section>
<section class="module projects">
<h1>Notable projects</h1>
<ul>

File diff suppressed because one or more lines are too long

View File

@ -243,6 +243,11 @@ section.main {
}
}
}
p {
color: #999;
font: normal 12px $Helvetica;
line-height: 18px;
}
}
}
}

File diff suppressed because one or more lines are too long

View File

@ -108,7 +108,6 @@ MIDDLEWARE_CLASSES = (
'django.contrib.messages.middleware.MessageMiddleware',
'pagination.middleware.PaginationMiddleware',
'blogs.middleware.BlogMiddleware',
'bugsnag.django.middleware.BugsnagMiddleware',
)
ROOT_URLCONF = 'snipt.urls'
@ -223,12 +222,6 @@ else:
# API
TASTYPIE_CANNED_ERROR = "There was an error with your request. The site developers have a record of this error, please email api@snipt.net and we'll help you out."
# Bugsnag
BUGSNAG = {
"api_key": "",
"project_root": PROJECT_PATH,
}
# Extensions
if DEBUG:
INSTALLED_APPS += ('django_extensions',)