Skip to content

Commit 1bd34b3

Browse files
committed
rebuilding site Fri Mar 17 20:17:18 CDT 2017
1 parent ecb53f8 commit 1bd34b3

File tree

6 files changed

+183
-4
lines changed

6 files changed

+183
-4
lines changed

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,19 @@ <h1 class="title is-4">Elixirscript</h1>
4141
<section class="section">
4242
<div class="container">
4343

44+
<article>
45+
<h2 class="subtitle is-6">March 17, 2017</h2>
46+
<h1 class="title"><a href="https://elixirscript.github.io/post/elixirscript-0.27.0-released/">elixirscript 0.27.0 released</a></h1>
47+
48+
<div class="content">
49+
For a full list of changes, check out out the changelog.
50+
Here are the major changes in this release:
51+
Super The super special form has been implemented and with it, defoverridable
52+
Global JavaScript Interop Any JavaScript function, property or module in the global namespace can be accessed by using the JS module
53+
JS.alert(&quot;hello&quot;) JS.console.log(&quot;hello&quot;) JS.Date.now()
54+
</div>
55+
</article>
56+
4457
<article>
4558
<h2 class="subtitle is-6">February 25, 2017</h2>
4659
<h1 class="title"><a href="https://elixirscript.github.io/post/elixirscript-0.26.0-released/">elixirscript 0.26.0 released</a></h1>

index.xml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,38 @@
66
<description>Recent content on Elixirscript</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>en-us</language>
9-
<lastBuildDate>Sun, 05 Mar 2017 14:27:53 -0600</lastBuildDate>
9+
<lastBuildDate>Fri, 17 Mar 2017 20:05:52 -0500</lastBuildDate>
1010
<atom:link href="https://elixirscript.github.io/index.xml" rel="self" type="application/rss+xml" />
1111

12+
<item>
13+
<title>elixirscript 0.27.0 released</title>
14+
<link>https://elixirscript.github.io/post/elixirscript-0.27.0-released/</link>
15+
<pubDate>Fri, 17 Mar 2017 20:05:52 -0500</pubDate>
16+
17+
<guid>https://elixirscript.github.io/post/elixirscript-0.27.0-released/</guid>
18+
<description>
19+
20+
&lt;p&gt;For a full list of changes, check out out the &lt;a href=&#34;https://github.com/elixirscript/elixirscript/blob/master/CHANGELOG.md&#34;&gt;changelog&lt;/a&gt;.&lt;/p&gt;
21+
22+
&lt;p&gt;Here are the major changes in this release:&lt;/p&gt;
23+
24+
&lt;h2 id=&#34;super&#34;&gt;Super&lt;/h2&gt;
25+
26+
&lt;p&gt;The &lt;code&gt;super&lt;/code&gt; special form has been implemented and with it, &lt;code&gt;defoverridable&lt;/code&gt;&lt;/p&gt;
27+
28+
&lt;h2 id=&#34;global-javascript-interop&#34;&gt;Global JavaScript Interop&lt;/h2&gt;
29+
30+
&lt;p&gt;Any JavaScript function, property or module in the global namespace can be accessed by using the &lt;code&gt;JS&lt;/code&gt; module&lt;/p&gt;
31+
32+
&lt;pre&gt;&lt;code class=&#34;language-elixir&#34;&gt;JS.alert(&amp;quot;hello&amp;quot;)
33+
34+
JS.console.log(&amp;quot;hello&amp;quot;)
35+
36+
JS.Date.now()
37+
&lt;/code&gt;&lt;/pre&gt;
38+
</description>
39+
</item>
40+
1241
<item>
1342
<title>using with phoenix</title>
1443
<link>https://elixirscript.github.io/guide/using-with-phoenix/</link>
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="en-us">
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta content="" name="keywords">
7+
<meta content="elixirscript 0.27.0 released - Elixirscript" property="og:title">
8+
<title>elixirscript 0.27.0 released | Elixirscript</title>
9+
<link rel="stylesheet" href="https://elixirscript.github.io/css/style.css">
10+
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
11+
12+
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/styles/github.min.css">
13+
14+
15+
<section class="section">
16+
<div class="container">
17+
<nav class="nav">
18+
<div class="nav-left">
19+
<a class="nav-item" href="https://elixirscript.github.io">
20+
<h1 class="title is-4">Elixirscript</h1>
21+
</a>
22+
</div>
23+
<div class="nav-right">
24+
<nav class="nav-item level is-mobile">
25+
<a class="level-item" href="/guide">Guide</a>
26+
<a class="level-item" href="https://github.com/elixirscript">
27+
<span class="icon">
28+
<i class="fa fa-github"></i>
29+
</span>
30+
</a>
31+
32+
<a class="level-item" href="/index.xml">
33+
<span class="icon">
34+
<i class="fa fa-rss"></i>
35+
</span>
36+
</a>
37+
38+
</nav>
39+
</div>
40+
</nav>
41+
</div>
42+
</section>
43+
<section class="section">
44+
<div class="container">
45+
<h2 class="subtitle is-6">March 17, 2017</h2>
46+
<h1 class="title">elixirscript 0.27.0 released</h1>
47+
48+
<div class="content">
49+
50+
51+
<p>For a full list of changes, check out out the <a href="https://github.com/elixirscript/elixirscript/blob/master/CHANGELOG.md">changelog</a>.</p>
52+
53+
<p>Here are the major changes in this release:</p>
54+
55+
<h2 id="super">Super</h2>
56+
57+
<p>The <code>super</code> special form has been implemented and with it, <code>defoverridable</code></p>
58+
59+
<h2 id="global-javascript-interop">Global JavaScript Interop</h2>
60+
61+
<p>Any JavaScript function, property or module in the global namespace can be accessed by using the <code>JS</code> module</p>
62+
63+
<pre><code class="language-elixir">JS.alert(&quot;hello&quot;)
64+
65+
JS.console.log(&quot;hello&quot;)
66+
67+
JS.Date.now()
68+
</code></pre>
69+
70+
</div>
71+
</div>
72+
</section>
73+
74+
75+
<section class="section">
76+
<div class="container has-text-centered">
77+
<p></p>
78+
</div>
79+
</section>
80+
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/highlight.min.js" integrity="sha256-KbfTjB0WZ8vvXngdpJGY3Yp3xKk+tttbqClO11anCIU=" crossorigin="anonymous"></script>
81+
82+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/elixir.min.js"></script>
83+
84+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/javascript.min.js"></script>
85+
86+
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.9.0/languages/bash.min.js"></script>
87+
88+
<script>hljs.initHighlightingOnLoad();</script>
89+
90+

