PDCAT Conference Website https://www.pd-cat.org/
This repository hosts the official PDCAT conference website using GitHub Pages and a custom domain.
The website uses a folder based structure so that different conference years can be maintained separately while sharing common assets.
-
index.html
The portal entry page for the main domain. -
CNAME
Custom domain configuration for GitHub Pages. -
robots.txt
Search engine crawling configuration. -
sitemap.xml
Sitemap for search engines. This file must be updated whenever a new conference year or new public page is added. -
favicon.ico,favicon.png
Site icons.
-
css/
Shared stylesheets used across conference years. -
js/
Shared JavaScript files. -
vendor/
Shared third party libraries.
Each conference edition is stored in its own folder, for example:
2025/2026/2027/
Each year folder should contain its own pages and year specific assets, such as:
index.htmlcall_for_paper.htmlsubmission.htmlprogram.htmlkeynote.htmlvenue.htmlorganization.htmlimg/
When adding a new conference edition:
- Create a new folder such as
2026/ - Add the year specific pages and images
- Update the root
index.htmlso the portal page links to the new year - Update
sitemap.xml - Check that all links work correctly under the new folder
Important: Every time a new conference year is added, or a new public page is created, sitemap.xml must be updated.
Examples:
- Add
/2026/ - Add
/2026/call_for_paper.html - Add
/2026/submission.html - Add
/2026/program.html
If sitemap.xml is not updated, search engines may not discover the new pages correctly.
Files in css/, js/, and vendor/ are shared by multiple conference years.
Please avoid putting year specific content directly into shared files unless it is intended for all years.
For year specific images such as the homepage header image, keep them inside the corresponding year folder, for example:
/2025/img/header.jpeg/2026/img/header.jpeg
This site is deployed with GitHub Pages and served through the custom domain:
https://www.pd-cat.org/
- Keep the root portal page simple and stable
- Keep each conference year self contained
- Always test links after adding a new year
- Always update
sitemap.xmlafter adding a new year or new public page