-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscriptorium.html
92 lines (62 loc) · 2.62 KB
/
scriptorium.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
<!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>SCRIPTORIUM | CS Grants</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Asul:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/global.css" type="text/css" charset="utf-8"/>
<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>
</head>
<body>
<div id="wrapper">
<header id="header">
</header>
<div id="sub-menu">
</div>
<section id="main">
<div class="container">
<div class="breadcrumb">
<a href="/projects">Projects</a>
<span class="divider">/</span>
Scriptorium
</div>
<!-- CONTENT STARTS HERE =============================== -->
<div id="content">
<p>Coptic Scriptorium was launched with support from the National Endowment for the Humanities in two grants, co-directed by Caroline T. Schroeder (University of the Pacific) and Amir Zeldes (Georgetown University):</p>
<ul>
<li><strong>Coptic SCRIPTORIUM: Digitizing a Corpus for Interdisciplinary Research in Ancient Egyptian</strong> – NEH Preservation and Access grant (PW5167214)</li>
<li><strong>Coptic SCRIPTORIUM: A Corpus, Tools, and Methods for Corpus Linguistics and Computational Historical Research in Ancient Egypt</strong> &ndash ODH Start-Up grant (HD51907)</li>
</ul>
<p>These projects have been responsible for the initial release of pilot corpora and digital tools since 2014.</p>
</div>
<!-- END CONTENT ============================== -->
</section>
<footer id="footer">
</footer>
</div> <!-- /#wrapper -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(function(){
//$("#navbar").load("nav.html");
$("#header").load("header.html",function() {
$(".m-projects").addClass('on');
});
$("#sub-menu").load("projects-menu.html",function() {
$(".m-scriptorium").addClass('on');
});
$("#footer").load("footer.html");
});
</script>
</body>
</html>