-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
89 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ pyfastx==2.1.0 | |
PySide6-Essentials==6.4.3 | ||
primer3-py==2.0.3 | ||
pyinstaller==6.10.0 | ||
jinja2==3.1.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"/> | ||
<title>Krait statistics report</title> | ||
<style> | ||
:root { | ||
--tblr-font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif; | ||
} | ||
body { | ||
font-feature-settings: "cv03", "cv04", "cv11"; | ||
} | ||
{{ styles }} | ||
</style> | ||
</head> | ||
<body > | ||
<div class="page"> | ||
<header class="navbar navbar-expand-md d-print-none" > | ||
<div class="container-xl"> | ||
<h1 class="navbar-brand navbar-brand-autodark d-none-navbar-horizontal pe-0 pe-md-3"> | ||
Krait Statistics Report | ||
</h1> | ||
<div class="navbar-nav flex-row order-md-last"> | ||
<div class="nav-item d-none d-md-flex me-3"> | ||
</div> | ||
</div> | ||
</header> | ||
<div class="page-wrapper"> | ||
<div class="page-body"> | ||
<div class="container-xl"> | ||
|
||
</div> | ||
</div> | ||
<footer class="footer footer-transparent d-print-none"> | ||
<div class="container-xl"> | ||
<div class="row text-center align-items-center flex-row-reverse"> | ||
<div class="col-lg-auto ms-lg-auto"> | ||
<ul class="list-inline list-inline-dots mb-0"> | ||
<li class="list-inline-item"><a href="https://krait2.readthedocs.org" target="_blank" class="link-secondary" rel="noopener">Documentation</a></li> | ||
<li class="list-inline-item"><a href="https://github.com/lmdu/krait2/releases" target="_blank" class="link-secondary" rel="noopener">Check updates</a></li> | ||
<li class="list-inline-item"><a href="https://github.com/lmdu/krait2" target="_blank" class="link-secondary" rel="noopener">Source code</a></li> | ||
<li class="list-inline-item"> | ||
<a href="https://github.com/lmdu/krait2/issues" target="_blank" class="link-secondary" rel="noopener"> | ||
Report issues | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="col-12 col-lg-auto mt-3 mt-lg-0"> | ||
<ul class="list-inline list-inline-dots mb-0"> | ||
<li class="list-inline-item"> | ||
Generated by | ||
<a href="https://github.com/lmdu/krait2" class="link-secondary">Krait</a> | ||
v2.0.0 | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
</div> | ||
</div> | ||
<script type="text/javascript"> | ||
{{ scripts }} | ||
</script> | ||
</body> | ||
</html> |