http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/6fa6824b/_sass/vendor/neat/grid/_span-columns.scss
----------------------------------------------------------------------
diff --git a/_sass/vendor/neat/grid/_span-columns.scss 
b/_sass/vendor/neat/grid/_span-columns.scss
new file mode 100644
index 0000000..c79193d
--- /dev/null
+++ b/_sass/vendor/neat/grid/_span-columns.scss
@@ -0,0 +1,43 @@
+@mixin span-columns($span: $columns of $container-columns, $display: block) {
+  $columns: nth($span, 1);
+  $container-columns: container-span($span);
+
+  // Set nesting context (used by shift())
+  $parent-columns: get-parent-columns($container-columns) !global;
+
+  $direction: get-direction($layout-direction, $default-layout-direction);
+  $opposite-direction: get-opposite-direction($direction);
+
+  $display-table: is-display-table($container-display-table, $display);
+
+  @if $display-table  {
+    display: table-cell;
+    width: percentage($columns / $container-columns);
+  } @else {
+    float: #{$opposite-direction};
+
+    @if $display != no-display {
+      display: block;
+    }
+
+    @if $display == collapse {
+      @warn "The 'collapse' argument will be deprecated. Use 'block-collapse' 
instead."
+    }
+
+    @if $display == collapse or $display == block-collapse {
+      width: flex-grid($columns, $container-columns) + 
flex-gutter($container-columns);
+
+      &:last-child {
+        width: flex-grid($columns, $container-columns);
+      }
+
+    } @else {
+      margin-#{$direction}: flex-gutter($container-columns);
+      width: flex-grid($columns, $container-columns);
+
+      &:last-child {
+        margin-#{$direction}: 0;
+      }
+    }
+  }
+}

http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/6fa6824b/_sass/vendor/neat/grid/_to-deprecate.scss
----------------------------------------------------------------------
diff --git a/_sass/vendor/neat/grid/_to-deprecate.scss 
b/_sass/vendor/neat/grid/_to-deprecate.scss
new file mode 100644
index 0000000..d0a681f
--- /dev/null
+++ b/_sass/vendor/neat/grid/_to-deprecate.scss
@@ -0,0 +1,57 @@
+@mixin breakpoint($query:$feature $value $columns, $total-columns: 
$grid-columns) {
+  @warn "The breakpoint() mixin was renamed to media() in Neat 1.0. Please 
update your project with the new syntax before the next version bump.";
+
+  @if length($query) == 1 {
+    @media screen and ($default-feature: nth($query, 1)) {
+      $default-grid-columns: $grid-columns;
+      $grid-columns: $total-columns;
+      @content;
+      $grid-columns: $default-grid-columns;
+    }
+  }
+
+  @else if length($query) == 2 {
+    @media screen and (nth($query, 1): nth($query, 2)) {
+      $default-grid-columns: $grid-columns;
+      $grid-columns: $total-columns;
+      @content;
+      $grid-columns: $default-grid-columns;
+    }
+  }
+
+  @else if length($query) == 3 {
+    @media screen and (nth($query, 1): nth($query, 2)) {
+      $default-grid-columns: $grid-columns;
+      $grid-columns: nth($query, 3);
+      @content;
+      $grid-columns: $default-grid-columns;
+    }
+  }
+
+  @else if length($query) == 4 {
+    @media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): 
nth($query, 4)) {
+      $default-grid-columns: $grid-columns;
+      $grid-columns: $total-columns;
+      @content;
+      $grid-columns: $default-grid-columns;
+    }
+  }
+
+  @else if length($query) == 5 {
+    @media screen and (nth($query, 1): nth($query, 2)) and (nth($query, 3): 
nth($query, 4)) {
+      $default-grid-columns: $grid-columns;
+      $grid-columns: nth($query, 5);
+      @content;
+      $grid-columns: $default-grid-columns;
+    }
+  }
+
+  @else {
+    @warn "Wrong number of arguments for breakpoint(). Read the documentation 
for more details.";
+  }
+}
+
+@mixin nth-omega($nth, $display: block, $direction: default) {
+  @warn "The nth-omega() mixin is deprecated. Please use omega() instead.";
+  @include omega($nth $display, $direction);
+}

