|
3 | 3 |
|
4 | 4 | <head> |
5 | 5 | <meta charset="UTF-8"> |
6 | | - <title>Cheat Sheets</title> |
| 6 | + <title>Programming Cheat Sheets - Python, Docker, Linux & More | Developer Reference</title> |
7 | 7 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> |
8 | | - <meta name="description" content="Description"> |
| 8 | + <meta name="description" content="Comprehensive programming cheat sheets for developers. Quick reference guides for Python, Docker, Linux, algorithmic concepts, and more. Boost your coding productivity with practical tips and tricks."> |
| 9 | + <meta name="keywords" content="cheat sheets, programming, python, docker, linux, algorithms, developer, coding, reference, tutorial, guide"> |
| 10 | + <meta name="author" content="Greums"> |
| 11 | + <meta name="robots" content="index, follow"> |
9 | 12 | <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0"> |
| 13 | + |
| 14 | + <!-- Open Graph / Facebook --> |
| 15 | + <meta property="og:type" content="website"> |
| 16 | + <meta property="og:url" content="http://keep.greums.xyz/"> |
| 17 | + <meta property="og:title" content="Programming Cheat Sheets - Python, Docker, Linux & More | Developer Reference"> |
| 18 | + <meta property="og:description" content="Comprehensive programming cheat sheets for developers. Quick reference guides for Python, Docker, Linux, algorithmic concepts, and more."> |
| 19 | + <meta property="og:image" content="https://images.unsplash.com/photo-1481627834876-b7833e8f5570?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80"> |
| 20 | + |
| 21 | + <!-- Twitter --> |
| 22 | + <meta property="twitter:card" content="summary_large_image"> |
| 23 | + <meta property="twitter:url" content="http://keep.greums.xyz/"> |
| 24 | + <meta property="twitter:title" content="Programming Cheat Sheets - Python, Docker, Linux & More | Developer Reference"> |
| 25 | + <meta property="twitter:description" content="Comprehensive programming cheat sheets for developers. Quick reference guides for Python, Docker, Linux, algorithmic concepts, and more."> |
| 26 | + <meta property="twitter:image" content="https://images.unsplash.com/photo-1481627834876-b7833e8f5570?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80"> |
| 27 | + |
| 28 | + <!-- Canonical URL --> |
| 29 | + <link rel="canonical" href="http://keep.greums.xyz/"> |
| 30 | + |
| 31 | + <!-- Theme color --> |
| 32 | + <meta name="theme-color" content="#404040"> |
| 33 | + |
| 34 | + <!-- CSS --> |
10 | 35 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css"> |
11 | 36 | <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/sidebar.min.css" /> |
| 37 | + |
| 38 | + <!-- Structured Data --> |
| 39 | + <script type="application/ld+json"> |
| 40 | + { |
| 41 | + "@context": "https://schema.org", |
| 42 | + "@type": "TechArticle", |
| 43 | + "headline": "Programming Cheat Sheets - Developer Reference Guide", |
| 44 | + "description": "Comprehensive programming cheat sheets for developers. Quick reference guides for Python, Docker, Linux, algorithmic concepts, and more.", |
| 45 | + "author": { |
| 46 | + "@type": "Person", |
| 47 | + "name": "Greums" |
| 48 | + }, |
| 49 | + "publisher": { |
| 50 | + "@type": "Organization", |
| 51 | + "name": "Greums Cheat Sheets" |
| 52 | + }, |
| 53 | + "url": "http://keep.greums.xyz/", |
| 54 | + "dateModified": "2025-09-27", |
| 55 | + "mainEntityOfPage": { |
| 56 | + "@type": "WebPage", |
| 57 | + "@id": "http://keep.greums.xyz/" |
| 58 | + } |
| 59 | + } |
| 60 | + </script> |
12 | 61 | </head> |
13 | 62 |
|
14 | 63 | <body> |
15 | 64 | <div id="app"></div> |
16 | 65 | <script> |
17 | 66 | window.$docsify = { |
18 | | - name: 'Cheat Sheets', |
| 67 | + name: 'Programming Cheat Sheets', |
19 | 68 | repo: 'https://github.com/greums/cheat-sheets', |
20 | 69 | themeColor: '#404040', |
21 | 70 | loadSidebar: true, |
22 | | - subMaxLevel: 2, |
| 71 | + subMaxLevel: 3, |
| 72 | + auto2top: true, |
| 73 | + coverpage: false, |
| 74 | + maxLevel: 4, |
| 75 | + loadNavbar: false, |
| 76 | + mergeNavbar: true, |
| 77 | + executeScript: true, |
| 78 | + noEmoji: false, |
| 79 | + search: { |
| 80 | + noData: 'No results!', |
| 81 | + paths: 'auto', |
| 82 | + placeholder: 'Search cheat sheets...', |
| 83 | + pathNamespaces: /^(\/(zh-cn|ru))?(\/(v1|v2))?/ |
| 84 | + }, |
| 85 | + copyCode: { |
| 86 | + buttonText: 'Copy to clipboard', |
| 87 | + errorText: 'Error', |
| 88 | + successText: 'Copied' |
| 89 | + }, |
| 90 | + pagination: { |
| 91 | + previousText: 'Previous', |
| 92 | + nextText: 'Next', |
| 93 | + crossChapter: true, |
| 94 | + crossChapterText: true, |
| 95 | + } |
23 | 96 | } |
24 | 97 | </script> |
25 | 98 | </body> |
|
36 | 109 | <script src="https://unpkg.com/docsify-copy-code"></script> |
37 | 110 | <script src="https://cdn.jsdelivr.net/npm/docsify-sidebar-collapse/dist/docsify-sidebar-collapse.min.js"></script> |
38 | 111 | <script src="https://unpkg.com/docsify/lib/plugins/search.min.js"></script> |
| 112 | + <script src="https://unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script> |
| 113 | + <script src="https://unpkg.com/docsify/lib/plugins/zoom-image.js"></script> |
39 | 114 | <!-- Google Analytics --> |
40 | 115 | <script async src="https://www.googletagmanager.com/gtag/js?id=G-TGLCCVZB2C"></script> |
41 | 116 | <script> |
|
0 commit comments