Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
9
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
ravilabio
ravilabio.gitlab.io
Commits
eca6c978
Commit
eca6c978
authored
Nov 09, 2020
by
Ricardo Avila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make notes landing page a table of contents.
parent
e30367c6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
24 deletions
+33
-24
_data/navigation.yml
_data/navigation.yml
+2
-2
links.md
links.md
+0
-22
notes.html
notes.html
+31
-0
No files found.
_data/navigation.yml
View file @
eca6c978
...
...
@@ -11,8 +11,8 @@ header:
-
title
:
CV
url
:
/cv.html
-
title
:
<i class="fas fa-bookmark"></i>
url
:
/
link
s.html
-
title
:
Notes
url
:
/
note
s.html
notes-nav
:
-
title
:
<i class="fas fa-flask"></i> Bioinformatics
...
...
links.md
deleted
100644 → 0
View file @
e30367c6
---
layout
:
article
title
:
Links
show_date
:
false
---
## Ricardo's Notes
My notes on various topics:
[
Ricardo's Notebook
](
/notes/bioinformatics/e-value-bitscore
)
{:.button.button--primary.button--rounded.button--lg}
## Blogs
A curated list of my favorite blogs:
-
[
Is life worth living?
](
https://iwatobipen.wordpress.com/
)
-
[
Practical Cheminformatics (Pat Walters)
](
http://practicalcheminformatics.blogspot.com/
)
-
[
Thomas Kainrad
](
https://tkainrad.dev/
)
-
[
Paul Stamatiou
](
https://paulstamatiou.com/
)
-
[
Half Integer
](
http://blog.rogerluo.me/
)
notes.html
0 → 100644
View file @
eca6c978
---
layout: notes
title: Ricardo's Notes
show_date: false
aside:
toc: false
sidebar:
nav: notes-nav
---
{%- if page.sidebar.nav -%}
{%- assign _sidebar_nav = site.data.navigation[page.sidebar.nav] -%}
{%- if _sidebar_nav -%}
{%- for _item in _sidebar_nav -%}
<h2>
{{ _item.title }}
</h2>
{%- if _item.children -%}
{%- for _child in _item.children -%}
{%- include snippets/get-nav-url.html path=_child.url -%}
{%- assign _nav_url = __return -%}
{%- include snippets/get-nav-url.html path=page.url -%}
{%- assign _page_url = __return -%}
{%- if _nav_url == _page_url -%}
<li
class=
"toc-h2 active"
><a
href=
"{{ _nav_url }}"
>
{{ _child.title }}
</a></li>
{%- else -%}
<li
class=
"toc-h2"
><a
href=
"{{ _nav_url }}"
>
{{ _child.title }}
</a></li>
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{%- endfor -%}
{%- endif -%}
{%- endif -%}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment