mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
88 lines
3.0 KiB
HTML
88 lines
3.0 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>math.js | an extensive math library for JavaScript and Node.js</title>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<meta name="title" content="math.js">
|
|
|
|
<meta name="keywords" content="mathjs, math.js, math, js, javascript, node, library, expression, parser, numeric, number, bignumber, complex, matrix, unit, function, variable, string, value, node.js, mathematics, extensive, advanced">
|
|
<meta name="description" content="Math.js is an extensive math library for JavaScript and Node.js. It features big numbers, complex numbers, matrices, units, and a flexible expression parser.">
|
|
|
|
<meta name="author" content="Jos de Jong">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<link href="/css/style.css" rel="stylesheet" type="text/css">
|
|
<link href="/css/commandline.css" rel="stylesheet" type="text/css">
|
|
<link href="/css/solarized-light.css" rel="stylesheet" type="text/css">
|
|
|
|
<script src="/js/lib/es5-shim.min.js" type="text/javascript"></script>
|
|
<script src="/js/lib/es5-sham.min.js" type="text/javascript"></script>
|
|
<script src="/js/lib/math.min.js" type="text/javascript"></script>
|
|
<script src="/js/commandline.js" type="text/javascript"></script>
|
|
</head>
|
|
|
|
<!-- itemscope, itemtype, and itemprop for google+ meta information -->
|
|
<body itemscope itemtype="http://schema.org/Product">
|
|
<div id="page">
|
|
<p>
|
|
<a href="http://mathjs.org">
|
|
<img src="/css/img/mathjs_330x100.png" id="logo" alt="math.js" itemprop="image" >
|
|
</a>
|
|
</p>
|
|
|
|
<div id="menu">
|
|
<a href="/index.html">
|
|
Home
|
|
{% if page.url == '/index.html' %}
|
|
<div class="selection"></div>
|
|
{% endif %}
|
|
</a><a href="/docs/getting_started.html">
|
|
Get started
|
|
{% if page.url == '/docs/getting_started.html' %}
|
|
<div class="selection"></div>
|
|
{% endif %}
|
|
</a><a href="/docs/index.html">
|
|
Docs
|
|
{% if page.url == '/docs/index.html' %}
|
|
<div class="selection"></div>
|
|
{% endif %}
|
|
</a>
|
|
</div>
|
|
|
|
{{content}}
|
|
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<a href="http://mathjs.org">mathjs.org</a> •
|
|
<a href="https://github.com/josdejong/mathjs#license" target="_blank">copyright © 2013-2014 jos de jong</a> •
|
|
<a href="http://subtlepatterns.com/bright-squares/" target="_blank">background by waseem dahman</a>
|
|
</div>
|
|
|
|
<div id="forkme">
|
|
<a href="https://github.com/josdejong/mathjs" target="_blank">
|
|
<img src="/css/img/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" >
|
|
</a>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
// change layout for different screen sizes
|
|
function resize () {
|
|
var width = document.body.clientWidth;
|
|
|
|
var page = document.getElementById('page');
|
|
page.className = (width < 810) ? 'small' : 'normal';
|
|
if (width < 500) {
|
|
page.className += ' tiny';
|
|
}
|
|
|
|
var forkme = document.getElementById('forkme');
|
|
forkme.className = (width < 500) ? 'small' : 'normal';
|
|
}
|
|
resize();
|
|
window.onresize = resize;
|
|
</script>
|
|
|
|
</body>
|
|
</html> |