http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/6fa6824b/_sass/vendor/neat/grid/_visual-grid.scss
----------------------------------------------------------------------
diff --git a/_sass/vendor/neat/grid/_visual-grid.scss 
b/_sass/vendor/neat/grid/_visual-grid.scss
new file mode 100644
index 0000000..1c822fd
--- /dev/null
+++ b/_sass/vendor/neat/grid/_visual-grid.scss
@@ -0,0 +1,41 @@
+@mixin grid-column-gradient($values...) {
+  background-image: deprecated-webkit-gradient(linear, left top, left bottom, 
$values);
+  background-image:  -webkit-linear-gradient(left, $values);
+  background-image:     -moz-linear-gradient(left, $values);
+  background-image:      -ms-linear-gradient(left, $values);
+  background-image:       -o-linear-gradient(left, $values);
+  background-image: unquote("linear-gradient(left, #{$values})");
+}
+
+@if $visual-grid == true or $visual-grid == yes {
+  body:before {
+    content: '';
+    display: inline-block;
+    @include grid-column-gradient(gradient-stops($grid-columns));
+    height: 100%;
+    left: 0;
+    margin: 0 auto;
+    max-width: $max-width;
+    opacity: $visual-grid-opacity;
+    position: fixed;
+    right: 0;
+    width: 100%;
+    pointer-events: none;
+
+    @if $visual-grid-index == back {
+      z-index: -1;
+    }
+
+    @else if $visual-grid-index == front {
+      z-index: 9999;
+    }
+
+    @each $breakpoint in $visual-grid-breakpoints {
+      @if $breakpoint != nil {
+        @include media($breakpoint) {
+          @include grid-column-gradient(gradient-stops($grid-columns));
+        }
+      }
+    }
+  }
+}

http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/6fa6824b/_sass/vendor/neat/settings/_grid.scss
----------------------------------------------------------------------
diff --git a/_sass/vendor/neat/settings/_grid.scss 
b/_sass/vendor/neat/settings/_grid.scss
new file mode 100644
index 0000000..f1dcda4
--- /dev/null
+++ b/_sass/vendor/neat/settings/_grid.scss
@@ -0,0 +1,7 @@
+$column: golden-ratio(1em, 3) !default; // Column width
+$gutter: golden-ratio(1em, 1) !default; // Gutter between each two columns
+$grid-columns: 12 !default; // Total number of columns in the grid
+$max-width: em(1088) !default; // Max-width of the outer container
+$border-box-sizing: true !default; // Makes all elements have a border-box 
layout
+$default-feature: min-width; // Default @media feature for the breakpoint() 
mixin
+$default-layout-direction: LTR !default;

http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/6fa6824b/_sass/vendor/neat/settings/_visual-grid.scss
----------------------------------------------------------------------
diff --git a/_sass/vendor/neat/settings/_visual-grid.scss 
b/_sass/vendor/neat/settings/_visual-grid.scss
new file mode 100644
index 0000000..611c2b3
--- /dev/null
+++ b/_sass/vendor/neat/settings/_visual-grid.scss
@@ -0,0 +1,5 @@
+$visual-grid: false !default; // Display the base grid
+$visual-grid-color: #EEE !default;
+$visual-grid-index: back !default; // Show grid behind content (back) or 
overlay it over the content (front)
+$visual-grid-opacity: 0.4 !default;
+$visual-grid-breakpoints: () !default;

