Skip to content

Commit

Permalink
Merge pull request #10 from andreatitolo/dev
Browse files Browse the repository at this point in the history
Add navbar
  • Loading branch information
zackbatist authored Sep 27, 2024
2 parents 0c98308 + 5da3fb0 commit acd6542
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 7 deletions.
6 changes: 6 additions & 0 deletions _data/nav-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
left:
- name: Home
link: /
right:
- name: OA Models
link: /oa-models
22 changes: 22 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<header class="container">
<nav aria-label="Main navigation">
<ul>
{% for item in site.data.nav-main.left -%}
<li>
<a {% if page.url contains item.link %} aria-current="page"{% endif %} href="{{ item.link }}">{{ item.name }}</a>
</li>
{%- endfor %}
</ul>
<ul>
{% for item in site.data.nav-main.right -%}
<li>
<a {% if page.url contains item.link %} aria-current="page"{% endif %} href="{{ item.link }}">{{ item.name }}</a>
</li>
{%- endfor %}
</ul>
</nav>
<hgroup>
<h1>{{ site.title | escape }}</h1>
<p>{{ site.description | escape }}</p>
</hgroup>
</header>
9 changes: 2 additions & 7 deletions _layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,8 @@

<body>

<header class="container">
<hgroup>
<h1>{{ site.title | escape }}</h1>
<p>{{ site.description | escape }}</p>
</hgroup>
</header>

{% include header.html %}

<main class="container">
{{ content }}
</main>
Expand Down
15 changes: 15 additions & 0 deletions css/styles.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
/* Nav */
nav {
margin-bottom: 1rem;
}

nav ul,
nav ol {
column-gap: 0.5rem;
}

nav a[aria-current="page"] {
font-weight: 600;
}

/* Others */
.center {
text-align: center;
}
Expand Down
49 changes: 49 additions & 0 deletions oa-models.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
layout: page
title: OA Models
permalink: /oa-models/
---

## OA Models
Open Access (OA) is a set of principles and practices that encourage unrestricted distribution of published scientific work.
Various models have emerged for achieving this aim, which are sustained in different ways and with different stakeholders' needs in mind.

πŸ’Ž **Diamond OA** refers to journals that publish open access without charging authors article processing charges (APC).
These venues are usually community-run, and are typically funded through academic institutions, philanthropists or government grants.
Diamond OA is sometimes also referred to as "Platinum" OA.

🌿 **Green OA** refers to self-archiving of research outputs in publicly-accessible institutional or subject repositories.
Articles posted to a Green OA repository may, but must not necessarily, derive from traditional publishing protocols.
This model therefore affords great flexibility.
However, journals sometimes impose restrictions on posting articles in Green OA repositories, depending on the terms of the publishing agreement.
For instance, some journals specify an embargo period (typically between 1-3 years), during which time authors are prohibited from freely sharing their work.
Authors may also only be allowed to share versions of a paper that have not been fully typeset according to the publisher's style.
You can check the terms of your own publishing agreements using the [Sherpa Romeo](https://www.sherpa.ac.uk/romeo/) tool.

πŸ‘‘ **Gold OA** refers to journals that publish open access in exchange for article processing charges (APC) paid by the author.
This is meant to defray the costs that would otherwise be covered through readers' journal subscriptions.
This model offloads publishers' financial burdens onto authors, which disproportionately affects scholars working in the global south, early career researchers, and scientists working at institutions that provide limited financial support for research purposes.
Some universities and philanthropic funding agencies have reached [transformative agreements](https://www.coalition-s.org/faq/what-is-a-transformative-agreement/), which cover the APCs for all work that they support.
In some cases, authors may apply for a substantial discount or have the APC waived entirely if they can demonstrate their inability to access requisite funding.

🫰🏻 **Hybrid** journals give authors the option to pay an APC to make their work OA (essentially the same as Gold OA), or to keep their article behind a paywall without paying any APC.
The publisher therefore charges both authors and readers for the same service.
Hybrid journals never discount or waive APCs for authors who can not afford them due to the availability of non-open / subscriber-funded options.

πŸ₯” **Bronze OA** refers to articles that are free to read on the publisher's webpage, but without clear details on how they can be transformed or reused.
Works published in this manner are sometimes presented using some proprietary rendering engine or restrictive file formats.

πŸ΄β€β˜ οΈ **Black OA** refers to unauthorized access to paywalled literature using pirate sites such as [Sci-Hub](https://www.sci-hub.wf/) or [LibGen](https://libgen.is/). [Anna's Archive](https://annas-archive.org/) currently serves as a portal that consolidates access to various pirate archives.


### Other relevant concepts and initiatives:

πŸ—„οΈ **[FAIR](https://www.go-fair.org/fair-principles/)** is an acronym for Findable, Accessible, Interoperable and Reusable, and is typically applied in contexts of data-sharing, which is another important pillar of the broader Open Science movement.

πŸ—ƒοΈ **Open Metadata** comprises a series of initiatives to ensure greater access to scholarly publishing metadata.
For instance, [Open Citations](https://i4oc.org/) and [Open Abstracts](https://i4oa.org/) promote sharing of structured metadata elements in machine-readable formats.

πŸ–οΈ **Open Peer-Review** is an initiative to make peer-review a publicly-visible process.
Reviewers, who are usually, but not necessarily, invited to participate by the journal's editors, share their comments in response to authors' pre-review pre-prints posted on the journal's Green OA repository.
Authors' responses to reviews' feedback and modifications to the paper are also publicly visible.
[Peer Community In (PCI) Archaeology](https://archaeo.peercommunityin.org/) is one platform providing this service to archaeologists.

0 comments on commit acd6542

Please sign in to comment.