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 11:51:03 UTC

svn commit: r1565956 - in /struts/site/branches/jekyll-powered: _layouts/default.html _source/index.html

Author: lukaszlenart
Date: Sat Feb  8 10:51:03 2014
New Revision: 1565956

URL: http://svn.apache.org/r1565956
Log:
Restores missing files

Added:
    struts/site/branches/jekyll-powered/_layouts/default.html
    struts/site/branches/jekyll-powered/_source/index.html

Added: struts/site/branches/jekyll-powered/_layouts/default.html
URL: http://svn.apache.org/viewvc/struts/site/branches/jekyll-powered/_layouts/default.html?rev=1565956&view=auto
==============================================================================
--- struts/site/branches/jekyll-powered/_layouts/default.html (added)
+++ struts/site/branches/jekyll-powered/_layouts/default.html Sat Feb  8 10:51:03 2014
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<!--
+This isn't a real template - it's meta template which can be used to create new templates
+-->
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+  <meta charset="UTF-8"/>
+  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
+  <meta name="Date-Revision-yyyymmdd" content="20140206"/>
+  <meta http-equiv="Content-Language" content="en"/>
+
+  <title>Welcome to the Apache Struts project</title>
+
+  <link rel="stylesheet" href="/css/apache-maven-fluido-1.3.0.min.css"/>
+  <link rel="stylesheet" href="/css/site.css"/>
+  <link rel="stylesheet" href="/css/print.css" media="print"/>
+
+  <script type="text/javascript" src="/js/community.js"></script>
+</head>
+<body>
+
+  <header>
+    <nav>
+      Navigation
+    </nav>
+  </header>
+
+  <article>
+    <section>
+
+      {{ content }}
+
+    </section>
+  </article>
+
+  <aside>
+    Sidebar
+  </aside>
+
+  <footer>
+    Footer
+  </footer>
+
+</body>
+</html>

Added: struts/site/branches/jekyll-powered/_source/index.html
URL: http://svn.apache.org/viewvc/struts/site/branches/jekyll-powered/_source/index.html?rev=1565956&view=auto
==============================================================================
--- struts/site/branches/jekyll-powered/_source/index.html (added)
+++ struts/site/branches/jekyll-powered/_source/index.html Sat Feb  8 10:51:03 2014
@@ -0,0 +1,13 @@
+---
+layout: default
+title: Your New Jekyll Site
+---
+
+<div id="home">
+  <h1>Blog Posts</h1>
+  <ul class="posts">
+    {% for post in site.posts %}
+      <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
+    {% endfor %}
+  </ul>
+</div>