This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/struts-site.git

commit 5386184256325b170dc888b1f05d4f187d7403ae
Author: Lukasz Lenart <lukaszlen...@apache.org>
AuthorDate: Wed Nov 15 08:33:23 2017 +0100

    Switches to default layout
---
 source/_layouts/getting-started.html               | 37 ----------------------
 source/getting-started/coding-actions.md           |  6 +++-
 source/getting-started/control-tags.md             |  6 +++-
 source/getting-started/exception-handling.md       |  6 +++-
 source/getting-started/form-tags.md                |  6 +++-
 .../getting-started/form-validation-using-xml.md   |  6 +++-
 .../how-to-create-a-struts2-web-application.md     |  5 ++-
 source/getting-started/http-session.md             |  5 ++-
 source/getting-started/processing-forms.md         |  6 +++-
 .../getting-started/wildcard-method-selection.md   |  6 +++-
 10 files changed, 43 insertions(+), 46 deletions(-)

diff --git a/source/_layouts/getting-started.html 
b/source/_layouts/getting-started.html
deleted file mode 100644
index b672f8f..0000000
--- a/source/_layouts/getting-started.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<!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 Getting Started"><< back to Getting 
Started</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 %}
-
-</body>
-</html>
diff --git a/source/getting-started/coding-actions.md 
b/source/getting-started/coding-actions.md
index 924d0ea..cd45a74 100644
--- a/source/getting-started/coding-actions.md
+++ b/source/getting-started/coding-actions.md
@@ -1,7 +1,11 @@
 ---
-layout: getting-started
+layout: default
 title: Coding actions
+parent:
+    title: Getting started
+    url: index.html
 ---
+
 # Coding actions
 
 This tutorial assumes you've completed the [Using Struts 2 
Tags](using-tags.html) tutorial and have a working using-tags project. The 
example code for this tutorial, coding-actions, is available for checkout from 
the Struts 2 GitHub repository: 
[https://github.com/apache/struts-examples](https://github.com/apache/struts-examples).
diff --git a/source/getting-started/control-tags.md 
b/source/getting-started/control-tags.md
index 50307a1..a8bf1cf 100644
--- a/source/getting-started/control-tags.md
+++ b/source/getting-started/control-tags.md
@@ -1,7 +1,11 @@
 ---
-layout: getting-started
+layout: default
 title: Control tags
+parent:
+    title: Getting started
+    url: index.html
 ---
+
 # Control Tags
 
 The example code for this tutorial, control_tags, is available at 
[https://github.com/apache/struts-examples](https://github.com/apache/struts-examples)
diff --git a/source/getting-started/exception-handling.md 
b/source/getting-started/exception-handling.md
index ec49d54..b7f67af 100644
--- a/source/getting-started/exception-handling.md
+++ b/source/getting-started/exception-handling.md
@@ -1,7 +1,11 @@
 ---
-layout: getting-started
+layout: default
 title: Exception handling
+parent:
+    title: Getting started
+    url: index.html
 ---
+
 # Exception Handling
 
 The code for this tutorial, exception_handling, is available for checkout at 
[https://github.com/apache/struts-examples](https://github.com/apache/struts-examples).
diff --git a/source/getting-started/form-tags.md 
b/source/getting-started/form-tags.md
index 85509a1..b1ef021 100644
--- a/source/getting-started/form-tags.md
+++ b/source/getting-started/form-tags.md
@@ -1,7 +1,11 @@
 ---
-layout: getting-started
+layout: default
 title: Form tags
+parent:
+    title: Getting started
+    url: index.html
 ---
+
 # Form Tags
 
 The example code for this tutorial, form_tags, can be checked out from 
[https://github.com/apache/struts-examples](https://github.com/apache/struts-examples).
diff --git a/source/getting-started/form-validation-using-xml.md 
b/source/getting-started/form-validation-using-xml.md
index 94b97c0..41180c1 100644
--- a/source/getting-started/form-validation-using-xml.md
+++ b/source/getting-started/form-validation-using-xml.md
@@ -1,7 +1,11 @@
 ---
-layout: getting-started
+layout: default
 title: Form validation using XML
+parent:
+    title: Getting started
+    url: index.html
 ---
+
 # Form Validation Using XML
 
 The example code for this tutorial, form_xml_validation, is available for 
checkout at 
[https://github.com/apache/struts-examples](https://github.com/apache/struts-examples)
diff --git a/source/getting-started/how-to-create-a-struts2-web-application.md 
b/source/getting-started/how-to-create-a-struts2-web-application.md
index 8aba5e5..997ffa4 100644
--- a/source/getting-started/how-to-create-a-struts2-web-application.md
+++ b/source/getting-started/how-to-create-a-struts2-web-application.md
@@ -1,6 +1,9 @@
 ---
-layout: getting-started
+layout: default
 title: How to create a Struts 2 web application
+parent:
+    title: Getting started
+    url: index.html
 ---
 # How To Create A Struts 2 Web Application
 
diff --git a/source/getting-started/http-session.md 
b/source/getting-started/http-session.md
index fa874a6..c710db8 100644
--- a/source/getting-started/http-session.md
+++ b/source/getting-started/http-session.md
@@ -1,6 +1,9 @@
 ---
-layout: getting-started
+layout: default
 title: Http Session
+parent:
+    title: Getting started
+    url: index.html
 ---
 
 # HTTP Session
diff --git a/source/getting-started/processing-forms.md 
b/source/getting-started/processing-forms.md
index 3c4c67f..8d3ffe3 100644
--- a/source/getting-started/processing-forms.md
+++ b/source/getting-started/processing-forms.md
@@ -1,7 +1,11 @@
 ---
-layout: getting-started
+layout: default
 title: Processing forms
+parent:
+    title: Getting started
+    url: index.html
 ---
+
 # Processing Forms
 
 This tutorial assumes you've completed the [Coding Struts 2 
Actions](coding-actions.html) tutorial and have a working 
diff --git a/source/getting-started/wildcard-method-selection.md 
b/source/getting-started/wildcard-method-selection.md
index e1f6036..44e1bcd 100644
--- a/source/getting-started/wildcard-method-selection.md
+++ b/source/getting-started/wildcard-method-selection.md
@@ -1,7 +1,11 @@
 ---
-layout: getting-started
+layout: default
 title: Wildcard Method Selection
+parent:
+    title: Getting started
+    url: index.html
 ---
+
 # Wildcard Method Selection
 
 The example code for this tutorial, wildcard_method_selection, is available 
for checkout at 
[https://github.com/apache/struts-examples](https://github.com/apache/struts-examples)

-- 
To stop receiving notification emails like this one, please contact
"commits@struts.apache.org" <commits@struts.apache.org>.

Reply via email to