http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/6fa6824b/_site/about/index.html
----------------------------------------------------------------------
diff --git a/_site/about/index.html b/_site/about/index.html
new file mode 100644
index 0000000..3a09a09
--- /dev/null
+++ b/_site/about/index.html
@@ -0,0 +1,198 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8">
+    <title>About ARIA TOSCA • Apache ARIA TOSCA</title>
+    
+    
+    
+       <!-- Twitter Cards -->
+       <meta name="twitter:title" content="About ARIA TOSCA">
+       
+       
+       
+       
+       <meta name="twitter:card" content="summary">
+       <meta name="twitter:image" content="/images/aria-icon.png">
+       
+       <!-- Open Graph -->
+       <meta property="og:locale" content="en">
+       <meta property="og:type" content="article">
+       <meta property="og:title" content="About ARIA TOSCA">
+       
+       <meta property="og:url" content="/about/">
+       <meta property="og:site_name" content="Apache ARIA TOSCA">
+
+    <link rel="canonical" href="/about/">
+
+    <link href="/atom.xml" type="application/atom+xml" rel="alternate" 
title="Apache ARIA TOSCA Atom Feed">
+    <link href="/sitemap.xml" type="application/xml" rel="sitemap" 
title="Sitemap">
+
+    <meta name="HandheldFriendly" content="True">
+    <meta name="MobileOptimized" content="320">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="cleartype" content="on">
+
+    <link rel="stylesheet" href="/css/main.css">
+    <!-- HTML5 Shiv and Media Query Support for IE -->
+    <!--[if lt IE 9]>
+      <script src="/js/vendor/html5shiv.min.js"></script>
+      <script src="/js/vendor/respond.min.js"></script>
+    <![endif]-->
+
+  </head>
+
+  <body id="js-body">
+    <!--[if lt IE 9]><div class="upgrade notice-warning"><strong>Your browser 
is quite old!</strong> Why not <a href="http://whatbrowser.org/";>upgrade to a 
newer one</a> to better enjoy this site?</div><![endif]-->
+
+    <header id="masthead">
+  <div class="inner-wrap">
+    <a href="/" class="site-title">Apache ARIA TOSCA</a>
+    <nav role="navigation" class="menu top-menu">
+        <ul class="menu-item">
+       <li class="home"><a href="/">Apache ARIA TOSCA</a></li>
+       
+    
+    <li><a href="/about/" >About</a></li>
+  
+    
+    <li><a href="/community/" >Community</a></li>
+  
+    
+    <li><a href="/getting-started/" >Getting Started</a></li>
+  
+    
+    <li><a href="/roadmap/" >Roadmap</a></li>
+  
+</ul>
+    </nav>
+  </div><!-- /.inner-wrap -->
+</header><!-- /.masthead -->
+    <nav role="navigation" id="js-menu" class="sliding-menu-content">
+  <h5>Apache ARIA TOSCA <span>Table of Contents</span></h5>
+  <ul class="menu-item">
+    <li>
+      <a href="/about/">
+        
+        <div class="title">About</div>
+        <p class="excerpt">About ARIA TOSCA</p>
+      </a>
+    </li><li>
+      <a href="/community/">
+        
+        <div class="title">Community</div>
+        <p class="excerpt">Joing the ARIA TOSCA Community</p>
+      </a>
+    </li><li>
+      <a href="/getting-started/">
+        
+        <div class="title">Getting Started</div>
+        <p class="excerpt">Getting started with ARIA TOSCA</p>
+      </a>
+    </li><li>
+      <a href="/roadmap/">
+        
+        <div class="title">Roadmap</div>
+        <p class="excerpt">Roadmap Features of ARIA TOSCA</p>
+      </a>
+    </li>
+  </ul>
+</nav>
+<button type="button" id="js-menu-trigger" class="sliding-menu-button 
lines-button x2" role="button" aria-label="Toggle Navigation">
+  <span class="nav-lines"></span>
+</button>
+
+<div id="js-menu-screen" class="menu-screen"></div>
+
+
+    <div id="page-wrapper">
+      <div id="main" role="main">
+       <article class="wrap" itemscope itemtype="http://schema.org/Article";>
+               
+               
+               <div class="page-title">
+                       <h1>About ARIA TOSCA</h1>
+               </div>
+               <div class="inner-wrap">
+                       <div id="content" class="page-content" 
itemprop="articleBody">
+                               <p>ARIA is a vendor neutral and technology 
independent implementation of the OASIS TOSCA specification. ARIA offers a 
Command Line Interface(CLI) to develop and execute TOSCA templates, and an 
easily consumable Software Development Kit(SDK) for building TOSCA enabled 
software. ARIA is an open source, and open governance python project, Apache 
Software Foundation Incubation, offering an implementation library of the OASIS 
TOSCA specification.</p>
+
+<p>ARIA was formed to advance adoption of the TOSCA standard and accelerate 
the industry’s journey towards application orchestration in cloud 
environments.</p>
+
+<p>ARIA, and TOSCA alike, were born out of the market need for a completely 
vendor / cloud / technology neutral orchestration that allows for portability 
and interoperability. ARIA is expected to accelerate the development around the 
TOSCA specification, advance its adoption, demonstrate simplified portability 
of TOSCA orchestration, and increase agility through more rapid community 
contributed iterations.</p>
+
+<p>ARIA it is a framework for implementing orchestration software based on 
“Topology and Orchestration Specification for Cloud Applications(TOSCA)” a 
leading cloud-agnostic templating model formulated by the OASIS Foundation.</p>
+
+<p>ARIA offers a library with a programmable interface that allows embedding 
ARIA into collaborative projects, to enable organizations looking to 
incorporate TOSCA orchestration capabilities into their solutions.</p>
+
+<p><img src="/images/aria-architecture.png" alt="ARIA Architecture" /></p>
+
+<p>Through ARIA, application vendors will be able to test and run their 
applications easily, from blueprint to deployment, without the former hassle of 
developing the orchestration engine themselves, simplifying TOSCA certification 
and validation exponentially.</p>
+
+<p><img src="/images/aria-tosca-workflow.png" alt="ARIA Architecture" /></p>
+
+<h2 id="aria-tosca-parser">ARIA TOSCA Parser</h2>
+<p>ARIA includes a TOSCA DSL parser, the parser’s role is to interpret the 
TOSCA template, create an in-memory graph of the application and validate 
template correctness. TOSCA provides a typing system with normative node types 
to describe the possible building blocks for constructing a service template, 
as well as relationship types to describe possible kinds of relations. Both 
node and relationship types may define life-cycle operations to implement the 
behavior an orchestration engine can invoke when instantiating a service 
template. The template files are written in declarative YAML language using 
TOSCA normative types. Technology specific types can be introduced via ARIA 
Plugins without any modifications of the parser code. ARIA natively supports 
TOSCA Simple Profile 1.0, and TOSCA Simple Profile for Network Function 
Virtualization.</p>
+
+<h4 id="tosca-templates-include">TOSCA Templates include:</h4>
+<ul>
+  <li>YAML Topology Template</li>
+  <li>Plugins</li>
+  <li>Workflows</li>
+  <li>Resources such as scripts and others</li>
+</ul>
+
+<h2 id="aria-plugins">ARIA Plugins</h2>
+<p>ARIA Plugins allow extending the TOSCA normative types dynamically by 
adding new technology specific node types and relationship types, without 
changing the code of the ARIA TOSCA Parser. The plugins introduce new node 
types and the implementation that realizes the logic behind every new node 
type. The plugin based types are isolated, allowing to use different versions 
of the same plugin in a single blueprint - for example support OpenStack Kilo 
and OpenStack Juno in the same template. It also allows combining types of 
different technologies - for example OpenStack nodes with VMware, Amazon, or 
other types such as Router, Firewall, Kubernetes and others. The work of 
interacting with IaaS APIs, running scripts, Configuration Management tools, 
Monitoring tools and any other tools used when managing applications is done by 
the ARIA Plugins. Plugins can be included as part of the application template 
package and loaded dynamically. ARIA includes set of plugins that can be used 
as is 
 or as reference for implementing for new plugins.</p>
