From 29b9ac48fcc830f61d2fa09cbd334116f66a1cc8 Mon Sep 17 00:00:00 2001 From: Matthew Fluet Date: Mon, 30 Jan 2017 12:53:40 -0500 Subject: [PATCH] Post SIGPLAN statement on EO suspending visas --- News/SuspensionOfVisas.md | 4 ++++ _data/News.yaml | 19 +++++++++++++++++++ _layouts/home.html | 6 ++++++ _layouts/news.html | 30 ++++++++++++++++++++++++++++++ 4 files changed, 59 insertions(+) create mode 100644 News/SuspensionOfVisas.md create mode 100644 _data/News.yaml create mode 100644 _layouts/news.html diff --git a/News/SuspensionOfVisas.md b/News/SuspensionOfVisas.md new file mode 100644 index 00000000..366a39aa --- /dev/null +++ b/News/SuspensionOfVisas.md @@ -0,0 +1,4 @@ +--- +layout: news +title: SIGPLAN Expresses Concern About New Executive Order Suspending Visas +--- diff --git a/_data/News.yaml b/_data/News.yaml new file mode 100644 index 00000000..11e03490 --- /dev/null +++ b/_data/News.yaml @@ -0,0 +1,19 @@ +- Title: SIGPLAN Expresses Concern About New Executive Order Suspending Visas + Page: SuspensionOfVisas + Content: | + SIGPLAN's parent organization, ACM, has issued a + [statement](http://www.acm.org/about-acm/suspension-of-visas) + expressing serious concern about + [President Donald Trump's recent Executive Order + (EO)](https://www.scribd.com/document/337740314/Trump-Executive-Order-1) + that restricts entry to the USA for citizens of certain countries. + The SIGPLAN Executive Committee, consisting of your elected + representatives, shares these concerns. The EC is currently + engaged in a vigorous dialogue about how to best respond. We + strongly believe that the practice of science and its quest for + knowledge and the betterment of the human condition, should be + independent of physical, political, cultural, and economic + barriers. While we hope that the EO is rescinded (and will work + toward this outcome), we are developing contingency plans for + organizing future SIGPLAN events so as to maximize inclusiveness + of the worldwide scientific community. We welcome your input. diff --git a/_layouts/home.html b/_layouts/home.html index 20663f74..8b1f2e09 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -27,6 +27,12 @@

Special Interest Group on Programming Languages

+ {% for news in site.data.News %} +

{{news.Title}}

+ {{ news.Content | markdownify}} +
+ {% endfor %} +

Awards and Recent Recipients

{% for award in site.data.Awards %} diff --git a/_layouts/news.html b/_layouts/news.html new file mode 100644 index 00000000..03c1f3c6 --- /dev/null +++ b/_layouts/news.html @@ -0,0 +1,30 @@ + + + {% include header.html %} + + {% include navbar.html %} + +
+ +
+ +
+

{{ page.title }}

+ +
+ + {% assign page_name = page.name | remove: ".md" %} + {% for news in site.data.News %} + {% if news.Page == page_name %} + {{ news.Content | markdownify}} + {% endif %} + {% endfor %} + +
+
+ +
+ + {% include footer.html %} + +