source/_layouts/plugin.html (34 lines of code) (raw):

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta name="Date-Revision-yyyymmdd" content="20140918"/> <meta http-equiv="Content-Language" content="en"/> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>{{ page.title }}</title> <link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,400italic,600italic,700italic" rel="stylesheet" type="text/css"> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <link href="/css/main.css" rel="stylesheet"> <link href="/css/custom.css" rel="stylesheet"> <link href="/highlighter/github-theme.css" rel="stylesheet"> <script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <script type="text/javascript" src="/bootstrap/js/bootstrap.js"></script> <script type="text/javascript" src="/js/community.js"></script> </head> <body> {% include header.html %} <article class="container"> <section class="col-md-12"> <a class="edit-on-gh" href="{{ site.repository_url }}/edit/master/source/{{ page.path }}" title="Edit this page on GitHub">Edit on GitHub</a> {% if page.parent %} <a href="{{ page.parent.url }}" title="back to {{ page.parent.title }}"><< back to {{ page.parent.title }}</a> {% else %} <a href="../" title="back to Plugins"><< back to Plugins</a> {% endif %} {{ content }} </section> </article> {% include footer.html %} </body> </html>