The official website for STRATO - a platform to easily earn on vaulted gold, silver & crypto with instant credit. Built by Ethereum veterans.
STRATO is a Jekyll-based static website that serves as the primary web presence for STRATO. The site features video content, team member profiles, and information about the platform's capabilities.
- Team Profiles: Biographies and profiles of STRATO team members
- Video Content: Show episodes, contest announcements, and platform demonstrations
- Blog: Platform updates, announcements, and educational content
- Platform Information: Details about trading, lending, and borrowing on real-world assets
This is a static site built with Jekyll 4.3+ and deployed via GitHub Pages.
stratomercata-website/
├── _config.yml # Jekyll configuration
├── Gemfile # Ruby dependencies
└── source/ # Jekyll source directory
├── _layouts/ # Page templates (default, person, blog, video)
├── _includes/ # Reusable components (auto_link, embeds, SEO)
├── _blog/ # Blog collection (Markdown files)
├── _people/ # People collection (Markdown files)
├── _videos/ # Video collection (Markdown files)
├── blog/index.html # Blog listing page
├── people/index.html # People listing page
├── videos/index.html # Videos listing page
├── assets/css/ # Stylesheets
├── images/ # Image assets
└── videos/raw-audio/ # Source audio files for transcription
The _config.yml file contains production settings:
baseurl: "": Empty for custom domain at rooturl: "https://strato.nexus": Production domain
For local development, Jekyll's serve command automatically overrides the url setting to http://localhost:4000.
Note for Ruby 3.4+: The Gemfile includes compatibility gems (base64, logger, bigdecimal) required for Jekyll 3.10.0 on Ruby 3.4+.
# Install dependencies
bundle install
# Clean, build, and serve with incremental builds
bundle exec jekyll clean && bundle exec jekyll serve --incremental
# Access at http://localhost:4000The development server includes:
- Auto-regeneration: Changes to source files trigger automatic rebuilds
- Incremental builds: Only changed files are rebuilt (faster)
- LiveReload: Browser refreshes automatically when files change
The site uses three Jekyll collections:
Platform updates, announcements, and educational content about STRATO.
Team member profiles with photos, bios, and social links.
Example frontmatter:
---
name: Bob Summerwill
role: Head of Ecosystem
photo: /images/bobsummerwill.com/2025.08.26/bob-summerwill.jpeg
twitter: bobsummerwill
linkedin: bob-summerwill
---Show episodes, contests, and platform demonstrations with embedded YouTube videos and transcripts.
Example frontmatter:
---
title: "STRATO Show: State of Blockchain"
date: 2025-10-08
hosts: ["Bob Summerwill", "Victor Wong", "Kieren James-Lubin"]
description: "Reflections on TOKEN2049 in Singapore"
embed:
url: https://www.youtube.com/embed/VIDEO_ID
---Download the video from Streamyard/YouTube, then extract audio:
ffmpeg -i "video-file.mp4" -q:a 0 -map a "output-audio.mp3"- Upload the audio file to TurboScribe
- Select Whale Transcription mode
- Enable Speaker Recognition in settings
- Set number of speakers (usually 2-3)
- Click Transcribe
Store the MP3 for future reference:
source/videos/raw-audio/show-name-YYYY-MM-DD.mp3
Copy an existing video page as a template:
cp source/_videos/existing-video.md source/_videos/new-video-YYYY-MM-DD.mdUpdate the frontmatter with new details.
- Export transcript from TurboScribe as TXT with Section Timestamps enabled
- Paste the content into the video page body
- Transform speaker labels and timestamps
Example transformation:
[Speaker 1] (0:03 - 0:05)
becomes:
[[0:03]](https://www.youtube.com/watch?v=VIDEO_ID&t=3s) **Bob:**
Where 3s is the starting timestamp in seconds.
bundle exec jekyll clean && bundle exec jekyll serve --incrementalVisit http://localhost:4000/videos/ to verify the new video appears correctly.
Netlify provides zero-config Jekyll support with automatic PR preview deployments.
Benefits:
- Automatic PR preview deployments (each PR gets a unique preview URL)
- Faster build times
- Unlimited bandwidth on free tier
- Zero configuration needed (auto-detects Jekyll)
Setup:
- Go to https://app.netlify.com
- Click "Add new site" → "Import an existing project"
- Choose GitHub and select your repository
- Netlify auto-detects Jekyll settings
- Click "Deploy site"
PR Previews:
- Enabled by default
- Each PR gets:
deploy-preview-{PR#}--{site}.netlify.app - Rebuilds automatically on every commit
- Preview URL posted as GitHub comment
Ruby 3.4 Compatibility:
The Gemfile includes all required compatibility gems for Netlify's Ruby 3.4 environment.
The site includes an auto-linking system (source/_includes/auto_link.html) that automatically converts mentions of people, blog posts, and videos to links:
Bob Summerwill spoke about blockchain.Automatically becomes:
<a href="/people/bob-summerwill/">Bob Summerwill</a> spoke about blockchain.The system processes content in priority order:
- Hidden People - Removes/redacts links to hidden profiles
- Videos - Links video titles to their pages
- Blog Posts - Links blog post titles to their pages
- People - Links person names (with conflict detection to avoid nested links)
Always use Jekyll's relative_url filter for internal links:
[Link text]({{ '/people/bob-summerwill/' | relative_url }})This ensures links work correctly in both local development and production.
Images are organized by source and date:
source/images/bobsummerwill.com/2025.08.26/photo.jpeg
source/images/linkedin.com/2025.10.07/profile.png
source/images/strato.nexus/2025.10.07/screenshot.png
Always use relative paths with the relative_url filter for images.
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/your-feature) - Commit your changes (
git commit -m 'Add new feature') - Push to the branch (
git push origin feature/your-feature) - Open a Pull Request
Main repository:
Your fork:
To sync your fork with upstream:
git fetch upstream
git checkout main
git merge upstream/main
git push origin mainFor major changes, please open an issue first to discuss what you would like to change.
This project is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0) - see the LICENSE file for details.
For questions or support:
- Open an issue
- Contact @bobsummerwill on X/Twitter
- Visit STRATO