You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2014/02/08 23:33:18 UTC

svn commit: r1566147 - in /struts/site/branches/jekyll-powered/source/_includes: footer.html header.html top-menu.html

Author: lukaszlenart
Date: Sat Feb  8 22:33:17 2014
New Revision: 1566147

URL: http://svn.apache.org/r1566147
Log:
Adds basic components to build page of

Added:
    struts/site/branches/jekyll-powered/source/_includes/footer.html
    struts/site/branches/jekyll-powered/source/_includes/header.html
    struts/site/branches/jekyll-powered/source/_includes/top-menu.html

Added: struts/site/branches/jekyll-powered/source/_includes/footer.html
URL: http://svn.apache.org/viewvc/struts/site/branches/jekyll-powered/source/_includes/footer.html?rev=1566147&view=auto
==============================================================================
--- struts/site/branches/jekyll-powered/source/_includes/footer.html (added)
+++ struts/site/branches/jekyll-powered/source/_includes/footer.html Sat Feb  8 22:33:17 2014
@@ -0,0 +1,10 @@
+<hr/>
+<footer class="container">
+  <div class="row col-md-12 text-center">
+    Copyright &copy; 2000-2014 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.
+  </div>
+  <div class="row col-md-12 text-center">
+    Apache Struts, Struts, Apache, the Apache feather logo, and the Apache Struts
+    project logos are trademarks of The Apache Software Foundation.
+  </div>
+</footer>

Added: struts/site/branches/jekyll-powered/source/_includes/header.html
URL: http://svn.apache.org/viewvc/struts/site/branches/jekyll-powered/source/_includes/header.html?rev=1566147&view=auto
==============================================================================
--- struts/site/branches/jekyll-powered/source/_includes/header.html (added)
+++ struts/site/branches/jekyll-powered/source/_includes/header.html Sat Feb  8 22:33:17 2014
@@ -0,0 +1,17 @@
+<header>
+  {% include top-menu.html %}
+
+  <div class="container">
+    <div class="row">
+      <div class="pull-left">
+        <a href="/" id="bannerLeft">
+          <img src="/img/struts.gif" alt="Apache Struts"/>
+        </a>
+      </div>
+      <div class="pull-right"><a href="http://www.apache.org" id="bannerRight">
+        <img src="/img/asf-logo.gif" alt="Apache Software Foundation"/>
+      </a>
+      </div>
+    </div>
+  </div>
+</header>

Added: struts/site/branches/jekyll-powered/source/_includes/top-menu.html
URL: http://svn.apache.org/viewvc/struts/site/branches/jekyll-powered/source/_includes/top-menu.html?rev=1566147&view=auto
==============================================================================
--- struts/site/branches/jekyll-powered/source/_includes/top-menu.html (added)
+++ struts/site/branches/jekyll-powered/source/_includes/top-menu.html Sat Feb  8 22:33:17 2014
@@ -0,0 +1,64 @@
+<!-- Fixed navbar -->
+<nav>
+  <div class="navbar navbar-default navbar-fixed-top" role="navigation">
+    <div class="container">
+      <div class="navbar-collapse collapse">
+        <ul class="nav navbar-nav">
+
+          <li class="dropdown">
+            <a class="dropdown-toggle" data-toggle="dropdown" href="#">{{ site.name }} <b class="caret"></b></a>
+            <ul class="dropdown-menu">
+              <li><a href="index.html">Welcome</a></li>
+              <li><a href="downloads.html">Downloads</a></li>
+              <li><a href="announce.html">Announcements</a></li>
+              <li><a href="http://www.apache.org/licenses/">License</a></li>
+              <li><a href="http://apache.org/foundation/thanks.html">Thanks!</a></li>
+              <li><a href="http://apache.org/foundation/sponsorship.html">Sponsorship</a></li>
+            </ul>
+          </li>
+
+          <li class="dropdown">
+            <a class="dropdown-toggle" data-toggle="dropdown" href="#">Support <b class="caret"></b></a>
+            <ul class="dropdown-menu">
+              <li><a href="mail.html">User Mailing List</a></li>
+              <li><a href="https://issues.apache.org/jira/browse/WW">Issue Tracker</a></li>
+              <li><a href="security.html">Reporting Security Issues</a></li>
+            </ul>
+          </li>
+
+          <li class="dropdown">
+            <a class="dropdown-toggle" data-toggle="dropdown" href="#">Documentation <b class="caret"></b></a>
+            <ul class="dropdown-menu">
+              <li><a href="birdseye.html">Birds Eye</a></li>
+              <li><a href="primer.html">Key Technologies</a></li>
+              <li><a href="kickstart.html">Kickstart FAQ</a></li>
+              <li><a href="https://cwiki.apache.org/confluence/display/WW/Home">Wiki</a></li>
+              <li><a href="http://struts.apache.org/release/2.3.x/index.html">Struts 2</a></li>
+              <li><a href="http://struts.apache.org/release/1.3.x/index.html">Struts 1</a></li>
+            </ul>
+          </li>
+
+          <li class="dropdown">
+            <a class="dropdown-toggle" data-toggle="dropdown" href="#">Contributing <b class="caret"></b></a>
+            <ul class="dropdown-menu">
+              <li><a href="youatstruts.html">You at Struts</a></li>
+              <li><a href="helping.html">How to Help FAQ</a></li>
+              <li><a href="dev-mail.html">Development Lists</a></li>
+              <li class="divider"></li>
+              <li><a href="git-for-struts.html">Git for Struts</a></li>
+              <li><a href="builds.html">Source Code</a></li>
+              <li><a href="coding-standards.html">Coding standards</a></li>
+              <li class="divider"></li>
+              <li><a href="releases.html">Release Guidelines</a></li>
+              <li><a href="bylaws.html">PMC Charter</a></li>
+              <li><a href="volunteers.html">Volunteers</a></li>
+              <li><a href="https://git-wip-us.apache.org/repos/asf?p=struts.git">Source Repository</a></li>
+            </ul>
+          </li>
+
+        </ul>
+      </div>
+      <!--/.nav-collapse -->
+    </div>
+  </div>
+</nav>
\ No newline at end of file