post/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,19 @@ <h1 class="title is-4">Elixirscript</h1>
4141
<section class="section">
4242
<div class="container">
4343

44+
<article>
45+
<h2 class="subtitle is-6">March 17, 2017</h2>
46+
<h1 class="title"><a href="https://elixirscript.github.io/post/elixirscript-0.27.0-released/">elixirscript 0.27.0 released</a></h1>
47+
48+
<div class="content">
49+
For a full list of changes, check out out the changelog.
50+
Here are the major changes in this release:
51+
Super The super special form has been implemented and with it, defoverridable
52+
Global JavaScript Interop Any JavaScript function, property or module in the global namespace can be accessed by using the JS module
53+
JS.alert(&quot;hello&quot;) JS.console.log(&quot;hello&quot;) JS.Date.now()
54+
</div>
55+
</article>
56+
4457
<article>
4558
<h2 class="subtitle is-6">February 25, 2017</h2>
4659
<h1 class="title"><a href="https://elixirscript.github.io/post/elixirscript-0.26.0-released/">elixirscript 0.26.0 released</a></h1>

post/index.xml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,38 @@
66
<description>Recent content in Posts on Elixirscript</description>
77
<generator>Hugo -- gohugo.io</generator>
88
<language>en-us</language>
9-
<lastBuildDate>Sat, 25 Feb 2017 16:46:24 -0600</lastBuildDate>
9+
<lastBuildDate>Fri, 17 Mar 2017 20:05:52 -0500</lastBuildDate>
1010
<atom:link href="https://elixirscript.github.io/post/index.xml" rel="self" type="application/rss+xml" />
1111

12+
<item>
13+
<title>elixirscript 0.27.0 released</title>
14+
<link>https://elixirscript.github.io/post/elixirscript-0.27.0-released/</link>
15+
<pubDate>Fri, 17 Mar 2017 20:05:52 -0500</pubDate>
16+
17+
<guid>https://elixirscript.github.io/post/elixirscript-0.27.0-released/</guid>
18+
<description>
19+
20+
&lt;p&gt;For a full list of changes, check out out the &lt;a href=&#34;https://github.com/elixirscript/elixirscript/blob/master/CHANGELOG.md&#34;&gt;changelog&lt;/a&gt;.&lt;/p&gt;
21+
22+
&lt;p&gt;Here are the major changes in this release:&lt;/p&gt;
23+
24+
&lt;h2 id=&#34;super&#34;&gt;Super&lt;/h2&gt;
25+
26+
&lt;p&gt;The &lt;code&gt;super&lt;/code&gt; special form has been implemented and with it, &lt;code&gt;defoverridable&lt;/code&gt;&lt;/p&gt;
27+
28+
&lt;h2 id=&#34;global-javascript-interop&#34;&gt;Global JavaScript Interop&lt;/h2&gt;
29+
30+
&lt;p&gt;Any JavaScript function, property or module in the global namespace can be accessed by using the &lt;code&gt;JS&lt;/code&gt; module&lt;/p&gt;
31+
32+
&lt;pre&gt;&lt;code class=&#34;language-elixir&#34;&gt;JS.alert(&amp;quot;hello&amp;quot;)
33+
34+
JS.console.log(&amp;quot;hello&amp;quot;)
35+
36+
JS.Date.now()
37+
&lt;/code&gt;&lt;/pre&gt;
38+
</description>
39+
</item>
40+
1241
<item>
1342
<title>elixirscript 0.26.0 released</title>
1443
<link>https://elixirscript.github.io/post/elixirscript-0.26.0-released/</link>

sitemap.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
22
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
33

4+
<url>
5+
<loc>https://elixirscript.github.io/post/elixirscript-0.27.0-released/</loc>
6+
<lastmod>2017-03-17T20:05:52-05:00</lastmod>
7+
</url>
8+
49
<url>
510
<loc>https://elixirscript.github.io/guide/using-with-phoenix/</loc>
611
<lastmod>2017-03-05T14:27:53-06:00</lastmod>
@@ -18,7 +23,7 @@
1823

1924
<url>
2025
<loc>https://elixirscript.github.io/</loc>
21-
<lastmod>2017-03-05T14:27:53-06:00</lastmod>
26+
<lastmod>2017-03-17T20:05:52-05:00</lastmod>
2227
<priority>0</priority>
2328
</url>
2429

@@ -30,7 +35,7 @@
3035

3136
<url>
3237
<loc>https://elixirscript.github.io/post/</loc>
33-
<lastmod>2017-02-25T16:46:24-06:00</lastmod>
38+
<lastmod>2017-03-17T20:05:52-05:00</lastmod>
3439
<priority>0</priority>
3540
</url>
3641

0 commit comments

Comments
 (0)