| title | 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
- 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
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...Use code fences for syntax highlighting:
def hello_graph():
print("Hello, Graph World!")MATCH (n:Person)-[:KNOWS]->(m:Person)
RETURN n, mUse 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
Visit Graph Technology Developers for more resources and community discussions.