title |
---|
Style |
Lists
Ordered list:
<ol>
- List item 1
- List item 2
<ul>
- List item 1
- List item 2
<ul style="list-style: none; margin-left:0px; line-height:250%;">
- List item 1
- List item 2
Color Palette
Primary Palette
Black
#000000
#000000
Grey
#F5F6F6
#F5F6F6
White
#FFFFFF
#FFFFFF
Secondary Palette
Actions
Tables
Pathway Card
{% assign sorted_pathways = site.pathways | sort: "last-edited" %} {% assign pw = sorted_pathways.last %}
Pathway List
{% assign sorted_pathways = site.pathways | sort: "title" | slice:0, 4 %}
Organism Blue
#3955E7
#3955E7
Community Green
#008558
#008558
Annotation Purple
#880BC8
#880BC8
Pathway Orange
#FF8120
#FF8120
Tertiary Palette (Hover/Disabled)
Organism Dark Blue
#1E3199
#1E3199
Community Dark Green
#026E55
#026E55
Annotation Dark Purple
#620492
#620492
Pathway Dark Orange
#D16919
#D16919
Dark Grey
#94A6A8
#94A6A8
Actions
<button class="copy-btn" to-copy="" style="border:none; background-color:#FFFFFF; padding:0px;">
<span title="Copy link to clipboard" style="color: #666;"><i class="fa fa-link">
Tables
<table>
Col 1 | Col 2 | Col 3 |
---|---|---|
Cell 1A | Cell 2A | Cell 3A |
Cell 1B | Cell 2B | Cell 3B |
Cell 1C | Cell 2C | Cell 3C |
Pathway Card
<div class="card w-20" style="width: 10rem;">
<a class="card-link" href="{{ pw.url }}">
<img class="card-img-top" loading="lazy" src="">
<div class="card-body">
<p class="card-text">
{% assign sorted_pathways = site.pathways | sort: "last-edited" %} {% assign pw = sorted_pathways.last %}
Pathway List
<ul class="nav nav-tabs">
{% assign sorted_pathways = site.pathways | sort: "title" | slice:0, 4 %}
{% for pw in sorted_pathways %}
{% endfor %}
-
{% for pw in sorted_pathways %}
- {{ pw.title }} ({{ pw.organisms.first }}) {% endfor %}