Initial scaffold
This commit is contained in:
@@ -0,0 +1,308 @@
|
|||||||
|
# GTBOP Archive Site — MkDocs Material Setup & Migration Guide
|
||||||
|
|
||||||
|
## What This Package Is
|
||||||
|
|
||||||
|
A complete MkDocs Material project scaffold mapped to your GTBOP pipeline output. Drop your existing Markdown deliverables into the placeholder files, build the site, and deploy. The result is a fully searchable, navigable archive site that your team can browse by series, by session, by deliverable type, or by keyword search.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Infrastructure
|
||||||
|
|
||||||
|
| Component | Address | Purpose |
|
||||||
|
|-----------|---------|---------|
|
||||||
|
| **Live site** | `https://docs.gtbop.com/` | Cloudron Surfer — serves the built static files |
|
||||||
|
| **Source repo** | `https://mnemosyne.openextension.org/` | Gitea — version control for Markdown source files |
|
||||||
|
| **Build tool** | Local Mac | MkDocs Material — generates static HTML from Markdown |
|
||||||
|
|
||||||
|
The workflow: edit Markdown files locally, build with `mkdocs build`, deploy to Surfer, commit to Gitea.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Why MkDocs Material Over Grav
|
||||||
|
|
||||||
|
| Concern | Grav (current) | MkDocs Material |
|
||||||
|
|---------|---------------|-----------------|
|
||||||
|
| **Adding a webinar** | Create nested folders, add frontmatter, update custom template, clear cache | Drop files into folder, add nav lines to `mkdocs.yml`, rebuild |
|
||||||
|
| **Search** | None built in | Full-text search across all documents, zero config |
|
||||||
|
| **Navigation** | Custom HTML template | Auto-generated sidebar from `mkdocs.yml` nav config |
|
||||||
|
| **Cross-referencing** | Manual links | Tags system + automatic section navigation |
|
||||||
|
| **Maintenance** | Tied to Grav templating knowledge | Any Markdown-literate person can add content |
|
||||||
|
| **Markdown handling** | Requires frontmatter on every page | No frontmatter required (optional for tags) |
|
||||||
|
| **Dark mode** | Theme-dependent | Built-in toggle |
|
||||||
|
| **Mobile** | Theme-dependent | Responsive out of the box |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Project Structure
|
||||||
|
|
||||||
|
```
|
||||||
|
mkdocs-gtbop/
|
||||||
|
├── mkdocs.yml ← Site config + navigation
|
||||||
|
└── docs/
|
||||||
|
├── index.md ← Homepage
|
||||||
|
├── tags.md ← Tag index (auto-populated)
|
||||||
|
│
|
||||||
|
├── green-commercial/ ← Series: Green & Commercial
|
||||||
|
│ ├── index.md ← Series landing page
|
||||||
|
│ │
|
||||||
|
│ ├── 2026-01-15-graziosi-tree-pests/
|
||||||
|
│ │ ├── index.md ← Session landing page
|
||||||
|
│ │ ├── archive-summary.md ← Stage 2
|
||||||
|
│ │ ├── prose-transcript.md ← Stage 5
|
||||||
|
│ │ ├── corrections.md ← Stage 1 log
|
||||||
|
│ │ ├── downloads.md ← SRT download link
|
||||||
|
│ │ ├── *.srt ← Actual SRT file (static asset)
|
||||||
|
│ │ ├── platforms/
|
||||||
|
│ │ │ ├── youtube.md ← Stage 3
|
||||||
|
│ │ │ ├── website.md
|
||||||
|
│ │ │ └── ext-agent.md
|
||||||
|
│ │ └── activities/
|
||||||
|
│ │ ├── quiz.md ← Stage 4
|
||||||
|
│ │ ├── matching.md
|
||||||
|
│ │ └── review-prompts.md
|
||||||
|
│ │
|
||||||
|
│ └── (additional sessions follow same structure)
|
||||||
|
│
|
||||||
|
├── structural/ ← Series: Structural Pest Control
|
||||||
|
│ ├── index.md
|
||||||
|
│ └── (sessions follow same structure)
|
||||||
|
│
|
||||||
|
└── projects/ ← Stage 6: Writing Projects
|
||||||
|
├── index.md
|
||||||
|
└── insecticide-bulletin/
|
||||||
|
├── index.md ← Toolkit overview
|
||||||
|
├── outline.md
|
||||||
|
├── compendium.md
|
||||||
|
└── source-guide.md
|
||||||
|
```
|
||||||
|
|
||||||
|
### Naming Convention: Session Folders
|
||||||
|
|
||||||
|
```
|
||||||
|
YYYY-MM-DD-lastname-short-topic/
|
||||||
|
```
|
||||||
|
|
||||||
|
Examples: `2026-01-15-graziosi-tree-pests/`, `2017-10-18-scharf-insecticide-moa/`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## First-Time Setup
|
||||||
|
|
||||||
|
### 1. Install MkDocs Material on your Mac
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install mkdocs-material
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. Create the repo in Gitea
|
||||||
|
|
||||||
|
In your Gitea web UI at `https://mnemosyne.openextension.org/`: **New Repository** → `gtbop-archive-site`
|
||||||
|
|
||||||
|
### 3. Initialize and push the scaffold
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd ~/path/to/mkdocs-gtbop
|
||||||
|
git init
|
||||||
|
git remote add origin https://mnemosyne.openextension.org/grbraman/gtbop-archive-site.git
|
||||||
|
git add .
|
||||||
|
git commit -m "Initial scaffold"
|
||||||
|
git push -u origin main
|
||||||
|
```
|
||||||
|
|
||||||
|
### 4. Install Surfer on Cloudron
|
||||||
|
|
||||||
|
Cloudron App Store → search "Surfer" → install at `docs.gtbop.com`
|
||||||
|
|
||||||
|
### 5. Log in to Surfer from your Mac
|
||||||
|
|
||||||
|
```bash
|
||||||
|
surfer login https://docs.gtbop.com
|
||||||
|
```
|
||||||
|
|
||||||
|
Enter your Cloudron credentials when prompted. One-time step.
|
||||||
|
|
||||||
|
### 6. First build and deploy
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdocs build
|
||||||
|
surfer put site/* /
|
||||||
|
```
|
||||||
|
|
||||||
|
Visit `https://docs.gtbop.com/` — you should see the site.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## How to Add a New Webinar
|
||||||
|
|
||||||
|
### Step 1 — Create the session folder
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p docs/green-commercial/YYYY-MM-DD-lastname-topic/platforms
|
||||||
|
mkdir -p docs/green-commercial/YYYY-MM-DD-lastname-topic/activities
|
||||||
|
```
|
||||||
|
|
||||||
|
### Step 2 — Copy files from an existing session
|
||||||
|
|
||||||
|
Copy all the `.md` files from an existing session folder. Update the content with your pipeline output.
|
||||||
|
|
||||||
|
### Step 3 — Update the session landing page (`index.md`)
|
||||||
|
|
||||||
|
Update: title, speaker, date, duration, series, CEU categories, deliverable links, source attribution.
|
||||||
|
|
||||||
|
### Step 4 — Add nav entry in `mkdocs.yml`
|
||||||
|
|
||||||
|
Copy an existing session's nav block under the right series tab and update paths:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- "Lastname — Topic (Mon Year)":
|
||||||
|
- green-commercial/YYYY-MM-DD-lastname-topic/index.md
|
||||||
|
- Archive Summary: green-commercial/YYYY-MM-DD-lastname-topic/archive-summary.md
|
||||||
|
- Prose Transcript: green-commercial/YYYY-MM-DD-lastname-topic/prose-transcript.md
|
||||||
|
- Transcript Corrections: green-commercial/YYYY-MM-DD-lastname-topic/corrections.md
|
||||||
|
- Platform Versions:
|
||||||
|
- YouTube: green-commercial/YYYY-MM-DD-lastname-topic/platforms/youtube.md
|
||||||
|
- Website: green-commercial/YYYY-MM-DD-lastname-topic/platforms/website.md
|
||||||
|
- Extension Agent: green-commercial/YYYY-MM-DD-lastname-topic/platforms/ext-agent.md
|
||||||
|
- Moodle Activities:
|
||||||
|
- Quiz: green-commercial/YYYY-MM-DD-lastname-topic/activities/quiz.md
|
||||||
|
- Matching: green-commercial/YYYY-MM-DD-lastname-topic/activities/matching.md
|
||||||
|
- Review Prompts: green-commercial/YYYY-MM-DD-lastname-topic/activities/review-prompts.md
|
||||||
|
- Downloads:
|
||||||
|
- Corrected SRT: green-commercial/YYYY-MM-DD-lastname-topic/downloads.md
|
||||||
|
```
|
||||||
|
|
||||||
|
### Step 5 — Update the series landing page
|
||||||
|
|
||||||
|
Add a row to the session table in `docs/green-commercial/index.md` or `docs/structural/index.md`.
|
||||||
|
|
||||||
|
### Step 6 — Preview, build, deploy, commit
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdocs serve # Preview at http://localhost:8000
|
||||||
|
mkdocs build # Build static site
|
||||||
|
surfer put site/* / # Deploy to docs.gtbop.com
|
||||||
|
git add . && git commit -m "Add Lastname topic - Mon Year" && git push
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## How to Add a Writing Project
|
||||||
|
|
||||||
|
### Step 1 — Create the project folder
|
||||||
|
|
||||||
|
```bash
|
||||||
|
mkdir -p docs/projects/short-project-name/
|
||||||
|
```
|
||||||
|
|
||||||
|
### Step 2 — Drop in the toolkit files
|
||||||
|
|
||||||
|
| Pipeline Output | Rename To |
|
||||||
|
|----------------|-----------|
|
||||||
|
| `GTBOP_BulletinToolkit_Overview.md` | `index.md` |
|
||||||
|
| `GTBOP_BulletinOutline_*.md` | `outline.md` |
|
||||||
|
| `GTBOP_ReferenceCompendium_*.md` | `compendium.md` |
|
||||||
|
| `GTBOP_SourceGuide_*.md` | `source-guide.md` |
|
||||||
|
|
||||||
|
### Step 3 — Add nav entry in `mkdocs.yml`
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- "Project Display Name":
|
||||||
|
- projects/short-project-name/index.md
|
||||||
|
- Bulletin Outline: projects/short-project-name/outline.md
|
||||||
|
- Reference Compendium: projects/short-project-name/compendium.md
|
||||||
|
- Source Guide: projects/short-project-name/source-guide.md
|
||||||
|
```
|
||||||
|
|
||||||
|
### Step 4 — Update `docs/projects/index.md` and deploy
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Adding Tags to Pages
|
||||||
|
|
||||||
|
Add a YAML frontmatter block at the top of any page:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Green & Commercial
|
||||||
|
- Entomology
|
||||||
|
- Graziosi
|
||||||
|
---
|
||||||
|
```
|
||||||
|
|
||||||
|
Tags appear on the page and are browsable from `https://docs.gtbop.com/tags/`.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Quick Reference Commands
|
||||||
|
|
||||||
|
| Task | Command |
|
||||||
|
|------|---------|
|
||||||
|
| Local preview | `mkdocs serve` |
|
||||||
|
| Build site | `mkdocs build` |
|
||||||
|
| Deploy to Surfer | `surfer put site/* /` |
|
||||||
|
| Build + deploy (one line) | `mkdocs build && surfer put site/* /` |
|
||||||
|
| Commit changes | `git add . && git commit -m "message" && git push` |
|
||||||
|
| Full deploy cycle | `mkdocs build && surfer put site/* / && git add . && git commit -m "message" && git push` |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## What Your Team Gets
|
||||||
|
|
||||||
|
**For Beth / Dr. Pennisi / extension specialists:**
|
||||||
|
- Search bar that finds content across all processed webinars
|
||||||
|
- Tabbed navigation: click Green & Commercial or Structural to see only that series
|
||||||
|
- Each session has a landing page with links to every deliverable
|
||||||
|
- Dark mode toggle
|
||||||
|
|
||||||
|
**For you (maintenance):**
|
||||||
|
- Adding a webinar: ~10 minutes (copy folder, paste content, add nav lines, build)
|
||||||
|
- No custom templates to maintain
|
||||||
|
- No cache to clear
|
||||||
|
- No frontmatter required on content files (optional for tags)
|
||||||
|
- Git-friendly: every change is a diffable text file
|
||||||
|
|
||||||
|
**For writing project collaborators (Dan, Mike):**
|
||||||
|
- Dedicated Writing Projects tab separate from the archive
|
||||||
|
- Each toolkit has its own landing page explaining the documents
|
||||||
|
- Cross-links back to the source webinar's archive page
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
**`mkdocs serve` shows an error about nav paths:**
|
||||||
|
A file listed in `mkdocs.yml` doesn't exist in `docs/`. Check for typos in the path.
|
||||||
|
|
||||||
|
**Site looks stale after deploy:**
|
||||||
|
Hard refresh in browser (Cmd+Shift+R). Surfer may cache.
|
||||||
|
|
||||||
|
**Surfer login expired:**
|
||||||
|
Run `surfer login https://docs.gtbop.com` again.
|
||||||
|
|
||||||
|
**Search not finding new content:**
|
||||||
|
MkDocs rebuilds the search index on every `mkdocs build`. Make sure you built before deploying.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## File Inventory in This Package
|
||||||
|
|
||||||
|
| File | Status |
|
||||||
|
|------|--------|
|
||||||
|
| `mkdocs.yml` | **Complete** — full config with nav for all 3 sessions + bulletin project |
|
||||||
|
| `docs/index.md` | **Complete** — homepage with series cards and pipeline overview |
|
||||||
|
| `docs/tags.md` | **Complete** — tag index page |
|
||||||
|
| `docs/green-commercial/index.md` | **Complete** — series landing page |
|
||||||
|
| `docs/structural/index.md` | **Complete** — series landing page |
|
||||||
|
| `docs/projects/index.md` | **Complete** — projects landing page |
|
||||||
|
| `docs/projects/insecticide-bulletin/index.md` | **Complete** — toolkit overview page |
|
||||||
|
| Session `index.md` files (3) | **Complete** — session landing pages with deliverable tables |
|
||||||
|
| Session `downloads.md` files (3) | **Complete** — SRT download pages |
|
||||||
|
| All other `*.md` files | **Placeholder** — paste your pipeline content here |
|
||||||
|
|
||||||
|
Total: 41 Markdown files across the full site structure.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Prepared March 16, 2026 for GTBOP archive site deployment*
|
||||||
|
*Site: docs.gtbop.com / Repo: mnemosyne.openextension.org*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Matching Exercises — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 4 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Moodle Quiz — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 4 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Review Prompts — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 4 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Archive Summary — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 2 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Transcript Corrections — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 1 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
# Downloads — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
## Corrected SRT File
|
||||||
|
|
||||||
|
Place the corrected SRT file in this folder alongside this page:
|
||||||
|
|
||||||
|
```
|
||||||
|
docs/green-commercial/2026-01-15-graziosi-tree-pests/
|
||||||
|
├── GTBOP_Transcript_2026-01-15_TreePests.srt ← place here
|
||||||
|
├── downloads.md ← this file
|
||||||
|
└── ...
|
||||||
|
```
|
||||||
|
|
||||||
|
MkDocs will serve the `.srt` file as a static asset. Link to it with:
|
||||||
|
|
||||||
|
```markdown
|
||||||
|
[Download Corrected SRT](GTBOP_Transcript_2026-01-15_TreePests.srt)
|
||||||
|
```
|
||||||
|
|
||||||
|
> **File details:** Update block count, time range, and filename below after placing the file.
|
||||||
|
|
||||||
|
| Detail | Value |
|
||||||
|
|--------|-------|
|
||||||
|
| Filename | `GTBOP_Transcript_2026-01-15_TreePests.srt` |
|
||||||
|
| Blocks | — |
|
||||||
|
| Time range | — |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Green & Commercial
|
||||||
|
- Entomology
|
||||||
|
- Graziosi
|
||||||
|
---
|
||||||
|
|
||||||
|
# Dr. Ignazio Graziosi — Tree Pests of the Southeast
|
||||||
|
|
||||||
|
**Webinar Date:** January 15, 2026
|
||||||
|
**Speaker:** Dr. Ignazio Graziosi, UGA Warnell School of Forestry and Natural Resources
|
||||||
|
**Moderator:** Beth Horne, Extension Associate
|
||||||
|
**Series:** Green & Commercial
|
||||||
|
**CEU Categories:** Category 24 (Ornamental and Turf)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Deliverables
|
||||||
|
|
||||||
|
| Deliverable | Stage | Description |
|
||||||
|
|-------------|-------|-------------|
|
||||||
|
| [Archive Summary](archive-summary.md) | 2 | Narrative summary, YouTube timestamps, Q&A |
|
||||||
|
| [Prose Transcript](prose-transcript.md) | 5 | Full presentation in readable prose |
|
||||||
|
| [Transcript Corrections](corrections.md) | 1 | Correction log and verification |
|
||||||
|
| [YouTube Version](platforms/youtube.md) | 3 | Character-limited YouTube description |
|
||||||
|
| [Website Version](platforms/website.md) | 3 | Full web publication version |
|
||||||
|
| [Extension Agent Version](platforms/ext-agent.md) | 3 | CEU-focused asynchronous version |
|
||||||
|
| [Quiz](activities/quiz.md) | 4 | Multiple choice assessment |
|
||||||
|
| [Matching](activities/matching.md) | 4 | Term-to-definition exercises |
|
||||||
|
| [Review Prompts](activities/review-prompts.md) | 4 | Timestamp-linked review tasks |
|
||||||
|
| [Corrected SRT](downloads.md) | 1 | Download corrected subtitle file |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Extension Agent Version — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 3 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Website Version — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 3 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# YouTube Description — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 3 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Prose Transcript — Graziosi, Tree Pests
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 5 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Matching Exercises — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 4 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Moodle Quiz — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 4 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Review Prompts — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 4 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Archive Summary — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 2 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Transcript Corrections — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 1 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Downloads — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
## Corrected SRT File
|
||||||
|
|
||||||
|
Place the corrected SRT file in this folder alongside this page. MkDocs will serve it as a static asset.
|
||||||
|
|
||||||
|
| Detail | Value |
|
||||||
|
|--------|-------|
|
||||||
|
| Filename | `GTBOP_Transcript_2026-01-15_UrbanTreeBMPs.srt` |
|
||||||
|
| Blocks | — |
|
||||||
|
| Time range | — |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Green & Commercial
|
||||||
|
- Arboriculture
|
||||||
|
- Klein
|
||||||
|
---
|
||||||
|
|
||||||
|
# Dr. Ryan Klein — Best Management Practices for Urban Trees
|
||||||
|
|
||||||
|
**Webinar Date:** January 15, 2026
|
||||||
|
**Speaker:** Dr. Ryan Klein, University of Florida, Arboriculture
|
||||||
|
**Moderator:** Beth Horne, Extension Associate
|
||||||
|
**Series:** Green & Commercial
|
||||||
|
**CEU Categories:** Category 24 (Ornamental and Turf)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Deliverables
|
||||||
|
|
||||||
|
| Deliverable | Stage | Description |
|
||||||
|
|-------------|-------|-------------|
|
||||||
|
| [Archive Summary](archive-summary.md) | 2 | Narrative summary, YouTube timestamps, Q&A |
|
||||||
|
| [Prose Transcript](prose-transcript.md) | 5 | Full presentation in readable prose |
|
||||||
|
| [Transcript Corrections](corrections.md) | 1 | Correction log and verification |
|
||||||
|
| [YouTube Version](platforms/youtube.md) | 3 | Character-limited YouTube description |
|
||||||
|
| [Website Version](platforms/website.md) | 3 | Full web publication version |
|
||||||
|
| [Extension Agent Version](platforms/ext-agent.md) | 3 | CEU-focused asynchronous version |
|
||||||
|
| [Quiz](activities/quiz.md) | 4 | Multiple choice assessment |
|
||||||
|
| [Matching](activities/matching.md) | 4 | Term-to-definition exercises |
|
||||||
|
| [Review Prompts](activities/review-prompts.md) | 4 | Timestamp-linked review tasks |
|
||||||
|
| [Corrected SRT](downloads.md) | 1 | Download corrected subtitle file |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Extension Agent Version — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 3 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Website Version — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 3 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# YouTube Description — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 3 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Prose Transcript — Klein, Urban Tree BMPs
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 5 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Green & Commercial
|
||||||
|
---
|
||||||
|
|
||||||
|
# Green & Commercial Series
|
||||||
|
|
||||||
|
Webinar archives for commercial and private pesticide applicators in the ornamental, turf, and landscape industries. Content serves Category 24 (Ornamental and Turf) and Category 27 (Right-of-Way) continuing education.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Processed Sessions
|
||||||
|
|
||||||
|
| Date | Speaker | Topic | Stages |
|
||||||
|
|------|---------|-------|--------|
|
||||||
|
| Jan 15, 2026 | Dr. Ignazio Graziosi | Tree Pests | 1–5 |
|
||||||
|
| Jan 15, 2026 | Dr. Ryan Klein | Urban Tree BMPs | 1–5 |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*UGA Center for Urban Agriculture / GTBOP Green & Commercial Series*
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Home
|
||||||
|
---
|
||||||
|
|
||||||
|
# GTBOP Webinar Archives
|
||||||
|
|
||||||
|
**Getting the Best of Pests** — Processed webinar archives for the UGA Center for Urban Agriculture.
|
||||||
|
|
||||||
|
This site hosts the complete pipeline output for processed GTBOP webinar sessions: corrected transcripts, archive summaries, platform-optimized versions, Moodle course activities, prose transcripts, and collaborative writing resources.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Series
|
||||||
|
|
||||||
|
<div class="grid cards" markdown>
|
||||||
|
|
||||||
|
- :material-leaf:{ .lg .middle } **Green & Commercial**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Ornamental, turf, and landscape pest management for commercial and private pesticide applicators (Category 24/27).
|
||||||
|
|
||||||
|
[:octicons-arrow-right-24: Browse sessions](green-commercial/index.md)
|
||||||
|
|
||||||
|
- :material-home-city:{ .lg .middle } **Structural Pest Control**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Industrial, institutional, and structural pest management for licensed pest control operators (Category 35).
|
||||||
|
|
||||||
|
[:octicons-arrow-right-24: Browse sessions](structural/index.md)
|
||||||
|
|
||||||
|
- :material-pencil:{ .lg .middle } **Writing Projects**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Collaborative writing resources derived from webinar content — bulletin outlines, reference compendia, and source guides.
|
||||||
|
|
||||||
|
[:octicons-arrow-right-24: Browse projects](projects/index.md)
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## About the Pipeline
|
||||||
|
|
||||||
|
Each webinar is processed through a six-stage pipeline:
|
||||||
|
|
||||||
|
1. **Transcript Correction** — Raw Whisper SRT corrected for technical terminology, speaker names, and domain vocabulary
|
||||||
|
2. **Archive Package** — Narrative summary, YouTube timestamps, and Q&A pairs
|
||||||
|
3. **Platform Optimization** — YouTube, website, and extension agent versions
|
||||||
|
4. **Moodle Activities** — Quiz questions, matching exercises, and review prompts for certificate courses
|
||||||
|
5. **Prose Transcript** — Corrected SRT converted to readable, structured markdown
|
||||||
|
6. **Writing Resources** — Content reorganized into publication-ready toolkits
|
||||||
|
|
||||||
|
All content derives from the corrected transcript as the authoritative source document. No external information is introduced at any stage.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*UGA Center for Urban Agriculture / GTBOP Webinar Series*
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Writing Projects
|
||||||
|
---
|
||||||
|
|
||||||
|
# Writing Projects
|
||||||
|
|
||||||
|
Collaborative writing resources derived from GTBOP webinar content. Each project reorganizes presentation material into publication-ready toolkits for subject matter experts.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Active Projects
|
||||||
|
|
||||||
|
| Project | Source Webinar | Collaborators | Status |
|
||||||
|
|---------|---------------|---------------|--------|
|
||||||
|
| Insecticide Basics Bulletin | Scharf — Insecticide MOA (Oct 2017) | Dr. Dan Suiter, Dr. Michael Scharf | In progress |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*UGA Center for Urban Agriculture / GTBOP Writing Projects*
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
# Reference Compendium — Insecticide Basics
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 6 reference compendium here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Source: Dr. Michael Scharf, GTBOP Structural — October 18, 2017*
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,35 @@
|
|||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Writing Projects
|
||||||
|
- Insecticides
|
||||||
|
- Scharf
|
||||||
|
- Suiter
|
||||||
|
---
|
||||||
|
|
||||||
|
# Insecticide Basics Bulletin — Writing Toolkit
|
||||||
|
|
||||||
|
**Source Webinar:** Dr. Michael Scharf — Principles of Insecticide Classification and Mode of Action (October 18, 2017)
|
||||||
|
**Collaborators:** Dr. Dan Suiter (UGA), Dr. Michael Scharf (Purdue)
|
||||||
|
**Target Publication:** UGA extension bulletin on insecticide classification and mode of action for pest control professionals
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## How This Toolkit Works
|
||||||
|
|
||||||
|
This set of writing resources reorganizes Dr. Scharf's GTBOP presentation into a publication-ready structure. All content derives exclusively from the corrected transcript — no external information has been introduced.
|
||||||
|
|
||||||
|
| Document | Purpose |
|
||||||
|
|----------|---------|
|
||||||
|
| [Bulletin Outline](outline.md) | Publication structure with content notes, transcript pointers, and writing notes |
|
||||||
|
| [Reference Compendium](compendium.md) | Consolidated tables of insecticide classes, active ingredients, MOA groups, and terminology |
|
||||||
|
| [Source Guide](source-guide.md) | Maps publication sections to exact transcript locations and video timestamps |
|
||||||
|
|
||||||
|
### Using These Documents
|
||||||
|
|
||||||
|
The **Outline** is your drafting roadmap — it tells you what goes where and flags areas needing current updates with ⚠️ markers. The **Compendium** is your quick-reference sheet for verifying classifications and relationships while writing. The **Source Guide** tells you exactly where to look in the video or transcript to verify any specific claim.
|
||||||
|
|
||||||
|
⚠️ markers indicate content that may need updating since the 2017 presentation. These are flags for the subject matter experts, not corrections — the writing resources preserve what the speaker actually said.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Source: GTBOP Structural Pest Control Series / Processed for UGA Center for Urban Agriculture*
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
# Bulletin Outline — Insecticide Basics
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 6 bulletin outline here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Source: Dr. Michael Scharf, GTBOP Structural — October 18, 2017*
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
# Source Guide — Insecticide Basics
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 6 source guide here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Source: Dr. Michael Scharf, GTBOP Structural — October 18, 2017*
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Matching Exercises — Scharf, Insecticide MOA
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 4 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Moodle Quiz — Scharf, Insecticide MOA
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 4 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Archive Summary — Scharf, Insecticide MOA
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 2 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Transcript Corrections — Scharf, Insecticide MOA
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 1 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
# Downloads — Scharf, Insecticide MOA
|
||||||
|
|
||||||
|
## Corrected SRT File
|
||||||
|
|
||||||
|
Place the corrected SRT file in this folder alongside this page. MkDocs will serve it as a static asset.
|
||||||
|
|
||||||
|
| Detail | Value |
|
||||||
|
|--------|-------|
|
||||||
|
| Filename | `GTBOP_Transcript_2017-10-18_InsecticideMOA.srt` |
|
||||||
|
| Blocks | — |
|
||||||
|
| Time range | — |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Structural
|
||||||
|
- Entomology
|
||||||
|
- Scharf
|
||||||
|
- Insecticides
|
||||||
|
---
|
||||||
|
|
||||||
|
# Dr. Michael Scharf — Principles of Insecticide Classification and Mode of Action
|
||||||
|
|
||||||
|
**Webinar Date:** October 18, 2017
|
||||||
|
**Speaker:** Dr. Michael Scharf, Purdue University, Department of Entomology
|
||||||
|
**Moderator:** Dr. Dan Suiter, Extension Entomologist, UGA
|
||||||
|
**Series:** Structural Pest Control
|
||||||
|
**CEU Categories:** Category 35 (Industrial, Institutional, Structural and Health Related)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Deliverables
|
||||||
|
|
||||||
|
| Deliverable | Stage | Description |
|
||||||
|
|-------------|-------|-------------|
|
||||||
|
| [Archive Summary](archive-summary.md) | 2 | Narrative summary, YouTube timestamps, Q&A |
|
||||||
|
| [Prose Transcript](prose-transcript.md) | 5 | Full presentation in readable prose |
|
||||||
|
| [Transcript Corrections](corrections.md) | 1 | Correction log and verification |
|
||||||
|
| [YouTube Version](platforms/youtube.md) | 3 | Character-limited YouTube description |
|
||||||
|
| [Website Version](platforms/website.md) | 3 | Full web publication version |
|
||||||
|
| [Extension Agent Version](platforms/ext-agent.md) | 3 | CEU-focused asynchronous version |
|
||||||
|
| [Quiz](activities/quiz.md) | 4 | Multiple choice assessment |
|
||||||
|
| [Matching](activities/matching.md) | 4 | Term-to-definition exercises |
|
||||||
|
| [Corrected SRT](downloads.md) | 1 | Download corrected subtitle file |
|
||||||
|
|
||||||
|
### Writing Resources
|
||||||
|
|
||||||
|
| Resource | Description |
|
||||||
|
|----------|-------------|
|
||||||
|
| [Bulletin Outline](../../projects/insecticide-bulletin/outline.md) | Publication structure mapped to presentation content |
|
||||||
|
| [Reference Compendium](../../projects/insecticide-bulletin/compendium.md) | Consolidated tables of classifications, products, and terminology |
|
||||||
|
| [Source Guide](../../projects/insecticide-bulletin/source-guide.md) | Transcript-to-publication navigation map |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Extension Agent Version — Scharf, Insecticide MOA
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 3 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Website Version — Scharf, Insecticide MOA
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 3 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# YouTube Description — Scharf, Insecticide MOA
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 3 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
# Prose Transcript — Scharf, Insecticide MOA
|
||||||
|
|
||||||
|
> **Placeholder** — Paste your Stage 5 pipeline output here.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*Processed for UGA Center for Urban Agriculture / GTBOP Archives*
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
tags:
|
||||||
|
- Structural
|
||||||
|
---
|
||||||
|
|
||||||
|
# Structural Pest Control Series
|
||||||
|
|
||||||
|
Webinar archives for licensed pest control operators. Content serves Category 35 (Industrial, Institutional, Structural and Health Related) continuing education.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Processed Sessions
|
||||||
|
|
||||||
|
| Date | Speaker | Topic | Stages |
|
||||||
|
|------|---------|-------|--------|
|
||||||
|
| Oct 18, 2017 | Dr. Michael Scharf | Insecticide MOA | 1–6 |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*UGA Center for Urban Agriculture / GTBOP Structural Pest Control Series*
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# Tags
|
||||||
|
|
||||||
|
Browse all archived sessions and resources by tag.
|
||||||
|
|
||||||
|
[TAGS]
|
||||||
+134
@@ -0,0 +1,134 @@
|
|||||||
|
site_name: GTBOP Webinar Archives
|
||||||
|
site_description: Getting the Best of Pests — Processed webinar archives for the UGA Center for Urban Agriculture
|
||||||
|
site_url: https://docs.gtbop.com/
|
||||||
|
|
||||||
|
theme:
|
||||||
|
name: material
|
||||||
|
palette:
|
||||||
|
- scheme: default
|
||||||
|
primary: deep green
|
||||||
|
accent: amber
|
||||||
|
toggle:
|
||||||
|
icon: material/brightness-7
|
||||||
|
name: Switch to dark mode
|
||||||
|
- scheme: slate
|
||||||
|
primary: deep green
|
||||||
|
accent: amber
|
||||||
|
toggle:
|
||||||
|
icon: material/brightness-4
|
||||||
|
name: Switch to light mode
|
||||||
|
features:
|
||||||
|
- navigation.tabs
|
||||||
|
- navigation.tabs.sticky
|
||||||
|
- navigation.sections
|
||||||
|
- navigation.expand
|
||||||
|
- navigation.indexes
|
||||||
|
- navigation.top
|
||||||
|
- search.suggest
|
||||||
|
- search.highlight
|
||||||
|
- content.tooltips
|
||||||
|
icon:
|
||||||
|
logo: material/bug
|
||||||
|
font:
|
||||||
|
text: Source Sans Pro
|
||||||
|
code: Source Code Pro
|
||||||
|
|
||||||
|
plugins:
|
||||||
|
- search
|
||||||
|
- tags:
|
||||||
|
tags_file: tags.md
|
||||||
|
|
||||||
|
markdown_extensions:
|
||||||
|
- admonition
|
||||||
|
- pymdownx.details
|
||||||
|
- pymdownx.superfences
|
||||||
|
- pymdownx.tabbed:
|
||||||
|
alternate_style: true
|
||||||
|
- tables
|
||||||
|
- toc:
|
||||||
|
permalink: true
|
||||||
|
- attr_list
|
||||||
|
- md_in_html
|
||||||
|
|
||||||
|
extra:
|
||||||
|
social:
|
||||||
|
- icon: fontawesome/solid/building-columns
|
||||||
|
link: https://www.caes.uga.edu/departments-centers/center-urban-agriculture.html
|
||||||
|
name: UGA Center for Urban Agriculture
|
||||||
|
|
||||||
|
# ──────────────────────────────────────────────────────────────
|
||||||
|
# NAVIGATION
|
||||||
|
# Adding a new webinar = adding lines here + dropping files in docs/
|
||||||
|
# ──────────────────────────────────────────────────────────────
|
||||||
|
|
||||||
|
nav:
|
||||||
|
- Home: index.md
|
||||||
|
- Tags: tags.md
|
||||||
|
|
||||||
|
# ── GREEN & COMMERCIAL SERIES ──────────────────────────────
|
||||||
|
- Green & Commercial:
|
||||||
|
- green-commercial/index.md
|
||||||
|
|
||||||
|
# ── January 15, 2026 ──
|
||||||
|
- "Graziosi — Tree Pests (Jan 2026)":
|
||||||
|
- green-commercial/2026-01-15-graziosi-tree-pests/index.md
|
||||||
|
- Archive Summary: green-commercial/2026-01-15-graziosi-tree-pests/archive-summary.md
|
||||||
|
- Prose Transcript: green-commercial/2026-01-15-graziosi-tree-pests/prose-transcript.md
|
||||||
|
- Transcript Corrections: green-commercial/2026-01-15-graziosi-tree-pests/corrections.md
|
||||||
|
- Platform Versions:
|
||||||
|
- YouTube: green-commercial/2026-01-15-graziosi-tree-pests/platforms/youtube.md
|
||||||
|
- Website: green-commercial/2026-01-15-graziosi-tree-pests/platforms/website.md
|
||||||
|
- Extension Agent: green-commercial/2026-01-15-graziosi-tree-pests/platforms/ext-agent.md
|
||||||
|
- Moodle Activities:
|
||||||
|
- Quiz: green-commercial/2026-01-15-graziosi-tree-pests/activities/quiz.md
|
||||||
|
- Matching: green-commercial/2026-01-15-graziosi-tree-pests/activities/matching.md
|
||||||
|
- Review Prompts: green-commercial/2026-01-15-graziosi-tree-pests/activities/review-prompts.md
|
||||||
|
- Downloads:
|
||||||
|
- Corrected SRT: green-commercial/2026-01-15-graziosi-tree-pests/downloads.md
|
||||||
|
|
||||||
|
# ── January 15, 2026 ──
|
||||||
|
- "Klein — Urban Tree BMPs (Jan 2026)":
|
||||||
|
- green-commercial/2026-01-15-klein-urban-tree-bmps/index.md
|
||||||
|
- Archive Summary: green-commercial/2026-01-15-klein-urban-tree-bmps/archive-summary.md
|
||||||
|
- Prose Transcript: green-commercial/2026-01-15-klein-urban-tree-bmps/prose-transcript.md
|
||||||
|
- Transcript Corrections: green-commercial/2026-01-15-klein-urban-tree-bmps/corrections.md
|
||||||
|
- Platform Versions:
|
||||||
|
- YouTube: green-commercial/2026-01-15-klein-urban-tree-bmps/platforms/youtube.md
|
||||||
|
- Website: green-commercial/2026-01-15-klein-urban-tree-bmps/platforms/website.md
|
||||||
|
- Extension Agent: green-commercial/2026-01-15-klein-urban-tree-bmps/platforms/ext-agent.md
|
||||||
|
- Moodle Activities:
|
||||||
|
- Quiz: green-commercial/2026-01-15-klein-urban-tree-bmps/activities/quiz.md
|
||||||
|
- Matching: green-commercial/2026-01-15-klein-urban-tree-bmps/activities/matching.md
|
||||||
|
- Review Prompts: green-commercial/2026-01-15-klein-urban-tree-bmps/activities/review-prompts.md
|
||||||
|
- Downloads:
|
||||||
|
- Corrected SRT: green-commercial/2026-01-15-klein-urban-tree-bmps/downloads.md
|
||||||
|
|
||||||
|
# ── STRUCTURAL PEST CONTROL SERIES ─────────────────────────
|
||||||
|
- Structural:
|
||||||
|
- structural/index.md
|
||||||
|
|
||||||
|
# ── October 18, 2017 ──
|
||||||
|
- "Scharf — Insecticide MOA (Oct 2017)":
|
||||||
|
- structural/2017-10-18-scharf-insecticide-moa/index.md
|
||||||
|
- Archive Summary: structural/2017-10-18-scharf-insecticide-moa/archive-summary.md
|
||||||
|
- Prose Transcript: structural/2017-10-18-scharf-insecticide-moa/prose-transcript.md
|
||||||
|
- Transcript Corrections: structural/2017-10-18-scharf-insecticide-moa/corrections.md
|
||||||
|
- Platform Versions:
|
||||||
|
- YouTube: structural/2017-10-18-scharf-insecticide-moa/platforms/youtube.md
|
||||||
|
- Website: structural/2017-10-18-scharf-insecticide-moa/platforms/website.md
|
||||||
|
- Extension Agent: structural/2017-10-18-scharf-insecticide-moa/platforms/ext-agent.md
|
||||||
|
- Moodle Activities:
|
||||||
|
- Quiz: structural/2017-10-18-scharf-insecticide-moa/activities/quiz.md
|
||||||
|
- Matching: structural/2017-10-18-scharf-insecticide-moa/activities/matching.md
|
||||||
|
- Downloads:
|
||||||
|
- Corrected SRT: structural/2017-10-18-scharf-insecticide-moa/downloads.md
|
||||||
|
|
||||||
|
# ── WRITING PROJECTS ───────────────────────────────────────
|
||||||
|
- Writing Projects:
|
||||||
|
- projects/index.md
|
||||||
|
|
||||||
|
- "Insecticide Basics Bulletin":
|
||||||
|
- projects/insecticide-bulletin/index.md
|
||||||
|
- Bulletin Outline: projects/insecticide-bulletin/outline.md
|
||||||
|
- Reference Compendium: projects/insecticide-bulletin/compendium.md
|
||||||
|
- Source Guide: projects/insecticide-bulletin/source-guide.md
|
||||||
Reference in New Issue
Block a user