Skip to content

Commit

Permalink
🔄 Botão voltar (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
lostdusty authored Oct 16, 2023
1 parent bc3114c commit 906a09f
Show file tree
Hide file tree
Showing 7 changed files with 76 additions and 17 deletions.
2 changes: 1 addition & 1 deletion _data/home.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ project_entries:
- title: Inglês
url: english
desc: Also class notes in english!
highlight: NOVO
#highlight: NOVO

old_project_entries:
- title: Soopr
Expand Down
7 changes: 2 additions & 5 deletions _includes/date_and_social_share.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,12 @@
{% endif %}
</p>

<div class="soopr-btn"
data-twitter="SooprCo"
>
</div>
<div class="soopr-btn" data-twitter="SooprCo"></div>

{% if site.theme_config.show_tags == true %}
<div class="">
{% for tag in page.tags %}
<span class="tag">{{ tag }}</span>
<a class="tag" href="{{ "/blog" | absolute_url }}#{{tag}}">{{ tag }}</a>
{% endfor %}
</div>
{% endif %}
23 changes: 23 additions & 0 deletions _includes/post_list.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
{% if site.posts.size > 0 %}
{% if site.theme_config.show_tags == true %}
<details>
<summary>Tags:</summary>
<ul>
{% for tag in site.tags %}
<li>
<details class="tag">
<summary>{{ tag[0] }}</summary>
<span id="{{tag[0]}}">
<ul>
{% for post in tag[1] %}
<li>
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
</span>
</details>
</li>
{% endfor %}
</ul>
</details>
{% endif %}
<ul>
{% for post in site.posts %}
<li class="post-list-item">
Expand Down
2 changes: 1 addition & 1 deletion _layouts/blog.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: default
---
<a href="{{ "/" | relative_url }}">{{ site.theme_config.back_home_text }}</a>
<a href="..">{{ site.theme_config.back_home_text }}</a>

<header>
<h1>{{ site.title }}</h1>
Expand Down
2 changes: 2 additions & 0 deletions _posts/biologia/2022-05-03-home.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ title: "Resumos de Biologia"
[<i class="fa-solid fa-square-arrow-up-right"></i> Reino Animalia](/biologia/animais)

[<i class="fa-solid fa-square-arrow-up-right"></i> Ecologia](/biologia/ecologia)

[<i class="fa-solid fa-square-arrow-up-right"></i> Tecidos](/biologia/tecidos)
29 changes: 29 additions & 0 deletions _posts/biologia/2023-10-16-tecidos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
layout: post
permalink: /biologia/tecidos
author: Jessica Neris, Rebecca
tags: [ biologia, tecidos ]
title: Tecidos
---

Os tecidos podem ser definidos como agrupamentos de células que apresentam formas e funções semelhantes.

## Tecidos epitelial
- Celulas poliedricas justapostas
- Pouca matriz extracelular
- Função de vestimento

## Tecido muscular
- Celulas contráveis
- Moderada matriz extracelular
- Função de movimento

## Tecido conjutivo
- Celulas migratórias
- Abundande matriz extracelular
- Função de apoio e proteção

---
# Matriz extracelular
Complexa mistura de biomoléculas que compõe os tecidos com os diversos tipos celulares.

28 changes: 18 additions & 10 deletions _sass/moonwalk.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,18 @@ img {
display: block;
margin: 0 auto;
}
html {
--bg: #FFF;
--bg-secondary: #f3f4f6;
--headings: #1e293b;
--text: #374151;
--text-secondary: #6b7280;
--links: #6366f1;
--highlight: #FFECB2; // light yellow
--code-text: #9D174D;
--share-text: #999;
@mixin light-appearance {
html, body {
--bg: #FFF;
--bg-secondary: #f3f4f6;
--headings: #1e293b;
--text: #374151;
--text-secondary: #6b7280;
--links: #6366f1;
--highlight: #FFECB2; // light yellow
--code-text: #9D174D;
--share-text: #999;
}
}
// -------------- THEME SWITCHER -------------- //
@mixin dark-appearance {
Expand All @@ -88,11 +90,17 @@ html {
--share-text: #C4C4C4;
};
}

html[data-theme="dark"] { @include dark-appearance; }
html[data-theme="light"] { @include light-appearance; }

@media (prefers-color-scheme: dark) {
body[data-theme="auto"] { @include dark-appearance; }
}
@media (prefers-color-scheme: light) {
body[data-theme="auto"] { @include light-appearance; }
}

// -------------------------------------------- //

html, body {
Expand Down

0 comments on commit 906a09f

Please sign in to comment.