+
+<h2 id="aria-workflows">ARIA Workflows</h2>
+<p>ARIA Workflows are automated process algorithms that allow dynamic 
interaction with the graph described by the application topology template. ARIA 
Workflows describe the flow of the automation by determining when which tasks 
will be executed. A task may be an operation, optionally implemented by a 
plugin, or other actions, including arbitrary code or scripts. ARIA Workflows 
can be embedded within the TOSCA Template to be able to access the graph 
dynamically. Workflows are implemented as Python code using dedicated APIs and 
a framework to access the graph and the runtime context of the application, the 
context provide access to the object graph described in the TOSCA template.</p>
+
+<p>ARIA comes with a number of built-in workflows - these are the workflows 
for install, uninstall, scale and heal. Built-in workflows are not special in 
any way - ARIA supports creating custom workflows that use the same APIs 
build-in workflows are using.</p>
+
+                               <hr />
+                               <footer class="page-footer">
+                                       
+                                       
+                                       
+                               </footer><!-- /.footer -->
+                               <aside>
+                                       
+                               </aside>
+                       </div><!-- /.content -->
+               </div><!-- /.inner-wrap -->
+               
+       </article><!-- ./wrap -->
+</div><!-- /#main -->
+
+      <footer role="contentinfo" id="site-footer">
+       <nav role="navigation" class="menu bottom-menu">
+               <ul class="menu-item">
+               
+      
+                       <li><a href="/about/" >About</a></li>
+               
+      
+                       <li><a href="/Community/" >Community</a></li>
+               
+      
+                       <li><a href="/start/" >Getting Started</a></li>
+               
+      
+                       <li><a href="/docs/" >Roadmap</a></li>
+               
+               </ul>
+       </nav><!-- /.bottom-menu -->
+       <p class="copyright">ARIA is an agile reference implementation of 
automation based on OASIS TOSCA Specification. It is a framework for 
implementing orchestration software and a command line tool to execute TOSCA 
based application blueprints.</p>
+       <p class="copyright">&#169; 2017 <a href="">Apache ARIA TOSCA</a>.</p>
+
+</footer>
+
+    </div>
+
+    <script src="/js/vendor/jquery-1.9.1.min.js"></script>
+    <script src="/js/main.js"></script>
+
+  </body>
+
+</html>

