importsort-d

Sort and format imports in DLang
Log | Files | Refs | README

commit 8c907f39c3057de64423bc7c59f71ef5ce3c2c0a
parent 6912279166798d3abae8c9aad647844590a0ac27
Author: Friedel Schoen <[email protected]>
Date:   Mon, 24 Oct 2022 00:07:38 +0200

modifying layout, removing weird js-hack

Diffstat:
A_layouts/default.html | 85+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mindex.md | 10+---------
2 files changed, 86 insertions(+), 9 deletions(-)

diff --git a/_layouts/default.html b/_layouts/default.html @@ -0,0 +1,84 @@ +<!DOCTYPE html> +<html lang="{{ site.lang | default: " en-US" }}"> + +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + {% seo %} + <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}"> + <!--[if lt IE 9]> + <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> + <![endif]--> + {% include head-custom.html %} + + <style> + header { + width: 360px; + } + + header .downloads { + width: 360px; + } + + .wrapper { + width: 950px; + } + </style> +</head> + +<body> + <div class="wrapper"> + <header> + <h1><a href="{{ '/' | absolute_url }}">{{ site.title | default: site.github.repository_name }}</a></h1> + + {% if site.logo %} + <img src="{{ site.logo | relative_url }}" alt="Logo" /> + {% endif %} + + <p>{{ site.description | default: site.github.project_tagline }}</p> + + <p> + <a href="https://code.dlang.org/packages/importsort-d/"> + <img src="https://img.shields.io/dub/v/importsort-d?color=b03931" /></a> + <img src="https://img.shields.io/dub/l/importsort-d" /> + <img src="https://img.shields.io/github/commit-activity/m/friedelschoen/importsort-d" /> + </p> + + {% if site.github.is_user_page %} + <p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p> + {% endif %} + + {% if site.show_downloads %} + <ul class="downloads"> + <li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li> + <li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li> + <li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li> + <li><a href="https://code.dlang.org/packages/importsort-d/">View On <strong>DUB.pm</strong></a></li> + </ul> + {% endif %} + + <ul> + <li><a href='https://importsort-d.dpldocs.info/'>Documentation</a></li> + <li><a href='changelog'>Changelog</a></li> + <li><a href='add-to-editor'>Add to your Editor</a></li> + </ul> + </header> + <section> + + {{ content }} + + </section> + <footer> + {% if site.github.is_project_page %} + <p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p> + {% endif %} + <p><small>Hosted on GitHub Pages &mdash; Theme by <a + href="https://github.com/orderedlist">orderedlist</a></small></p> + </footer> + </div> + <script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script> +</body> + +</html> +\ No newline at end of file diff --git a/index.md b/index.md @@ -1,18 +1,10 @@ -<script type="text/javascript"> - document.getElementsByTagName("header")[0].innerHTML += ` - <ul> - <li><a href='changelog'>Changelog</a></li> - <li><a href='add-to-editor'>Add to your Editor</a></li> - </ul>`; -</script> - # Sort Imports for [D](https://dlang.org/) `sortimport-d` can sort your dozens of `import`'s in a `.d` file (no matter where) ## Installation -## Prerequisite +### Prerequisite - [`dub`](https://dub.pm/)