Skip to content

Commit

Permalink
deploy: e22673d
Browse files Browse the repository at this point in the history
  • Loading branch information
toniher committed Dec 2, 2024
1 parent ce5261e commit 58b2389
Show file tree
Hide file tree
Showing 42 changed files with 1,962 additions and 1 deletion.
1 change: 0 additions & 1 deletion MOP1.1
Submodule MOP1.1 deleted from 3327db
8 changes: 8 additions & 0 deletions MOP1.1/docs/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: default
---

<h1>404</h1>

<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
13 changes: 13 additions & 0 deletions MOP1.1/docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
title: Master of Pores
description: Nextflow pipeline for analysis of Nanopore data from direct RNA sequencing.
url: "https://biocorecrg.github.io/master_of_pores/"

# Build settings
markdown: kramdown
kramdown:
syntax_highlighter_opts:
disable : true

sass:
sass_dir: _sass
style: compressed
13 changes: 13 additions & 0 deletions MOP1.1/docs/_includes/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
<meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">

<link rel="icon" href="{{ "/assets/images/favicon.ico" | relative_url }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">

{% include styles.html %}
</head>
14 changes: 14 additions & 0 deletions MOP1.1/docs/_includes/navigation.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{% capture html %}
<ul class="navigation" id="navigation">
{% assign entries = site.pages | sort: "navigation" %}
{% for entry in entries %}
{% if entry.navigation %}
<li>
<a class="{% if page.url == entry.url entry.url %}active{% endif %}" href="{{ entry.url | relative_url }}">
{{ entry.title }}
</a>
</li>
{% endif %}
{% endfor %}
</ul>
{% endcapture %}{{ html | strip_newlines | replace:' ','' | replace:' ','' | replace:' ',' ' }}
6 changes: 6 additions & 0 deletions MOP1.1/docs/_includes/scripts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<script src="{{ "/assets/js/zepto.min.js" | relative_url }}"></script>
<script src="{{ "/assets/js/lunar.min.js" | relative_url }}"></script>
<script src="{{ "/assets/js/prism.min.js" | relative_url }}"></script>
<script src="{{ "/assets/js/database.js" | relative_url }}"></script>
<script src="{{ "/assets/js/search.js" | relative_url }}"></script>
<script src="{{ "/assets/js/mobile-navigation.js" | relative_url }}"></script>
1 change: 1 addition & 0 deletions MOP1.1/docs/_includes/search-results.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<ul id="search-results" class="navigation"></ul>
3 changes: 3 additions & 0 deletions MOP1.1/docs/_includes/search.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<div class="search">
<input type="text" class="search-input" id="search-input" placeholder="Type to search" />
</div>
11 changes: 11 additions & 0 deletions MOP1.1/docs/_includes/sidebar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<sidebar class="sidebar" id="sidebar">
<div class="sidebar-mobile">
<img src="{{ "/assets/images/menu.svg" | relative_url }}" class="menu-icon" id="menu" />
<img src="{{ "/assets/images/close.svg" | relative_url }}" class="close-icon" id="close" />
</div>
{% include search.html %}
<div class="sidebar-main">
{% include navigation.html %}
{% include search-results.html %}
</div>
</sidebar>
1 change: 1 addition & 0 deletions MOP1.1/docs/_includes/styles.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<link rel="stylesheet" href="{{ "/assets/css/docs.css" | relative_url }}">
15 changes: 15 additions & 0 deletions MOP1.1/docs/_layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{% include head.html %}
<body>
<div class="wrapper">
{% include sidebar.html %}
<main class="content">
<div class="inner">
{{ content }}
</div>
</main>
</div>
{% include scripts.html %}
</body>
</html>
5 changes: 5 additions & 0 deletions MOP1.1/docs/_layouts/page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
layout: default
---

{{ content }}
Loading

0 comments on commit 58b2389

Please sign in to comment.