http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/6fa6824b/_site/apple-touch-icon-precomposed.png
----------------------------------------------------------------------
diff --git a/_site/apple-touch-icon-precomposed.png 
b/_site/apple-touch-icon-precomposed.png
new file mode 100644
index 0000000..c7b85e0
Binary files /dev/null and b/_site/apple-touch-icon-precomposed.png differ

http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/6fa6824b/_site/atom.xml
----------------------------------------------------------------------
diff --git a/_site/atom.xml b/_site/atom.xml
new file mode 100644
index 0000000..4847dd0
--- /dev/null
+++ b/_site/atom.xml
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="utf-8"?><feed 
xmlns="http://www.w3.org/2005/Atom";><generator uri="http://jekyllrb.com"; 
version="3.1.6">Jekyll</generator><link href="/atom.xml" rel="self" 
type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" 
/><updated>2017-06-15T17:25:09+03:00</updated><id>/</id><title>Apache ARIA 
TOSCA</title><subtitle>ARIA is an agile reference implementation of automation 
based on OASIS TOSCA Specification. It is a framework for implementing 
orchestration software and a command line tool to execute TOSCA based 
application blueprints.</subtitle></feed>

http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/6fa6824b/_site/community/index.html
----------------------------------------------------------------------
diff --git a/_site/community/index.html b/_site/community/index.html
new file mode 100644
index 0000000..eae9465
--- /dev/null
+++ b/_site/community/index.html
@@ -0,0 +1,187 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8">
+    <title>ARIA TOSCA Community • Apache ARIA TOSCA</title>
+    
+    
+    
+       <!-- Twitter Cards -->
+       <meta name="twitter:title" content="ARIA TOSCA Community">
+       
+       
+       
+       
+       <meta name="twitter:card" content="summary">
+       <meta name="twitter:image" content="/images/aria-icon.png">
+       
+       <!-- Open Graph -->
+       <meta property="og:locale" content="en">
+       <meta property="og:type" content="article">
+       <meta property="og:title" content="ARIA TOSCA Community">
+       
+       <meta property="og:url" content="/community/">
+       <meta property="og:site_name" content="Apache ARIA TOSCA">
+
+    <link rel="canonical" href="/community/">
+
+    <link href="/atom.xml" type="application/atom+xml" rel="alternate" 
title="Apache ARIA TOSCA Atom Feed">
+    <link href="/sitemap.xml" type="application/xml" rel="sitemap" 
title="Sitemap">
+
+    <meta name="HandheldFriendly" content="True">
+    <meta name="MobileOptimized" content="320">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <meta http-equiv="cleartype" content="on">
+
+    <link rel="stylesheet" href="/css/main.css">
+    <!-- HTML5 Shiv and Media Query Support for IE -->
+    <!--[if lt IE 9]>
+      <script src="/js/vendor/html5shiv.min.js"></script>
+      <script src="/js/vendor/respond.min.js"></script>
+    <![endif]-->
+
+  </head>
+
+  <body id="js-body">
+    <!--[if lt IE 9]><div class="upgrade notice-warning"><strong>Your browser 
is quite old!</strong> Why not <a href="http://whatbrowser.org/";>upgrade to a 
newer one</a> to better enjoy this site?</div><![endif]-->
+
+    <header id="masthead">
+  <div class="inner-wrap">
+    <a href="/" class="site-title">Apache ARIA TOSCA</a>
+    <nav role="navigation" class="menu top-menu">
+        <ul class="menu-item">
+       <li class="home"><a href="/">Apache ARIA TOSCA</a></li>
+       
+    
+    <li><a href="/about/" >About</a></li>
+  
+    
+    <li><a href="/community/" >Community</a></li>
+  
+    
+    <li><a href="/getting-started/" >Getting Started</a></li>
+  
+    
+    <li><a href="/roadmap/" >Roadmap</a></li>
+  
+</ul>
+    </nav>
+  </div><!-- /.inner-wrap -->
+</header><!-- /.masthead -->
+    <nav role="navigation" id="js-menu" class="sliding-menu-content">
+  <h5>Apache ARIA TOSCA <span>Table of Contents</span></h5>
+  <ul class="menu-item">
+    <li>
+      <a href="/about/">
+        
+        <div class="title">About</div>
+        <p class="excerpt">About ARIA TOSCA</p>
+      </a>
+    </li><li>
+      <a href="/community/">
+        
+        <div class="title">Community</div>
+        <p class="excerpt">Joing the ARIA TOSCA Community</p>
+      </a>
+    </li><li>
+      <a href="/getting-started/">
+        
+        <div class="title">Getting Started</div>
+        <p class="excerpt">Getting started with ARIA TOSCA</p>
+      </a>
+    </li><li>
+      <a href="/roadmap/">
+        
+        <div class="title">Roadmap</div>
+        <p class="excerpt">Roadmap Features of ARIA TOSCA</p>
+      </a>
+    </li>
+  </ul>
+</nav>
+<button type="button" id="js-menu-trigger" class="sliding-menu-button 
lines-button x2" role="button" aria-label="Toggle Navigation">
+  <span class="nav-lines"></span>
+</button>
+
+<div id="js-menu-screen" class="menu-screen"></div>
+
+
+    <div id="page-wrapper">
+      <div id="main" role="main">
+       <article class="wrap" itemscope itemtype="http://schema.org/Article";>
+               
+               
+               <div class="page-title">
+                       <h1>ARIA TOSCA Community</h1>
+               </div>
+               <div class="inner-wrap">
+                       <div id="content" class="page-content" 
itemprop="articleBody">
+                               <h2 id="contribution">Contribution</h2>
+
+<p>You are welcome and encouraged to participate and contribute to the ARIA 
project.</p>
+
+<p>Please see our guide to
+<a 
href="https://cwiki.apache.org/confluence/display/ARIATOSCA/Contributing+to+ARIA";>Contributing
 to ARIA</a></p>
