-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.ftl
82 lines (80 loc) · 3.31 KB
/
index.ftl
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Multiagent NetLogo Models</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-279322-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="page">
<div id="header">
<h4 id="title">Multiagent NetLogo Models</h4>
<ul id="nav">
<li><a id="aboutLink" href="#">About</a></li>
<li><a href="http://jmvidal.cse.sc.edu">Author</a></li>
<li><a title="all these models are on github" href="http://github.com/josemvidal/netlogomas">github</a></li>
<li><a
href="http://ccl.northwestern.edu/netlogo/">NetLogo</a></li>
<li><a href="http://www.multiagent.com">MultiAgent Systems</a></li>
</ul>
</div>
<div id="featuredSection">
<div id="featuredModel">
<a href="${models.models?first.modelName}/index.html"><img class="header" src="${models.models?first.modelName}/medium.png"/></a>
<dl id="featuredVideo">
<dt><a
href="${models.models?first.modelName}/index.html" title="run this model in browser">${models.models?first.title}</a>
<a class="download" href="${models.models?first.modelName}/${models.models?first.modelName}.nlogo" title="Download this model">↓</a>
</dt>
<dd>${models.models?first.indexdescription}</dd>
</dl>
</div>
<div id="aboutText">
<p>These are NetLogo models that demonstrate various well known
MultiAgent algorithms and other related techniques. They have
been developed by <a
href="http://jmvidal.cse.sc.edu">myself</a>, my students, and
others over the years.</p>
<p>Many of these models implement algorithms described in detail
in my free textbook <a
href="http://www.multiagent.com">Fundamentals of Multiagent
Systems</a>.</p>
<p>If you need a consultant or just some help in building a
NetLogo model for your research, let me know. Some of these
models, and many others not shown here, are the results of
collaborations with other researchers in various science and
engineering disciplines.</p>
</div>
</div>
<div id="grid">
<#list models.models as m>
<#if m_index > 0 >
<div class="model">
<div class="thumbHolder">
<a onclick="popup('${m.modelName}',${m.width},${m.height});return false;" href="#"><img src="${m.modelName}/thumb.png"/></a>
</div>
<h4><a class="modelLink" id="${m.modelName}"
href="${m.modelName}/index.html" onclick="popup('${m.modelName}',${m.width},${m.height});return false;">${m.title}</a></h4>
<div id="${m.modelName}Description" class="description">${m.indexdescription}</div>
<h5>${m.credits}</h5>
<a class="download" href="${m.modelName}/${m.modelName}.nlogo"
title="Download this model">↓</a>
</div>
</#if>
</#list>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script src="code.js"></script>
</body>
</html>