-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
93 lines (81 loc) · 5.44 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Boostrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigen="anonymous">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigen="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/style.css" type="text/css">
<!-- Jquery -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigen="anonymous"></script>
<!-- Boostrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigen="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigen="anonymous"></script>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/manifest.json">
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
</head>
<body class="form-body">
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top inside-form" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="./index.html"><span>SourceViz</span></a>
<!-- <img src="./img/icon.png" width="32px"> -->
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="./explore.html">Explore</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="./backend.html">Manage Data</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="./about.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Form container -->
<div class="container about-container">
<div>
<h4 style="display: inline-block; margin-right: 10px; margin-bottom: 10px;">Overview</h4>
<a href="https://github.com/Ileezyy/early-islamic-battles"><i class="fab fa-github fa-2x"></i></a>
<p>In this project we are trying to create a system, which would help historians to build their narratives and engage students in academic research. This work is a web based data visualization system that allows historians, firstly, input data
using appropriate forms, and then visualize that data.</p>
<p>Website consists of two parts: the front end - a page, which includes a map with data on battles, timeline with battles represented by circles, and additional information "box" on right hand side; and the back end - database management system,
where users are able to edit, delete, or add data entries.</p>
<p>For instance, the form for adding and editing has such fields as references to sources, pdf files of sources, link to additional sources, link to an image and extra information.</p>
<p>Although the project's functionality implemented particularly for historical data on Islamic battles, it has a potential to become a generic system for all types of historical data.</p>
</div>
<br>
<div>
<h4>Authors</h4>
<p>This project has been developing by <a href="https://github.com/Ileezyy">Ilyas Zholdasbayev</a> - a postgraduate student in Design Informatics at the University of Edinburgh, in collaboration with:</p>
<ul>
<li>Dr. Majied Robinson - a research fellow in Islamic and Middle Eastern Studies at the University of Edinburgh.</li>
<li>Dr. Benjamin Bach - an assistant professor in Design Informatics and Visualization at the University of Edinburgh.</li>
</ul>
<p>whose continuous support and supervision are helping to keep the development going.</p>
</div>
<br>
<div>
<h4>Contacts</h4>
<p>If you have any question or suggestion, feel free to contact us via following email: <a href="mailto:s1792122@sms.ed.ac.uk">s1792122@sms.ed.ac.uk</a></p>
</div>
</div>
</body>
</html>