forked from vasl-developers/vasl-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scenarios.htm
67 lines (61 loc) · 2.57 KB
/
scenarios.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<title>VASL - Download Scenarios</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link href="./css/vasl_styles.css" rel="stylesheet">
<link href="./css/setup_styles.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7W4JY7C21F"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7W4JY7C21F');
</script>
</head>
<body>
<div id="navbar"></div>
<div class="container-fluid">
<div class="row">
<div class="col-md-2 sidebar"></div>
<div class="main-content col-md-10">
<div class="userHeader">
<h1 class="pull-right">Old VASL Scenario Setups</h1>
</div>
<div class="panel panel-default">
<div class="panel-body">
<h4>Status Update: January 2024</h4>
<p>New versions of these scenario setup files, for 6.6.7 and beyond will now be added to <a href="http://vasl.info/updatedscenarios.htm">Scenario Setups. </a>This old page will no longer be updated.</p>
<p>This page contains several collections. Most of them are very outdated, one of which included every scenario of the core modules among them - for VASL v4.</p>
<p>Then there is another collection which includes roughly 150 VASL setups stretching from versions v5.9.2 to v6.2.2.</p>
<p>You can also retrieve ASLSK Scenario Setup files at <a href="https://github.com/atuline/ASLSK-Scenarios#asl-starter-kit-scenario-setups" target="_blank">https://github.com/atuline/ASLSK-Scenarios</a>.</p>
</div>
</div>
<div id="setups" class="table-responsive"></div>
</div>
</div>
</div>
<footer></footer>
<script src="./js/jquery.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#navbar").load("./include/navbar.htm", function() {
$("ul.navbar-nav li.download").addClass("active");
});
$("div.sidebar").load("./include/sidebar.htm", function() {
$("a.setups").addClass("active");
});
$("#setups").load("./include/scen.html");
$("footer").load("./include/copyright.htm");
});
</script>
</body>
</html>