Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,7 @@ plugins:
utm_source: "documentation"
utm_medium: "RSS"
utm_campaign: "feed-syndication"
- git-revision-date-localized:
enabled: true
enable_creation_date: false
type: iso_date
2 changes: 1 addition & 1 deletion pages/opportunities/gsoc/guides/contributor/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "GSoC Contributor Guide"
description: "GSoC Contributor Guide"
date: "2023-10-30"
date: "2025-02-01"
authors: ["OSL Team"]
template: single-sidebar.html
---
Expand Down
2 changes: 1 addition & 1 deletion pages/opportunities/gsoc/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "Google Summer of Code with Open Science Labs"
description: "Google Summer of Code with Open Science Labs"
date: "2024-01-29"
date: "2025-02-01"
authors: ["OSL Team"]
template: single-sidebar.html
---
Expand Down
2 changes: 1 addition & 1 deletion pages/opportunities/gsoc/project-ideas/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "GSoC Project Ideas"
description: "GSoC Project Ideas"
date: "2025-01-13"
date: "2025-02-01"
authors: ["OSL Team"]
template: single-sidebar.html
---
Expand Down
2 changes: 1 addition & 1 deletion pages/opportunities/gsoc/templates/project-ideas.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: "TEMPLATE: GSoC Project Idea"
description: "TEMPLATE: GSoC Project Idea"
date: "2025-01-13"
date: "2025-02-01"
authors: ["OSL Team"]
template: single-sidebar.html
---
Expand Down
2 changes: 2 additions & 0 deletions pages/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-agent: *
Disallow:
39 changes: 37 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ dependencies = [
"colorama (>=0.4.6,<0.5.0)",
"linkcheckmd (>=1.4.0,<2.0.0)",
"beautifulsoup4 (>=4.12.3,<5.0.0)",
"mkdocs-git-revision-date-localized-plugin (>=1.3)",
]


Expand Down
22 changes: 22 additions & 0 deletions theme/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,17 @@
<meta property="og:description" content="A Open Source community for sharing knowledge">
<meta property="og:image" content="/images/thumbnail.png">
<meta name=keywords content="open science,data science,latam">
<meta name="last-modified" content="{{ build_date_utc.strftime('%Y-%m-%d') }}">
<meta name="DC.date.modified" content="{{ build_date_utc.strftime('%Y-%m-%d') }}">
<meta property="og:updated_time" content="{{ build_date_utc.strftime('%Y-%m-%d') }}T00:00:00Z">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Open Science Labs",
"dateModified": "{{ build_date_utc.strftime('%Y-%m-%d') }}T00:00:00Z"
}
</script>
<link rel=apple-touch-icon sizes=180x180 href=/icons/apple-touch-icon.png>
<link rel=icon type=image/png sizes=32x32 href=/icons/favicon-32x32.png>
<link rel=manifest href=/icons/site.webmanifest>
Expand Down Expand Up @@ -157,6 +168,17 @@
</section>
{% endblock content %}
</section>
<div>
<i>
<!-- This section adds support for localized revision dates -->
{% if page.meta.git_revision_date_localized %}
<small>Last update: {{ page.meta.git_revision_date_localized }}</small>
{% endif %}
{% if page.meta.git_created_date_localized %}
<small>Created: {{ page.meta.git_created_date_localized }}</small>
{% endif %}
</i>
</div>
</div>
</main>
<svg width="0" height="0" class="hidden">
Expand Down
Loading