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:

Getting Started

  1. Clone or fork this repository
  2. Update _config.yml with your repository details:
    • Set url to https://{username}.github.io
    • Set baseurl to /{repository-name} (or "" for user/org sites)
    • Update title and description
  3. Customize the footer links in _includes/footer.html if needed
  4. Add your content as Markdown files in the root or pages/ directory
  5. 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.