-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_feed.html
116 lines (104 loc) · 6.01 KB
/
test_feed.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Coptic SCRIPTORIUM</title>
<link rel="stylesheet" href="scriptorium.css" type="text/css" charset="utf-8"/>
<meta name="viewport" content="width=800">
<script src="jquery-1.11.2.min.js"></script>
<script>
$(function(){
$("#navbar").load("nav.html");
$("#topbanner").load("top.html");
$("#bottomcontent").load("bottom.html");
});
</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-55145025-1', 'auto');
ga('send', 'pageview');
</script>
<!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.-->
<script>var __adobewebfontsappname__="dreamweaver"</script>
<script src="http://use.edgefonts.net/asul:n4:default.js" type="text/javascript"></script>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
<div id="navbar"></div>
<div id="wrapper">
<div id="topbanner"></div>
<div id="content">
<div class="leftcolumn">
<p>Coptic SCRIPTORIUM is a platform for interdisciplinary and computational research
in texts in the Coptic language, particularly the Sahidic dialect. </p>
<p>Get started with these popular tools and resources:</p>
<ul><li><a href="http://data.copticscriptorium.org" target="_blank">Read and browse Coptic texts</a> in our corpora, including many with aligned translations</li>
<li>Lookup a word in an <a href="https://gucorpling.org/coptic-dictionary/" target="_blank">online Coptic Dictionary</a>, developed with our German partners in the KELLIA project</li>
<li>Automatically analyze Coptic text using our <a href="https://tools.copticscriptorium.org/coptic-nlp/" target="_blank">NLP service</a></li>
<li>Complete <a href="https://annis.copticscriptorium.org/annis/scriptorium" target="_blank"> simple searches or complex queries</a> of corpora in our database, ANNIS. New to the project? Start with these <a href="ANNIS-tips.html" target="_blank">sample queries</a> for the ANNIS search and visualization tool or watch a <a href="https://www.youtube.com/watch?v=gGZWbPzcJPA" target="_blank">video of a tutorial</a> for using ANNIS during our March 2015 workshop</li>
<li>Explore our <a href="http://copticscriptorium.org/tools" target="_blank">suite of tools to process, analyze, and annotate Coptic text</a></li></ul>
<p>Coptic SCRIPTORIUM is an open-source, open-access, digital project created by <a href="http://www.carrieschroeder.com/" alt="Caroline T. Schroeder homepage" target="_blank">Caroline T. Schroeder</a> (University of the Pacific) and <a href="https://gucorpling.org/amir/" alt="Amir Zeldes homepage" target="_blank">Amir Zeldes</a> (Georgetown University). <a href="about.html#team">Our team is constantly growing.</a></p>
<p>As a reference citation for this project, please use:</p>
<p>Schroeder, Caroline T. and Amir Zeldes. "Raiders of the Lost Corpus." <em>Digital Humanities Quarterly</em> 10.2 (2016). http://www.digitalhumanities.org/<br>dhq/vol/10/2/000247/000247.html</p>
<p>To cite the project website itself, please use:</p>
<p>Caroline T. Schroeder, Amir Zeldes, et al., <br><em>Coptic SCRIPTORIUM</em>, 2013-2017, http://copticscriptorium.org.</p>
<p>Our <a href="citation-guidelines.html" target="new">citation guidelines</a> provide more information, as well as model citations for Coptic SCRIPTORIUM corpora and texts.</p>
</div>
<div id="rightcolumn" class="rightcolumn rss">
<p><span class="news">Latest news:</span> [<a href="http://blog.copticscriptorium.org/">more</a>]</p>
</div>
<script>
$.ajax({
url: 'https://blog.copticscriptorium.org/feed/',
dataType: "xml",
type: 'GET',
success: function(data){
var XML = $(data);
i=0;
XML.find("item").each(function(i) {
var $this = $(this),
item = {
title: $this.find("title").text(),
link: $this.find("link").text(),
description: $this.find("description").text(),
pubDate: new Date($this.find("pubDate").text()),
author: $this.find("author").text()
};
i++;
if (i<=3){
post = "<h2>"+item.title+'</h2>\n<p><i>'+item.pubDate.getFullYear()+'-'+(item.pubDate.getMonth()+1)+'-'+item.pubDate.getDate()+'</i></p><p>'+item.description+'</p><p><a href="'+item.link+'">[link]</a></p>\n'
document.getElementById('rightcolumn').innerHTML = document.getElementById('rightcolumn').innerHTML + post;
}
});
}
});
/*
$.get("https://blog.copticscriptorium.org/feed/", function(data) {
var $XML = $(data);
i=0;
$XML.find("item").each(function(i) {
var $this = $(this),
item = {
title: $this.find("title").text(),
link: $this.find("link").text(),
description: $this.find("description").text(),
pubDate: new Date($this.find("pubDate").text()),
author: $this.find("author").text()
};
i++;
if (i<=3){
post = "<h2>"+item.title+'</h2>\n<p><i>'+item.pubDate.getFullYear()+'-'+(item.pubDate.getMonth()+1)+'-'+item.pubDate.getDate()+'</i></p><p>'+item.description+'</p><p><a href="'+item.link+'">[link]</a></p>\n'
document.getElementById('rightcolumn').innerHTML = document.getElementById('rightcolumn').innerHTML + post;
}
});
});
*/
</script>
</div>
<div id="bottomcontent"></div>
</body>
</html>