Files
wordsearch/templates/about.html
T
Mathew Sir Guest the bestandClaude Opus 4.6 4e511f89ed feat: add project links to about page and include SQLAlchemy, SQLite, Click
All "Built With" entries now link to their project homepages.
Added SQLAlchemy, SQLite, and Click as listed technologies.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-07 12:40:50 -06:00

61 lines
2.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% block active_page %}{% set active_page = "about" %}{% end %}
{% block title %}Word Search — About{% end %}
{% block content %}
<h2 class="mb-4">️ About</h2>
<div class="content-section">
<h3>🧩 What is Word Search?</h3>
<p>
Word Search is a browser-based puzzle game where you find hidden words in a
grid of letters. Words can be placed horizontally, vertically, or
diagonally — forwards or backwards. The backend generates puzzles,
validates your selections, and tracks your progress in real time.
</p>
</div>
<div class="content-section">
<h3>🛠️ Built With</h3>
<ul>
<li><a href="https://www.python.org/" target="_blank" rel="noopener"><strong>Python</strong></a> — core language</li>
<li><a href="https://www.tornadoweb.org/" target="_blank" rel="noopener"><strong>Tornado</strong></a> — async web framework</li>
<li><a href="https://www.sqlalchemy.org/" target="_blank" rel="noopener"><strong>SQLAlchemy</strong></a> — ORM and database toolkit</li>
<li><a href="https://www.sqlite.org/" target="_blank" rel="noopener"><strong>SQLite</strong></a> — embedded database</li>
<li><a href="https://click.palletsprojects.com/" target="_blank" rel="noopener"><strong>Click</strong></a> — command-line interface</li>
<li><a href="https://getbootstrap.com/" target="_blank" rel="noopener"><strong>Bootstrap 5</strong></a> — responsive UI</li>
<li><a href="https://icons.getbootstrap.com/" target="_blank" rel="noopener"><strong>Bootstrap Icons</strong></a> — interface icons</li>
</ul>
</div>
<div class="content-section">
<h3>✍️ Authors</h3>
<ul>
<li><strong>Mathew Guest</strong> — creator and developer</li>
<li><strong>🤖 Claude</strong> (Anthropic) — AI co-author</li>
</ul>
</div>
<div class="content-section">
<h3>📂 Source Code</h3>
<p>
The source code for this project is available on GitHub:<br>
<a href="https://github.com/mathewguest/wordsearch" target="_blank" rel="noopener">
<i class="bi bi-github"></i> github.com/mathewguest/wordsearch
</a>
</p>
</div>
<div class="content-section">
<h3>🎬 Demo Video</h3>
<p>
Watch a video showing off Claude Code building this project:<br>
<a href="https://youtu.be/3Cr4GnvK7co" target="_blank" rel="noopener">
<i class="bi bi-youtube"></i> Watch on YouTube
</a>
</p>
</div>
{% end %}