-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jay Wang <[email protected]>
- Loading branch information
Showing
5 changed files
with
62 additions
and
3 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 |
---|---|---|
|
@@ -2,4 +2,6 @@ | |
test*.ipynb | ||
.ipynb_checkpoints | ||
Pipfile.lock | ||
explorer/*/*.ndjson | ||
explorer/*/*.ndjson | ||
_site | ||
Gemfile.lock |
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 @@ | ||
gem "just-the-docs" |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
<link rel="shortcut icon" type="image/png" href="favicon.ico" /> | ||
<meta property="og:image" content="https://i.imgur.com/vNrixuh.png" /> | ||
<meta property="twitter:image" content="https://i.imgur.com/vNrixuh.png" /> | ||
<script | ||
type="module" | ||
src="https://unpkg.com/recommender-overlay/dist/recommender-overlay.es.js" | ||
></script> |
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,52 @@ | ||
--- | ||
layout: table_wrappers | ||
--- | ||
|
||
<!DOCTYPE html> | ||
|
||
<html lang="{{ site.lang | default: 'en-US' }}"> | ||
{% include head.html %} | ||
<body> | ||
<a class="skip-to-main" href="#main-content">Skip to main content</a> | ||
{% include icons/icons.html %} | ||
{% include components/sidebar.html %} | ||
<div class="main" id="top"> | ||
{% include components/header.html %} | ||
<div class="main-content-wrap"> | ||
{% include components/breadcrumbs.html %} | ||
<div id="main-content" class="main-content"> | ||
<main> | ||
{% if site.heading_anchors != false %} | ||
{% include vendor/anchor_headings.html html=content beforeHeading="true" anchorBody="<svg viewBox=\"0 0 16 16\" aria-hidden=\"true\"><use xlink:href=\"#svg-link\"></use></svg>" anchorClass="anchor-heading" anchorAttrs="aria-labelledby=\"%html_id%\"" %} | ||
{% else %} | ||
{{ content }} | ||
{% endif %} | ||
|
||
{% if page.has_children == true and page.has_toc != false %} | ||
{% include components/children_nav.html %} | ||
{% endif %} | ||
</main> | ||
{% include components/footer.html %} | ||
</div> | ||
</div> | ||
{% if site.search_enabled != false %} | ||
{% include components/search_footer.html %} | ||
{% endif %} | ||
</div> | ||
|
||
{% if site.mermaid %} | ||
{% include components/mermaid.html %} | ||
{% endif %} | ||
|
||
<recommender-overlay | ||
my-brand="DiffusionDB" | ||
brands-to-ignore="CNN 101" | ||
recommendation-count="10" | ||
similar-candidate-count="15" | ||
position-left="30" | ||
display-delay="15000" | ||
homepage-url="https://poloclub.github.io/" | ||
></recommender-overlay> | ||
|
||
</body> | ||
</html> |