mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
68 lines
2.3 KiB
HTML
68 lines
2.3 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link rel="stylesheet" href="/uwebzh/style.css" type="text/css" />
|
|
<title>Bookmarks</title>
|
|
<script type="text/javascript">
|
|
function findLang(){
|
|
let href = location.href;
|
|
for(let i=href.length-1;i>0;i--){
|
|
if('/'==href.charAt(i) && '/'==href.charAt(i-3))
|
|
return i;
|
|
}
|
|
return 0;
|
|
}
|
|
function nav2(page){
|
|
let i = findLang();
|
|
location.href = location.href.substring(0,i+1)+page;
|
|
}
|
|
function nav2Lang(lang){
|
|
let i = findLang();
|
|
let href = location.href;
|
|
location.href = location.href.substring(0,i-2)+lang+location.href.substring(i);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<header class='header'>
|
|
<a class="logo" href="javascript:void(0)" onclick="return nav2('index.html')">Home</a> <a class="logo" href="javascript:void(0)" onclick="return nav2('tags/index.html')">Tags</a>
|
|
|
|
|
|
<a class="logo" href="javascript:void(0)" onclick="return nav2Lang('zh')">简体中文</a>
|
|
|
|
|
|
<nav>
|
|
</nav>
|
|
</header>
|
|
<br />
|
|
|
|
<div class="container">
|
|
<h1 class="title">Bookmarks
|
|
<br>
|
|
<span class="subtitle"></span>
|
|
</h1>
|
|
<ul class="tags">
|
|
|
|
</ul>
|
|
<p><a href="i:1c">Wait for url from other devices</a></p>
|
|
<h3 id="templates">Templates</h3>
|
|
<p>Click following links to install bookmark templates, bookmarks saved to the template have corresponding features enabled.<br>
|
|
<a href="i:0hbookmark/novel.html:https://fastly.jsdelivr.net/gh/torappinfo/uweb/zh/searchurl/bookmark/novel.html">"novel.html": auto reader's mode</a></p>
|
|
<h3 id="termux">Termux</h3>
|
|
<p>The following bookmarks need termux. Clicking to run is only allowed from local pages.<br>
|
|
<a href="c:bc -l">GNU bc (basic calculator)</a><br>
|
|
<a href="c:bc -l *.bc">bc with all extensions</a></p>
|
|
<h3 id="science">Science</h3>
|
|
<h4 id="physics">Physics</h4>
|
|
<p><a href="https://www.feynmanlectures.caltech.edu/">Feynman lectures</a></p>
|
|
<h4 id="chemistry">Chemistry</h4>
|
|
<p><a href="https://www.chemspider.com">chemspider</a><br>
|
|
<a href="http://bl.ocks.org/chemplexity/raw/180e960a6d9e68adf28429dd16f05fa0/">molecule SMILES</a></p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|