Repository: struts-site Updated Branches: refs/heads/master 7ab95f336 -> e2c5145d4
Puts back the layout used by Maven Archetypes pages Project: http://git-wip-us.apache.org/repos/asf/struts-site/repo Commit: http://git-wip-us.apache.org/repos/asf/struts-site/commit/e2c5145d Tree: http://git-wip-us.apache.org/repos/asf/struts-site/tree/e2c5145d Diff: http://git-wip-us.apache.org/repos/asf/struts-site/diff/e2c5145d Branch: refs/heads/master Commit: e2c5145d4c0ddccc0237199bf9c4cd2abe7b49c7 Parents: 7ab95f3 Author: Lukasz Lenart <lukaszlen...@apache.org> Authored: Thu Sep 21 15:20:19 2017 +0200 Committer: Lukasz Lenart <lukaszlen...@apache.org> Committed: Thu Sep 21 15:20:19 2017 +0200 ---------------------------------------------------------------------- source/_layouts/maven-archetypes.html | 51 ++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts-site/blob/e2c5145d/source/_layouts/maven-archetypes.html ---------------------------------------------------------------------- diff --git a/source/_layouts/maven-archetypes.html b/source/_layouts/maven-archetypes.html new file mode 100644 index 0000000..63a1002 --- /dev/null +++ b/source/_layouts/maven-archetypes.html @@ -0,0 +1,51 @@ +<!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="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.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 href="index.html" title="back to Maven Archetypes"><< back to Maven Archetypes</a> + <a class="edit-on-gh" href="{{ site.repository_url }}/edit/master/source/{{ page.path }}" title="Edit this page on GitHub">Edit on GitHub</a> + {{ content }} + </section> +</article> + +{% include footer.html %} + +<script> +$(function() { + return $("h2, h3, h4, h5, h6").each(function(i, el) { + var $el, id; + $el = $(el); + id = $el.attr('id'); + if (id) { + $el.removeAttr('id'); + return $el.before($("<a />").addClass('anchor').attr('name', id)); + } + }); +}); +</script> + +</body> +</html>