Estructura de temas y componentes de temas

Discourse admite temas nativos que se pueden obtener de un archivo .tar.gz o de un repositorio git remoto, incluidos repositorios privados.

Un tema de ejemplo se encuentra en: GitHub - discourse/discourse-simple-theme: Sam's simple discourse theme

El repositorio git se verificará en busca de actualizaciones (una vez al día), o usando el botón Check for Updates (Comprobar actualizaciones). Cuando se detecten cambios, el botón Check for Updates (Comprobar actualizaciones) cambiará a Update to Latest (Actualizar a la última versión).

image

Para crear un tema, debes seguir una estructura de archivos específica. Estos son los archivos que puedes incluir:

about.json (requerido)

common/common.scss
common/header.html
common/after_header.html
common/footer.html
common/head_tag.html
common/body_tag.html
common/embedded.scss

desktop/desktop.scss
desktop/header.html
desktop/after_header.html
desktop/footer.html
desktop/head_tag.html
desktop/body_tag.html

mobile/mobile.scss
mobile/header.html
mobile/after_header.html
mobile/footer.html
mobile/head_tag.html
mobile/body_tag.html

locales/en.yml
locales/{locale}.yml

stylesheets/{anything}/{anything}/{anything}.scss

javascripts/{anything}.js
javascripts/{anything}.hbs
javascripts/{anything}.hbr

assets/{asset_filename}

settings.yml

Cualquiera de estos archivos :arrow_up: es opcional, por lo que solo necesitas crear los que necesites.

Para aquellos que buscan dividir el SCSS del tema en varios archivos, ahora es posible.

Para aquellos que buscan dividir el tema en varios archivos JS, simplemente agrega los archivos JS que desees en el directorio javascripts.

La estructura del archivo about.json se muestra a continuación, y puedes ver más información al respecto en https://meta.discourse.org/t/adding-metadata-to-a-theme/119205:

{
  "name": "My Theme",
  "component": false,
  "license_url": null,
  "about_url": null,
  "authors": null,
  "theme_version": null,
  "minimum_discourse_version": null,
  "maximum_discourse_version": null,
  "assets": {
    "variable-name": "assets/my-asset.jpg"
  },
  "color_schemes": {
    "My Color Scheme": {
      "primary": "222222"
    }
  },
  "screenshots": ["screenshots/light.jpeg", "screenshots/dark.jpeg"]
}

Instrucciones sobre cómo agregar configuraciones a tu tema disponibles aquí: Add settings to your Discourse theme.

Para indicarle a Discourse que vas a agregar un componente de tema y no un tema completo, simplemente agrega la línea "component": true al archivo about.json.

La estructura de archivos coincide con el CSS/HTML personalizado del tema.

Lectura adicional

Consulta los otros artículos con la etiqueta #themes::tag.

:information_source: Consulta también:


Última revisión por @SaraDev el 2022-08-15T21:00:00Z


Este documento tiene control de versiones: sugiere cambios en github.

62 Me gusta
Alien Night Theme - A free Dark Theme for Discourse
Override values for auto-generated color variables
How to modify the header HTML, but still remaining the default founctions
Custom user fields show on Activity, but not Summary page
Add Unsolved button to top menu using custom HTML
How do I get started with Discourse development as a regular end user with no programming experience?
Custom assets upload folder?
Some basic questions about discourse and rails
Color Scheme Contest (with Prizes!)
Add support for theme settings
Create and share a font theme component
Create and share a color scheme
Split up theme SCSS into multiple files
Theme Developer Quick Reference Guide
Theme Developer Tutorial: 2. Creating a remote theme
Mobile View Loading different HTML as compared to Desktop
Developing Discourse Themes & Theme Components
Minimizing Maintenance on Theme Customizations
Need help with theme component Github
Allow users to select new color palettes
Challenges creating a custom color palette
Adding metadata and screenshots to a Theme
Push to digital ocean from command line and rebuild
Battle Axe - A free theme by the Tappara.co hockey community
Beginner's guide to using Discourse Themes
Discourse deployment using github or bitbucket?
How to remove sticky top bar?
Do you have original customisations?
Add custom content that only appears on your homepage
Highlight color
Timefuser Theme
Compact member list
Understanding the development/deployment process
CSS Theme Contest (with Prizes!)
How to bring in Latest topics when using category boxes
Need to include PGN (chess game notation) in a post
Custom header colour and category icons and login button
Automatic dark mode for embedded comments as well?
Add settings to your Discourse theme
Designer's Guide to getting started with themes in Discourse