mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-22 12:28:04 -05:00
26 lines
1011 B
HTML
26 lines
1011 B
HTML
{% extends "!layout.html" %}
|
|
|
|
{% block rootrellink %}
|
|
<li><a href="{{ pathto('index') }}">Home</a>|</li>
|
|
<li><a href="{{ pathto('search') }}"><img src="{{ pathto('_static/glass.png',1) }}"></a>|</li>
|
|
<li><a href="http://ibell.pythonanywhere.com">CoolProp Online</a>|</li>
|
|
<li><a href="{{ pathto('coolprop/examples/examples') }}">Examples</a>|</li>
|
|
<li><a href="{{ pathto('citation') }}">Citation</a>|</li>
|
|
<li><a href="{{ pathto('develop/code') }}">Code</a>|</li>
|
|
<li><a href="{{ pathto('coolprop/wrappers/index') }}">Downloads</a></li>
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" type="text/css" href="css/main.css?v=2">
|
|
<style type="text/css">
|
|
body {font-size: 90%;}
|
|
</style>
|
|
|
|
{% if pagename == 'online/index_full' %}
|
|
<link rel="stylesheet" type="text/css" href="css/cupertino/jquery-ui-1.9.2.custom.css">
|
|
<script language="javascript" type="text/javascript" src="lib/LAB.js"></script>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|