Graph Technology Developers Resources
Welcome to the Graph Technology Developers educational resources repository.
This template provides a clean, minimal foundation for publishing technical documentation and educational content with:
- Mobile-responsive design that works beautifully on all devices
- SEO optimization for better discoverability
- AI-friendly structure for enhanced readability by AI agents
- Code syntax highlighting for multiple programming languages
- Diagram support via Mermaid.js for technical visualizations
- Dark mode support via
prefers-color-scheme
Getting Started
- Clone or fork this repository
- Update
_config.ymlwith your repository details:- Set
urltohttps://{username}.github.io - Set
baseurlto/{repository-name}(or""for user/org sites) - Update
titleanddescription
- Set
- Customize the footer links in
_includes/footer.htmlif needed - Add your content as Markdown files in the root or
pages/directory - Push to GitHub and enable GitHub Pages in your repository settings
Adding Content
Create new pages by adding .md files anywhere in the repository. They’ll automatically use the page layout.
Example:
---
title: My New Page
---
# My New Page
Your content here...
Code Examples
Use code fences for syntax highlighting:
def hello_graph():
print("Hello, Graph World!")
MATCH (n:Person)-[:KNOWS]->(m:Person)
RETURN n, m
Diagrams
Use Mermaid for technical diagrams:
graph TD
A[Start] --> B{Decision}
B -->|Yes| C[Action 1]
B -->|No| D[Action 2]
C --> E[End]
D --> E
Learn More
Visit Graph Technology Developers for more resources and community discussions.