You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by kt...@apache.org on 2014/08/26 18:14:40 UTC

svn commit: r1620647 - in /incubator/flink: _posts/2014-08-26-release-0.6.md site/blog/index.html site/blog/page2/index.html site/index.html site/news/2014/08/ site/news/2014/08/26/ site/news/2014/08/26/release-0.6.html

Author: ktzoumas
Date: Tue Aug 26 16:14:40 2014
New Revision: 1620647

URL: http://svn.apache.org/r1620647
Log:
Flink 0.6 release announcement blog post

Added:
    incubator/flink/_posts/2014-08-26-release-0.6.md
    incubator/flink/site/news/2014/08/
    incubator/flink/site/news/2014/08/26/
    incubator/flink/site/news/2014/08/26/release-0.6.html
Modified:
    incubator/flink/site/blog/index.html
    incubator/flink/site/blog/page2/index.html
    incubator/flink/site/index.html

Added: incubator/flink/_posts/2014-08-26-release-0.6.md
URL: http://svn.apache.org/viewvc/incubator/flink/_posts/2014-08-26-release-0.6.md?rev=1620647&view=auto
==============================================================================
--- incubator/flink/_posts/2014-08-26-release-0.6.md (added)
+++ incubator/flink/_posts/2014-08-26-release-0.6.md Tue Aug 26 16:14:40 2014
@@ -0,0 +1,80 @@
+---
+layout: post
+title:  'Apache Flink 0.6 available'
+date:   2014-08-26 10:00:00
+categories: news
+---
+
+We are happy to announce the availability of Flink 0.6. This is the
+first release of the system inside the Apache Incubator and under the
+name Flink. Releases up to 0.5 were under the name Stratosphere, the
+academic and open source project that Flink originates from.
+
+##What is Flink?
+
+Apache Flink is a general-purpose data processing engine for
+clusters. It runs on YARN clusters on top of data stored in Hadoop, as
+well as stand-alone. Flink currently has programming APIs in Java and
+Scala. Jobs are executed via Flink's own runtime engine. Flink
+features:
+
+**Robust in-memory and out-of-core processing:** once read, data stays
+  in memory as much as possible, and is gracefully de-staged to disk in
+  the presence of memory pressure from limited memory or other
+  applications. The runtime is designed to perform very well both in
+  setups with abundant memory and in setups where memory is scarce.
+
+**Object-based APIs:** when programming, you do not have to pack your
+  data into key-value pairs or some other framework-specific data
+  model. Rather, you can use arbitrary Java and Scala types to model
+  your data.
+
+**Efficient iterative processing:** Flink contains explicit "iterate" operators
+  that enable very efficient loops over data sets, e.g., for machine
+  learning and graph applications.
+
+**A modular system stack:** Flink is not a direct implementation of its
+  APIs but a layered system. All programming APIs are translated to an
+  intermediate program representation that is compiled and optimized
+  via a cost-based optimizer. Lower-level layers of Flink also expose
+  programming APIs for extending the system.
+
+**Data pipelining/streaming:** Flink's runtime is designed as a
+  pipelined data processing engine rather than a batch processing
+  engine. Operators do not wait for their predecessors to finish in
+  order to start processing data. This results to very efficient
+  handling of large data sets.
+
+##Release 0.6
+
+Flink 0.6 builds on the latest Stratosphere 0.5 release. It includes
+many bug fixes and improvements that make the system more stable and
+robust, as well as breaking API changes.
+
+The full release notes are available [here](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&version=12327101).
+
+Download the release [here](http://flink.incubator.apache.org/downloads.html).
+
+##Contributors
+
+* Wilson Cao
+* Ufuk Celebi
+* Stephan Ewen
+* Jonathan Hasenburg
+* Markus Holzemer
+* Fabian Hueske
+* Sebastian Kunert
+* Vikhyat Korrapati
+* Aljoscha Krettek
+* Sebastian Kruse
+* Raymond Liu
+* Robert Metzger
+* Mingliang Qi
+* Till Rohrmann
+* Henry Saputra
+* Chesnay Schepler
+* Kostas Tzoumas
+* Robert Waury
+* Timo Walther
+* Daniel Warneke
+* Tobias Wiens

Modified: incubator/flink/site/blog/index.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/blog/index.html?rev=1620647&r1=1620646&r2=1620647&view=diff
==============================================================================
--- incubator/flink/site/blog/index.html (original)
+++ incubator/flink/site/blog/index.html Tue Aug 26 16:14:40 2014
@@ -108,6 +108,89 @@
 		<div class="col-md-8">
 			
 			<article>
+				<h2><a href="/news/2014/08/26/release-0.6.html">Apache Flink 0.6 available</a></h2>
+				<p class="meta">26 Aug 2014</p>
+				
+				<div><p>We are happy to announce the availability of Flink 0.6. This is the
+first release of the system inside the Apache Incubator and under the
+name Flink. Releases up to 0.5 were under the name Stratosphere, the
+academic and open source project that Flink originates from.</p>
+
+<h2 id="what-is-flink?">What is Flink?</h2>
+
+<p>Apache Flink is a general-purpose data processing engine for
+clusters. It runs on YARN clusters on top of data stored in Hadoop, as
+well as stand-alone. Flink currently has programming APIs in Java and
+Scala. Jobs are executed via Flink&#39;s own runtime engine. Flink
+features:</p>
+
+<p><strong>Robust in-memory and out-of-core processing:</strong> once read, data stays
+  in memory as much as possible, and is gracefully de-staged to disk in
+  the presence of memory pressure from limited memory or other
+  applications. The runtime is designed to perform very well both in
+  setups with abundant memory and in setups where memory is scarce.</p>
+
+<p><strong>Object-based APIs:</strong> when programming, you do not have to pack your
+  data into key-value pairs or some other framework-specific data
+  model. Rather, you can use arbitrary Java and Scala types to model
+  your data.</p>
+
+<p><strong>Efficient iterative processing:</strong> Flink contains explicit &quot;iterate&quot; operators
+  that enable very efficient loops over data sets, e.g., for machine
+  learning and graph applications.</p>
+
+<p><strong>A modular system stack:</strong> Flink is not a direct implementation of its
+  APIs but a layered system. All programming APIs are translated to an
+  intermediate program representation that is compiled and optimized
+  via a cost-based optimizer. Lower-level layers of Flink also expose
+  programming APIs for extending the system.</p>
+
+<p><strong>Data pipelining/streaming:</strong> Flink&#39;s runtime is designed as a
+  pipelined data processing engine rather than a batch processing
+  engine. Operators do not wait for their predecessors to finish in
+  order to start processing data. This results to very efficient
+  handling of large data sets.</p>
+
+<h2 id="release-0.6">Release 0.6</h2>
+
+<p>Flink 0.6 builds on the latest Stratosphere 0.5 release. It includes
+many bug fixes and improvements that make the system more stable and
+robust, as well as breaking API changes.</p>
+
+<p>The full release notes are available <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&amp;version=12327101">here</a>.</p>
+
+<p>Download the release <a href="http://flink.incubator.apache.org/downloads.html">here</a>.</p>
+
+<h2 id="contributors">Contributors</h2>
+
+<ul>
+<li>Wilson Cao</li>
+<li>Ufuk Celebi</li>
+<li>Stephan Ewen</li>
+<li>Jonathan Hasenburg</li>
+<li>Markus Holzemer</li>
+<li>Fabian Hueske</li>
+<li>Sebastian Kunert</li>
+<li>Vikhyat Korrapati</li>
+<li>Aljoscha Krettek</li>
+<li>Sebastian Kruse</li>
+<li>Raymond Liu</li>
+<li>Robert Metzger</li>
+<li>Mingliang Qi</li>
+<li>Till Rohrmann</li>
+<li>Henry Saputra</li>
+<li>Chesnay Schepler</li>
+<li>Kostas Tzoumas</li>
+<li>Robert Waury</li>
+<li>Timo Walther</li>
+<li>Daniel Warneke</li>
+<li>Tobias Wiens</li>
+</ul>
+</div>
+				<a href="/news/2014/08/26/release-0.6.html#disqus_thread">Apache Flink 0.6 available</a>
+			</article>
+			
+			<article>
 				<h2><a href="/news/2014/05/31/release-0.5.html">Stratosphere version 0.5 available</a></h2>
 				<p class="meta">31 May 2014</p>
 				
@@ -723,26 +806,6 @@ For a complete overview of the renamings
 				<a href="/news/2014/01/10/stratosphere-hadoop-summit.html#disqus_thread">Stratosphere got accepted to the Hadoop Summit Europe in Amsterdam</a>
 			</article>
 			
-			<article>
-				<h2><a href="/news/2013/12/13/humboldt-innovation-award.html">Stratosphere wins award at Humboldt Innovation Competition "Big Data: Research meets Startups"</a></h2>
-				<p class="meta">13 Dec 2013</p>
-				
-				<div>    <p> Stratosphere won the second place in
-    the <a href="http://www.humboldt-innovation.de/de/newsdetail/News/View/Forum%2BJunge%2BSpitzenforscher%2BBIG%2BData%2B%2BResearch%2Bmeets%2BStartups-123.html">competition</a>
-    organized by Humboldt Innovation on "Big Data: Research meets
-    Startups," where several research projects were evaluated by a
-    panel of experts from the Berlin startup ecosystem. The award
-    includes a monetary prize of 10,000 euros.
-    </p>
-
-    <p>We are extremely excited about this award, as it further
-    showcases the relevance of the Stratosphere platform and Big Data
-    technology in general for the technology startup world.
-    </p>
-</div>
-				<a href="/news/2013/12/13/humboldt-innovation-award.html#disqus_thread">Stratosphere wins award at Humboldt Innovation Competition "Big Data: Research meets Startups"</a>
-			</article>
-			
 		</div>
 		<div class="col-md-2"></div>
 	</div>

Modified: incubator/flink/site/blog/page2/index.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/blog/page2/index.html?rev=1620647&r1=1620646&r2=1620647&view=diff
==============================================================================
--- incubator/flink/site/blog/page2/index.html (original)
+++ incubator/flink/site/blog/page2/index.html Tue Aug 26 16:14:40 2014
@@ -108,6 +108,26 @@
 		<div class="col-md-8">
 			
 			<article>
+				<h2><a href="/news/2013/12/13/humboldt-innovation-award.html">Stratosphere wins award at Humboldt Innovation Competition "Big Data: Research meets Startups"</a></h2>
+				<p class="meta">13 Dec 2013</p>
+				
+				<div>    <p> Stratosphere won the second place in
+    the <a href="http://www.humboldt-innovation.de/de/newsdetail/News/View/Forum%2BJunge%2BSpitzenforscher%2BBIG%2BData%2B%2BResearch%2Bmeets%2BStartups-123.html">competition</a>
+    organized by Humboldt Innovation on "Big Data: Research meets
+    Startups," where several research projects were evaluated by a
+    panel of experts from the Berlin startup ecosystem. The award
+    includes a monetary prize of 10,000 euros.
+    </p>
+
+    <p>We are extremely excited about this award, as it further
+    showcases the relevance of the Stratosphere platform and Big Data
+    technology in general for the technology startup world.
+    </p>
+</div>
+				<a href="/news/2013/12/13/humboldt-innovation-award.html#disqus_thread">Stratosphere wins award at Humboldt Innovation Competition "Big Data: Research meets Startups"</a>
+			</article>
+			
+			<article>
 				<h2><a href="/news/2013/10/21/cikm2013-paper.html">Paper "“All Roads Lead to Rome:” Optimistic Recovery for Distributed Iterative Data Processing" accepted at CIKM 2013</a></h2>
 				<p class="meta">21 Oct 2013</p>
 				

Modified: incubator/flink/site/index.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/index.html?rev=1620647&r1=1620646&r2=1620647&view=diff
==============================================================================
--- incubator/flink/site/index.html (original)
+++ incubator/flink/site/index.html Tue Aug 26 16:14:40 2014
@@ -139,6 +139,8 @@
         <h5 style="margin:0px;">Recent Blog Posts</h5>
         <ul style="list-style-position:inside;margin:0;padding:0;">
           
+                    <li style="list-style-type: none; list-style-position:inside;"><small><a href="/news/2014/08/26/release-0.6.html">Apache Flink 0.6 available</a> (26 Aug 2014)</small></li>
+          
                     <li style="list-style-type: none; list-style-position:inside;"><small><a href="/news/2014/05/31/release-0.5.html">Stratosphere version 0.5 available</a> (31 May 2014)</small></li>
           
                     <li style="list-style-type: none; list-style-position:inside;"><small><a href="/news/2014/04/16/stratosphere-goes-apache-incubator.html">Stratosphere accepted as Apache Incubator Project</a> (16 Apr 2014)</small></li>
@@ -149,8 +151,6 @@
           
                     <li style="list-style-type: none; list-style-position:inside;"><small><a href="/news/2014/01/28/querying_mongodb.html">Accessing Data Stored in MongoDB with Stratosphere</a> (28 Jan 2014)</small></li>
           
-                    <li style="list-style-type: none; list-style-position:inside;"><small><a href="/news/2014/01/26/optimizer_plan_visualization_tool.html">Optimizer Plan Visualization Tool</a> (26 Jan 2014)</small></li>
-          
         </ul>
       </div>
     </div>

Added: incubator/flink/site/news/2014/08/26/release-0.6.html
URL: http://svn.apache.org/viewvc/incubator/flink/site/news/2014/08/26/release-0.6.html?rev=1620647&view=auto
==============================================================================
--- incubator/flink/site/news/2014/08/26/release-0.6.html (added)
+++ incubator/flink/site/news/2014/08/26/release-0.6.html Tue Aug 26 16:14:40 2014
@@ -0,0 +1,234 @@
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="utf-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <title>Apache Flink (incubating): Apache Flink 0.6 available</title>
+    <link rel="stylesheet" href="/css/bootstrap.css">
+    <link rel="stylesheet" href="/css/bootstrap-lumen-custom.css">
+    <link rel="stylesheet" href="/css/syntax.css">
+    <link rel="stylesheet" href="/css/custom.css">
+    <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
+  </head>
+  <body>
+
+<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
+  <div class="container">
+    <div class="navbar-header">
+      <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
+        <span class="sr-only">Toggle navigation</span>
+        <span class="icon-bar"></span>
+        <span class="icon-bar"></span>
+        <span class="icon-bar"></span>
+      </button>
+      <a class="navbar-brand" href="/index.html">Apache Flink</a>
+    </div>
+
+    <div class="collapse navbar-collapse" id="navbar-collapse-1">
+      <ul class="nav navbar-nav">
+        <li class="dropdown">
+          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Quickstart <b class="caret"></b></a>
+          <ul class="dropdown-menu">
+            <li><a href="/docs/0.6-incubating/setup_quickstart.html">Setup Flink</a></li>
+            <li><a href="/docs/0.6-incubating/java_api_quickstart.html">Java API</a></li>
+            <li><a href="/docs/0.6-incubating/scala_api_quickstart.html">Scala API</a></li>
+          </ul>
+        </li>
+
+        <li>
+          <a href="/downloads.html" class="">Downloads</a>
+        </li>
+
+        <li>
+          <a href="/docs/0.6-incubating/faq.html" class="">FAQ</a>
+        </li>
+
+        <li class="dropdown">
+          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
+          <ul class="dropdown-menu">
+            <li role="presentation" class="dropdown-header">Current Stable:</li>
+            <li><a href="/docs/0.6-incubating/">0.6-incubating</a></li>
+            <li><a href="/docs/javadocs-0.6-incubating/">0.6-incubating Javadocs</a></li>
+            <li class="divider"></li>
+            <li role="presentation" class="dropdown-header">Beta Preview:</li>
+            <li><a href="/docs/0.7-incubating/">0.7-incubating</a></li>
+            <li><a href="/docs/javadocs-0.7-incubating/">0.7-incubating Javadocs</a></li>
+          </ul>
+        </li>
+
+        <li class="dropdown">
+          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Community <b class="caret"></b></a>
+          <ul class="dropdown-menu">
+            <li><a href="/community.html#mailing-lists">Mailing Lists</a></li>
+            <li><a href="/community.html#issues">Issues</a></li>
+            <li><a href="/community.html#team">Team</a></li>
+            <li class="divider"></li>
+            <li><a href="/how-to-contribute.html">How To Contribute</a></li>
+            <li><a href="/coding_guidelines.html">Coding Guidelines</a></li>
+          </ul>
+        </li>
+
+        <li class="dropdown">
+          <a href="#" class="dropdown-toggle" data-toggle="dropdown">ASF <b class="caret"></b></a>
+          <ul class="dropdown-menu">
+            <li><a class="extLink" href="http://www.apache.org/">Apache Software Foundation</a><i class="small-font-awesome fa fa-external-link"></i></li>
+            <li><a class="extLink" href="http://www.apache.org/foundation/how-it-works.html">How it works</a><i class="small-font-awesome fa fa-external-link"></i></li>
+            <li><a class="extLink" href="http://www.apache.org/foundation/thanks.html">Thanks</a><i class="small-font-awesome fa fa-external-link"></i></li>
+            <li><a class="extLink" href="http://www.apache.org/foundation/sponsorship.html">Become a Sponsor</a><i class="small-font-awesome fa fa-external-link"></i></li>
+            <li><a class="extLink" href="http://incubator.apache.org/projects/flink.html">Incubation Status page</a><i class="small-font-awesome fa fa-external-link"></i></li>
+          </ul>
+        </li>
+
+        <li class="dropdown">
+          <a href="#" class="dropdown-toggle" data-toggle="dropdown">Project <b class="caret"></b></a>
+          <ul class="dropdown-menu">
+            <!--<li><a href="/project.html#history">History</a></li> -->
+            <li><a class="extLink" href="https://cwiki.apache.org/confluence/display/FLINK">Wiki</a><i class="small-font-awesome fa fa-external-link"></i></li>
+            <li><a class="extLink" href="https://wiki.apache.org/incubator/StratosphereProposal">Incubator Proposal</a><i class="small-font-awesome fa fa-external-link"></i></li>
+            <li><a class="extLink" href="http://www.apache.org/licenses/LICENSE-2.0">License</a><i class="small-font-awesome fa fa-external-link"></i></li>
+            <li><a class="extLink" href="https://github.com/apache/incubator-flink">Source Code</a><i class="small-font-awesome fa fa-external-link"></i></li>
+          </ul>
+        </li>
+
+        <li>
+          <a href="/blog/index.html" class="">Blog</a>
+        </li>
+
+      </ul>
+    </div>
+  </div>
+</nav>
+
+    <div style="padding-top:70px" class="container">
+
+<div class="container">
+	<div class="row">
+		<div class="col-md-2"></div>
+		<div class="col-md-8">
+			<article>
+			  <h2>Apache Flink 0.6 available</h2>
+			  <p class="meta">26 Aug 2014</p>
+			    
+			  <div>
+			<p>We are happy to announce the availability of Flink 0.6. This is the
+first release of the system inside the Apache Incubator and under the
+name Flink. Releases up to 0.5 were under the name Stratosphere, the
+academic and open source project that Flink originates from.</p>
+
+<h2 id="what-is-flink?">What is Flink?</h2>
+
+<p>Apache Flink is a general-purpose data processing engine for
+clusters. It runs on YARN clusters on top of data stored in Hadoop, as
+well as stand-alone. Flink currently has programming APIs in Java and
+Scala. Jobs are executed via Flink&#39;s own runtime engine. Flink
+features:</p>
+
+<p><strong>Robust in-memory and out-of-core processing:</strong> once read, data stays
+  in memory as much as possible, and is gracefully de-staged to disk in
+  the presence of memory pressure from limited memory or other
+  applications. The runtime is designed to perform very well both in
+  setups with abundant memory and in setups where memory is scarce.</p>
+
+<p><strong>Object-based APIs:</strong> when programming, you do not have to pack your
+  data into key-value pairs or some other framework-specific data
+  model. Rather, you can use arbitrary Java and Scala types to model
+  your data.</p>
+
+<p><strong>Efficient iterative processing:</strong> Flink contains explicit &quot;iterate&quot; operators
+  that enable very efficient loops over data sets, e.g., for machine
+  learning and graph applications.</p>
+
+<p><strong>A modular system stack:</strong> Flink is not a direct implementation of its
+  APIs but a layered system. All programming APIs are translated to an
+  intermediate program representation that is compiled and optimized
+  via a cost-based optimizer. Lower-level layers of Flink also expose
+  programming APIs for extending the system.</p>
+
+<p><strong>Data pipelining/streaming:</strong> Flink&#39;s runtime is designed as a
+  pipelined data processing engine rather than a batch processing
+  engine. Operators do not wait for their predecessors to finish in
+  order to start processing data. This results to very efficient
+  handling of large data sets.</p>
+
+<h2 id="release-0.6">Release 0.6</h2>
+
+<p>Flink 0.6 builds on the latest Stratosphere 0.5 release. It includes
+many bug fixes and improvements that make the system more stable and
+robust, as well as breaking API changes.</p>
+
+<p>The full release notes are available <a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&amp;version=12327101">here</a>.</p>
+
+<p>Download the release <a href="http://flink.incubator.apache.org/downloads.html">here</a>.</p>
+
+<h2 id="contributors">Contributors</h2>
+
+<ul>
+<li>Wilson Cao</li>
+<li>Ufuk Celebi</li>
+<li>Stephan Ewen</li>
+<li>Jonathan Hasenburg</li>
+<li>Markus Holzemer</li>
+<li>Fabian Hueske</li>
+<li>Sebastian Kunert</li>
+<li>Vikhyat Korrapati</li>
+<li>Aljoscha Krettek</li>
+<li>Sebastian Kruse</li>
+<li>Raymond Liu</li>
+<li>Robert Metzger</li>
+<li>Mingliang Qi</li>
+<li>Till Rohrmann</li>
+<li>Henry Saputra</li>
+<li>Chesnay Schepler</li>
+<li>Kostas Tzoumas</li>
+<li>Robert Waury</li>
+<li>Timo Walther</li>
+<li>Daniel Warneke</li>
+<li>Tobias Wiens</li>
+</ul>
+
+			  </div>
+			</article>
+		</div>
+		<div class="col-md-2"></div>
+	</div>
+</div>
+
+
+
+     <div class="footer">
+
+<hr class="divider">
+
+<p><small>Apache Flink is an effort undergoing incubation at The Apache Software
+Foundation (ASF), sponsored by the Apache Incubator PMC. Incubation is
+required of all newly accepted projects until a further review indicates that
+the infrastructure, communications, and decision making process have
+stabilized in a manner consistent with other successful ASF projects. While
+incubation status is not necessarily a reflection of the completeness or
+stability of the code, it does indicate that the project has yet to be fully
+endorsed by the ASF.</small></p>
+
+<p><a href="http://incubator.apache.org/"><img src="/img/apache-incubator-logo.png" alt="Incubator Logo"></a></p>
+
+<p class="text-center"><a href="/privacy-policy.html">Privacy Policy<a></p>
+
+      </div>
+    </div>
+
+    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
+    <script src="/js/bootstrap.min.js"></script>
+
+    <script>
+      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+
+      ga('create', 'UA-52545728-1', 'auto');
+      ga('send', 'pageview');
+
+    </script>
+
+  </body>
+</html>