镜像自地址
				https://github.com/sammy-ette/Hilbish
				已同步 2025-08-10 02:52:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			79 行
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			79 行
		
	
	
		
			2.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <head>
 | |
| 	{{ $title := print .Title " — " .Site.Title }}
 | |
| 	{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
 | |
| 	<title>{{ $title }}</title>
 | |
| 	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
 | |
| 	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
 | |
| 	
 | |
| 	<meta name="theme-color" content="#ff89dd">
 | |
| 	<meta content="/Hilbish/hilbish-flower.png" property="og:image" />
 | |
| 
 | |
| 	<meta property="og:site_name" content="Hilbish" />
 | |
| 	<meta content="{{ $title }}" property="og:title" />
 | |
| 	<meta content="{{if .Description}}{{ .Description }}{{ else }}{{ .Summary }}{{ end }}" property="og:description" />
 | |
| 	<meta content="{{if .Description}}{{ .Description }}{{ else }}{{ .Summary }}{{ end }}" name="description" />
 | |
| 	
 | |
| 	<meta name="revisit-after" content="2 days">
 | |
| 	<meta name="keywords" content="Lua, Hilbish, Linux, Shell">
 | |
| 	
 | |
| 	<meta property="og:locale" content="en_GB" />
 | |
| 	<link rel="canonical" href="https://rosettea.github.io/Hilbish/" />
 | |
| 	<meta property="og:url" content="https://rosettea.github.io/Hilbish/" />
 | |
| 
 | |
| 	<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
 | |
| 	<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
 | |
| 	<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
 | |
| 	{{ $syntax := resources.Get "css/syntax.css" | resources.Minify | resources.Fingerprint }}
 | |
| 	<link rel="stylesheet" href="{{ $syntax.RelPermalink }}" integrity="{{ $syntax.Data.Integrity }}">
 | |
| 
 | |
| 	</link>
 | |
| 	<style>
 | |
| 	.heading > .heading-link {
 | |
| 		opacity: 0
 | |
| 	}
 | |
| 
 | |
| 	.heading:hover > .heading-link {
 | |
| 		visibility: visible;
 | |
| 		opacity: 1;
 | |
| 		transition: all .1s ease-in;
 | |
| 	}
 | |
| 
 | |
| 	@keyframes highlight {
 | |
| 		0% {
 | |
| 			background: none
 | |
| 		}
 | |
| 		50% {
 | |
| 			background: #fff2cf;
 | |
| 		}
 | |
| 		100% {
 | |
| 			background: none;
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	div:target {
 | |
| 		animation: highlight 1.2s;
 | |
| 		animation-timing-function: cubic-bezier(1,-0.02,.45,.89);
 | |
| 	}
 | |
| 
 | |
| 	table {
 | |
| 		border-width: 1px;
 | |
| 		border-style: solid;
 | |
| 		border-color: #565c64;;
 | |
| 		border-collapse: collapse;
 | |
| 		margin-bottom: 12px;
 | |
| 	}
 | |
| 
 | |
| 	table td {
 | |
| 		padding: 5px;
 | |
| 	}
 | |
| 
 | |
| 	table tr {
 | |
| 		border-width: 1px;
 | |
| 	}
 | |
| 
 | |
| 	thead {
 | |
| 		display: none;
 | |
| 	}
 | |
| 	</style>
 | |
| </head>
 |