Skip to content

Commit

Permalink
A cleaner title for google site links.
Browse files Browse the repository at this point in the history
Fixes #1, I hope. It'll take time to see.
  • Loading branch information
clutchski committed Jun 28, 2012
1 parent c155cd9 commit 3f20e10
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
13 changes: 10 additions & 3 deletions content/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
---
title: Documentation
title:
---

<p class="aside">
Welcome to Datadog's documentation site. If you have any questions as you go,
Welcome to Datadog's documentation site. If you have any questions as you go,
pop by our <a href="irc://irc.freenode.net/datadog">IRC channel</a>.
</p>

## Metrics
## Collecting Custom Metrics

This section will walk you through the process of instrumenting your
application to send custom metrics to Datadog.

Sending custom metrics to Datadog will give



This section describes how send your application's custom metrics to Datadog.

Expand Down
2 changes: 1 addition & 1 deletion content/static/docs.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#logo {
display: block;
height: 45px;
background: url("/static/bgs.png") no-repeat 0 -50px;
background: url("/static/logo.png") no-repeat 0 8px;
margin-left: 30px;
padding-left: 176px;
line-height: 42px;
Expand Down
Binary file added content/static/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>Datadog API Documentation - <%= @item[:title] %></title>
<% title = @item[:title] || '' %>
<title>Datadog Docs <%= title.empty? ? '' : " - #{title}" %></title>
<link rel="stylesheet" type="text/css" href="/static/main.css" media="screen">
<link rel="stylesheet" type="text/css" href="/static/docs.css" media="screen">
<link rel="stylesheet" type="text/css" href="/static/pygments.css" media="screen">
<meta name="generator" content="nanoc 3.2.3">
</head>
<body>
<div id="head">
<h1><a href="/" id="logo"><span>Datadog API Documentation</span></a></h1>
<h1><a href="/" id="logo" alt="Datadog Docs"></a></h1>
</div>
<div id="main">
<h1><%= @item[:title] %></h1>
<h1><%= title %></h1>
<%= yield %>
</div>
<div id="sidebar">
Expand Down

0 comments on commit 3f20e10

Please sign in to comment.