Skip to content
Snippets Groups Projects
Commit f1f3c7b6 authored by Gorka Fraga Gonzalez's avatar Gorka Fraga Gonzalez :seedling:
Browse files

Update README.md

parent e050d0ec
No related branches found
No related tags found
No related merge requests found
......@@ -11,3 +11,48 @@ Project entry in SNF data base: https://data.snf.ch/grants/grant/213535
## Instructions for content editors
Access and edit the content in the folder 'webpage_contents'
### Repository organization
The main files and folders are the following:
```
fdcns/ # Repository
├── .gitlab-ci.yml # (fixed name) Has the script that will render the site with any change in the repo.
├── webpage_contents/ # All editable content and website settings, lay-out etc
│ ├── _quarto.yml # Settings defining navigation bar titles among other layout features
│ ├── index.qmd # Main landing page
│ ├── webpage_contents.Rproj # Recommended file for working with R locally
│ │
│ ├── assets/ # contains logos, images and style used for the main site
│ │ ├── styles.css # css or scss files for additional styling
│ │ └── logos/ # folder with logs, additional subfolders can be: assets/images
│ │
│ └── contents/ # >> Each page will be a self-contain folder e.g.academy, nodes, organization, etc
│ ├── academy/ # Example folder
│ │ ├── images/ # Any image or icon related to this page
│ │ └── index.qmd # The actual content
│ │
│ ├── Working Packages/
│ │ └── OpenResearchData/ #An example of a blog page. Each entry is 'self contained'
│ │ ├── index.qmd # Landing page with list of all blog entries in the folder (Quarto 'Listing')
│ │ │
│ │ └── posts/
│ │ ├── 2024-01-18-entryTitle/
│ │ │ ├── .jpg,.png,.csv, etc #resources for this entry, either in a folder or as files
│ │ │ └── index.qmd
│ │ ...
│ └── ...
├+ ── _site # If rendered locally this folder is created with the html files. It will be .gitignore when pushing changes to remote
└──public # .gitlab-ci.yml renders the site and copis into 'public'. Folder name required by Gitlab Pages
│ # [CI alert!] the content of 'public' can be seen in Gitlab Build/Artifact, not in the main repo view
│ # [NOTE: although named 'public' it can be set in a private repository and thus protected]
└── .nojekyll # (empty) file required by Gitlab pages if not using jekyll
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment