Skip to content

Instantly share code, notes, and snippets.

@stereobooster
Forked from brianblakely/gist:581868
Created April 21, 2011 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stereobooster/934761 to your computer and use it in GitHub Desktop.
Save stereobooster/934761 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<!-- Helpful things to keep in your <head/>
// Brian Blakely, 360i
// http://twitter.com/brianblakely/
-->
<head>
<!-- According to Heather Champ, former community manager at flickr,
you should not allow search engines to index your "Contact Us"
or "Complaints" page if you value your sanity. This is an HTML-
centric way of achieving that.
WARNING: DO NOT INCLUDE ON PAGES THAT SHOULD APPEAR IN SEARCH ENGINES. -->
<meta name="robots" content="noindex" />
<!-- Suppress IE6's pop-up-on-mouseover toolbar for images, that can
interfere with certain designs. -->
<meta http-equiv="imagetoolbar" content="false" />
<!-- IE9 Pinned Site Settings!
Documentation: http://msdn.microsoft.com/en-ca/library/gg131029(VS.85).aspx
See the documentation for JavaScript APIs, as well. -->
<!-- Pinned site name, as Windows sees it - this will be the page title
by default, unless you include this rule. -->
<meta name="application-name" content="Sample Title" />
<!-- Pinned shortcuts also get a tooltip - this is it. -->
<meta name="msapplication-tooltip" content="A description of what this site does." />
<!-- If the site should go to a specific URL when it is pinned (such as
the homepage), enter it here.
One idea is to send it to a special URL so you can track # of pinned users,
like so: http://www.example.com/index.html?pinned=true -->
<meta name="msapplication-starturl" content="" />
<!-- IE9 will automatically use the overall color of your site's favicon to
shade its browser buttons. UNLESS you give it another color here.
Only use named colors ("red") or hex colors ("#f00"). -->
<meta name="msapplication-navbutton-color" content=""/>
<!-- If the site should open at a certain window size once
pinned, you can specify the dimensions here.
It only supports static pixel dimensions. 800x600 minimum. -->
<meta name="msapplication-window" content="width=800;height=600"/>
<!-- Define Jump List tasks that will appear when the pinned site's
icon gets a right-click. Each "task" goes to the specified URL,
and gets its own mini icon (essentially a favicon, a 16x16 .ICO). -->
<meta name="msapplication-task" content="name=Task 1;action-uri=http://host/Page1.html;icon-uri=http://host/icon1.ico"/>
<meta name="msapplication-task" content="name=Task 2;action-uri=http://microsoft.com/Page2.html;icon-uri=http://host/icon2.ico"/>
<!-- Facebook will use the following data to represent your site
when it is shared.
Facebook documentation (includes info on sharing more specific
media types): http://developers.facebook.com/docs/share -->
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<!-- Signal to search engines and others "Use this URL for this page!"
Useful when URLs are dynamically generated. -->
<link rel="canonical" href="" />
<!-- Signal to the world "This is the shortURL for this page!"
Poorly supported at this time.
http://microformats.org/wiki/rel-shortlink -->
<link rel="shortlink" href="" />
<!-- Sites with search functionality should be strongly considered for a
browser search plugin.
How to make a browser search plugin:
http://www.google.com/search?ie=UTF-8&q=how+to+make+browser+search+plugin -->
<link rel="search" title="" type="application/opensearchdescription+xml" href="" />
<!-- http://www.sitemaps.org/ -->
<link rel="sitemap" type="application/xml" title="Sitemap" href="/sitemap.xml">
<!-- http://dublincore.org/ -->
<link rel="meta" type="application/rdf+xml" title="Dublin" href="/dublin.rdf">
<!-- http://www.rssboard.org/rss-specification -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml">
<!-- http://www.atomenabled.org/ -->
<link rel="alternate" type="application/x.atom+xml" title="Atom" href="/atom.xml">
<!-- http://www.hixie.ch/specs/pingback/pingback -->
<link rel="pingback" href="">
</head>
<body>
<!-- ... -->
<!-- Let's help Mother Nature and link to a local copy of jQuery
until our project is ready for launch. -->
<!--script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script-->
<script src="js/jquery.js"></script>
<!-- jQuery Lint for the performance-tweaking stages of your project.
Notifies of inefficient selectors and other ego-breaking things.
WARNING: THIS CAN BREAK STUFF IN IE.
TAKE IT OUT WHEN YOU MOVE TO DEBUGGING. -->
<script src="js/jquery.lint.js"></script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment