mirror of
https://github.com/ivuorinen/homebrew-tap.git
synced 2026-02-05 13:45:58 +00:00
- Add formula parser with Ruby AST parsing - Add GitHub Actions CI/CD workflows - Add Jekyll-based documentation site - Add RuboCop and Dependabot configuration - Add example formula for demonstration
35 lines
969 B
HTML
35 lines
969 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ page.title | default: site.title }}</title>
|
|
{% seo %}
|
|
<link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url }}">
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<div class="wrapper">
|
|
<h1><a href="{{ '/' | relative_url }}">{{ site.title }}</a></h1>
|
|
<nav>
|
|
<a href="{{ '/' | relative_url }}">Home</a>
|
|
<a href="{{ '/formulae' | relative_url }}">Formulae</a>
|
|
<a href="{{ site.repository | prepend: 'https://github.com/' }}">GitHub</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="page-content">
|
|
<div class="wrapper">
|
|
{{ content }}
|
|
</div>
|
|
</main>
|
|
|
|
<footer class="site-footer">
|
|
<div class="wrapper">
|
|
<p>© {{ 'now' | date: '%Y' }} {{ site.title }}. Built with Jekyll and GitHub Pages.</p>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|