-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
37 lines (28 loc) · 1023 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
layout: default
section_id: home
---
<div class="container" style="margin: 0 auto 20px">
{%- include recent-posts.html -%}
<h2 style="text-align: center; margin-top: 50px;">Newest Calls for Papers</h2>
{%- include fetcher.html -%}
<!-- close the door
<script type="text/javascript">
function loadXMLDoc(dname) {
xhttp = new XMLHttpRequest();
xhttp.open("GET",dname,false);
xhttp.send("");
return xhttp.responseXML;
}
var processor = new XSLTProcessor();
var theXML = loadXMLDoc('feed.xml');
var theXSL = loadXMLDoc('feed.xsl');
// prepare the processor
processor.importStylesheet(theXSL);
var theResult = processor.transformToDocument(theXML);
// now you have a DomDocument with the result
// if you want to serialize (transform to a string) it you van use
document.write(new XMLSerializer().serializeToString(theResult));
</script>
-->
</div>