66 lines
2.1 KiB
Markdown
66 lines
2.1 KiB
Markdown
# Author Attribution — Odoo Expertos
|
|
|
|
> All content is attributed to the Organization entity. No named individuals unless a real person with a verifiable profile has consented. This file is the implementation guide for W7.
|
|
|
|
---
|
|
|
|
## Default Attribution (use on every page)
|
|
|
|
**Equipo Odoo Expertos** (Organization)
|
|
|
|
All pages use Organization-level attribution. No individual bylines until a real team page with verifiable people is built.
|
|
|
|
### HTML byline
|
|
```html
|
|
<span class="author">Equipo Odoo Expertos</span>
|
|
<time datetime="2026-01-15">15 de enero de 2026</time>
|
|
```
|
|
|
|
### Schema (Article author)
|
|
```json
|
|
"author": {
|
|
"@type": "Organization",
|
|
"@id": "https://www.odoo-expertos.com/#organization",
|
|
"name": "Odoo Expertos"
|
|
}
|
|
```
|
|
|
|
### Meta tag
|
|
```html
|
|
<meta name="author" content="Equipo Odoo Expertos">
|
|
```
|
|
|
|
### Per-language variant
|
|
| Language | Byline string |
|
|
|---|---|
|
|
| ES | Equipo Odoo Expertos |
|
|
| EN | Odoo Expertos Team |
|
|
| DE | Odoo Expertos Team |
|
|
| FR | Équipe Odoo Expertos |
|
|
| PT | Equipe Odoo Expertos |
|
|
| AR | فريق أودو إكسبرتوس |
|
|
|
|
---
|
|
|
|
## What to Remove (W7 scope)
|
|
|
|
| File | What to change |
|
|
|---|---|
|
|
| All `.html` files | `<meta name="author" content="Apex AI Research Labs LLC">` → `Equipo Odoo Expertos` |
|
|
| All `.html` files | Any `"author": "Dr. María Elena Rodríguez"` in JSON-LD → Org block above |
|
|
| All `.html` files | Any visible byline "Dr. María Elena Rodríguez" → remove or replace with `Equipo Odoo Expertos` |
|
|
| `/María Elena Rodríguez.png` | Delete (fabricated individual) |
|
|
| `/maria-elena-rodriguez.png` | Delete (fabricated individual) |
|
|
| Any `/autor/maria-elena-rodriguez/` page | 301 → `/sobre-nosotros/` |
|
|
|
|
---
|
|
|
|
## Adding Real Bylines (future — when real team page exists)
|
|
|
|
Only add an individual byline when:
|
|
1. A real person with a public Odoo/ERP profile has agreed to be credited
|
|
2. Their author page (`/autor/[slug]/`) exists and returns 200
|
|
3. Their schema `Person` block links to a verifiable external profile (LinkedIn, Odoo partner directory)
|
|
|
|
Until all three conditions are met: use Organization attribution.
|