TAMS logo

Field Reference Portal

TAMS Field Service Case

Use this Jekyll-powered hub to open setup guides, operating procedures, troubleshooting references, and configuration notes while working on-site.

Add new pages as Markdown files with front matter, then link to PDFs, images, JSON, and other media directly from those pages.

Recommended field workflow

  1. Scan the QR code on the case.
  2. Open the quick-start or task-specific guide.
  3. Use section pages in docs/ for deeper procedures.
  4. Return here anytime to switch documentation areas.

Common technician actions

Markdown-first site structure

Store new content as Markdown pages so Jekyll automatically applies the shared layout and styling:

.
├── _config.yml
├── _layouts/
│   └── default.html
├── assets/
│   └── css/site.css
├── docs/
│   ├── my-section.md
│   ├── images/
│   ├── data/
│   └── pdfs/
│       └── index.md
└── index.md

Linking and embedding media

  • Link to PDFs and downloads with normal Markdown links.
  • Embed images with Markdown image syntax.
  • Reference JSON or other raw assets using relative links for field troubleshooting artifacts.
  • Use HTML embeds only when needed for iframes or objects; the shared CSS will keep them responsive.