+
+<h2 id="resources">Resources</h2>
+
+<ul>
+  <li><a href="https://issues.apache.org/jira/browse/ARIA";>Issue 
tracker</a></li>
+  <li>Dev mailing list: [email protected]</li>
+  <li>User mailing list: [email protected]</li>
+</ul>
+
+<p>Subscribe by sending a mail to <code 
class="highlighter-rouge">&lt;group&gt;[email protected]</code>
 (e.g.
+<code 
class="highlighter-rouge">[email protected]</code>).
+See information on how to subscribe to mailing lists <a 
href="https://www.apache.org/foundation/mailinglists.html";>here</a>.</p>
+
+<p>For past correspondence, see the
+<a 
href="http://mail-archives.apache.org/mod_mbox/incubator-ariatosca-dev/";>dev 
mailing list archive</a></p>
+
+<p>If you have any questions or ideas regarding contribution, please let us 
know on the [email protected] mailing list.</p>
+
+                               <hr />
+                               <footer class="page-footer">
+                                       
+                                       
+                                       
+                               </footer><!-- /.footer -->
+                               <aside>
+                                       
+                               </aside>
+                       </div><!-- /.content -->
+               </div><!-- /.inner-wrap -->
+               
+       </article><!-- ./wrap -->
+</div><!-- /#main -->
+
+      <footer role="contentinfo" id="site-footer">
+       <nav role="navigation" class="menu bottom-menu">
+               <ul class="menu-item">
+               
+      
+                       <li><a href="/about/" >About</a></li>
+               
+      
+                       <li><a href="/Community/" >Community</a></li>
+               
+      
+                       <li><a href="/start/" >Getting Started</a></li>
+               
+      
+                       <li><a href="/docs/" >Roadmap</a></li>
+               
+               </ul>
+       </nav><!-- /.bottom-menu -->
+       <p class="copyright">ARIA is an agile reference implementation of 
automation based on OASIS TOSCA Specification. It is a framework for 
implementing orchestration software and a command line tool to execute TOSCA 
based application blueprints.</p>
+       <p class="copyright">&#169; 2017 <a href="">Apache ARIA TOSCA</a>.</p>
+
+</footer>
+
+    </div>
+
+    <script src="/js/vendor/jquery-1.9.1.min.js"></script>
+    <script src="/js/main.js"></script>
+
+  </body>
+
+</html>

Reply via email to