Create SEO_PROMPT.txt
· 1 year ago
af17f17dfc0c407cd08d4f1fa05c3e7fdc03cdcd
Parent:
6c9209a05
1 file changed +85 −0
- SEO_PROMPT.txt +85 −0
Diff
--- /dev/null +++ b/SEO_PROMPT.txt @@ -0,0 +1,85 @@ +SEO Cross-Linking Instructions for Cheatsheet HTML Pages + +OBJECTIVE: +Create href links between related cheatsheet HTML pages to improve SEO and discovery by establishing internal link structure that helps users find complementary content. + +PROCESS: + +1. ANALYZE & GROUP PAGES + - Scan all HTML filenames in the root directory + - Group pages by related subject categories (e.g., Bitcoin/crypto, martial arts, AI/tech, philosophy/religion, programming/development) + - Identify 3-6 pages per logical grouping based on content themes + +2. READ & UNDERSTAND CONTENT + - Read each set of related pages to understand their content and structure + - Identify the best placement for cross-links (typically footer sections) + - Look for existing link patterns and styling to maintain consistency + +3. ADD CROSS-LINKS + - Insert links in footer or resource sections using Bootstrap styling + - Use relative URLs (e.g., "page.html") not absolute URLs + - Include appropriate Bootstrap icons for visual appeal + - Add descriptive title attributes for accessibility + - Use consistent link attributes: rel="noopener noreferrer" target="_blank" + +4. LINK PLACEMENT PATTERN + Add a new section above existing footer links: + ```html + <div class="mb-3"> + <strong>Related [Category Name]:</strong><br> + <a class="mx-2" href="related-page.html" rel="noopener noreferrer" target="_blank" title="Descriptive Title"> + <i class="bi bi-[appropriate-icon]"></i> + Short Link Text + </a> + <!-- Additional related links --> + </div> + ``` + +5. ICON SUGGESTIONS + - Bitcoin/Crypto: bi-currency-bitcoin, bi-wallet, bi-shield-check + - Martial Arts: bi-person-arms-up, bi-trophy, bi-award + - AI/Tech: bi-cpu-fill, bi-shield-exclamation, bi-diagram-3-fill, bi-brain + - Philosophy/Religion: bi-yin-yang, bi-star-of-david, bi-tree, bi-lightbulb + - Programming: bi-git, bi-hash, bi-braces, bi-file-code, bi-database, bi-building + +6. COMMIT STRATEGY + - Work on one category group at a time + - Git commit each completed category with descriptive commit message + - Include all modified files in each category commit + - Use consistent commit message format with 🤖 Generated with Claude Code footer + +7. QUALITY STANDARDS + - Ensure links are bidirectional (if A links to B, B should link to A) + - Maintain consistent styling with existing Bootstrap classes + - Test that all links work and point to existing files + - Keep link text concise but descriptive + - Ensure links don't disrupt main content flow + +8. EXAMPLE CATEGORIES TO CONSIDER + - Financial/Economic: Bitcoin, cryptocurrency, economics, capitalism + - Technical Skills: Programming languages, frameworks, tools, databases + - Physical Arts: Martial arts, sports, physical training + - Mental/Spiritual: Philosophy, religion, meditation, rationality + - Professional: Leadership, architecture, development methodologies + +SAMPLE COMMIT MESSAGE FORMAT: +``` +Add cross-links between [category] related cheatsheets + +Added reciprocal footer links between: +- page1.html: Description with links to page2, page3 +- page2.html: Description with links to page1, page3 +- page3.html: Description with links to page1, page2 + +Links use appropriate Bootstrap icons and consistent styling to help users discover related [category] content. + +🤖 Generated with [Claude Code](https://claude.ai/code) + +Co-Authored-By: Claude <[email protected]> +``` + +MAINTENANCE NOTES: +- When adding new cheatsheet pages, review existing categories to determine appropriate cross-links +- Periodically audit link accuracy and remove broken internal links +- Consider creating thematic landing pages for major categories if the collection grows large +- Monitor SEO impact through internal linking reports and user navigation patterns \ No newline at end of file