Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hlaueriksson/jekyll-url-shortener
✂️🔗 This is a template repository for making URL Shorteners with Jekyll and GitHub Pages. Create short URLs that can be easily shared, tweeted, or emailed to friends. Fork this repo to get started.
https://github.com/hlaueriksson/jekyll-url-shortener
github-pages jekyll url-shortener
Last synced: about 2 months ago
JSON representation
✂️🔗 This is a template repository for making URL Shorteners with Jekyll and GitHub Pages. Create short URLs that can be easily shared, tweeted, or emailed to friends. Fork this repo to get started.
- Host: GitHub
- URL: https://github.com/hlaueriksson/jekyll-url-shortener
- Owner: hlaueriksson
- License: mit
- Created: 2018-10-16T18:25:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-29T06:25:34.000Z (almost 2 years ago)
- Last Synced: 2023-03-24T05:19:42.705Z (almost 2 years ago)
- Topics: github-pages, jekyll, url-shortener
- Language: Ruby
- Homepage: https://hlaueriksson.github.io/jekyll-url-shortener/
- Size: 40 KB
- Stars: 38
- Watchers: 1
- Forks: 37
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jekyll URL Shortener
> :scissors: :link: This is a template repository for making URL Shorteners with Jekyll and GitHub Pages. Create short URLs that can be easily shared, tweeted, or emailed to friends. Click **Use this template** to get started.
View the URL Shortener in action:
*
Read a blog post about the URL Shortener:
*
Table of Contents:
- [Getting Started](#getting-started)
- [Domain](#domain)
- [Repository](#repository)
- [Configuration](#configuration)
- [GitHub Pages](#github-pages)
- [Links](#links)
- [Built With](#built-with)
- [Showcase](#showcase)
- [Running Jekyll locally](#running-jekyll-locally)
- [Customizations of the redirect template](#customizations-of-the-redirect-template)## Getting Started
Follow these steps to create your own URL Shortener:
1. Get a domain name
2. Configure the DNS for the domain
3. Click **Use this template** to create a repository
4. Edit the `_config.yml` file
5. Host on GitHub Pages
6. Create link pages### Domain
Get a *(preferably short)* domain name from your favorite [registrar](https://www.icann.org/en/accredited-registrars).
You probably want to use an [apex domain](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/about-custom-domains-and-github-pages#using-an-apex-domain-for-your-github-pages-site) for your URL Shortener.
Go to your DNS provider and [setup the apex domain](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site/managing-a-custom-domain-for-your-github-pages-site#configuring-an-apex-domain).
If you create DNS `A` records, point to the these GitHub IP addresses:
```
185.199.108.153
185.199.109.153
185.199.110.153
185.199.111.153
```### Repository
Creating a repository from this template:
1. Above the file list, click **Use this template** to [create a repository from this template](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-repository-from-a-template).
2. Select **Create a new repository**.I prefer to use the *domain name* as the name for the repository when I host a site on GitHub Pages.
Take the opportunity to edit the `Description` and `Website` of the repository. Also consider to add `topics` to categorize your repository.
You probably want to rewrite the content of this `README.md` file.
### Configuration
Edit the `_config.yml` file:
```yml
title: Jekyll URL Shortener
description: ✂️🔗 This is a template repository for making URL Shorteners with Jekyll and GitHub Pages. Create short URLs that can be easily shared, tweeted, or emailed to friends.
logo: /assets/img/logo.png
show_downloads: true
google_analytics:
theme: jekyll-theme-minimalpermalink: /:slug/
plugins:
- jekyll-redirect-fromgithub: [metadata]
```Change the `title` and `description` to something you like. Consider to use your own `logo` by replacing the `/assets/img/logo.png` image.
The `show_downloads` flag indicates whether to provide downloads links for the code in the repository on the site.
Set the `google_analytics` tracking code if you are interested in the website traffic.
Read more about the `theme` at
The global `permalink` for pages is set to `/:slug/`.
> Permalinks are the output path for your pages, posts, or collections. They allow you to structure the directories of your source code different from the directories in your output.
> Slugified title from the document’s filename (any character except numbers and letters is replaced as hyphen). May be overridden via the document’s `slug` front matter.
Read more about permalinks at
It is the `jekyll-redirect-from` plugin that does the redirecting from the *short link* to the *target page*.
> Sometimes, you may want to redirect a site page to a totally different website.
Read more about the plugin at
You can find more useful `plugins` to add at
### GitHub Pages
Go to the **GitHub Pages** settings for the repo: [/settings/pages](../../settings/pages)
Configure the build and deployment to [publish from a branch](https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#publishing-from-a-branch).
Set the `Source` to:
- `Deploy from a branch`
Set the `Branch` to:
- `main`
and the folder to:
- `/ (root)`
Configure a [custom domain](https://docs.github.com/en/pages/configuring-a-custom-domain-for-your-github-pages-site) for the GitHub Pages site.
Enter your domain name under `Custom domain` and click `Save`.
This will create a `CNAME` file in the repo:
```txt
example.com
```> Custom domains are stored in a `CNAME` file in the root of your repository. You can add or update your custom domain through your repository settings. You can also edit the file directly to update your custom domain.
Make sure the `Enforce HTTPS` checkbox is ticked to [secure the GitHub Pages site](https://docs.github.com/en/pages/getting-started-with-github-pages/securing-your-github-pages-site-with-https).
> HTTPS provides a layer of encryption that prevents others from snooping on or tampering with traffic to your site. When HTTPS is enforced, your site will only be served over HTTPS.
Read more about GitHub Pages at
### Links
Create a new short link by creating a [page](https://jekyllrb.com/docs/pages/).
Create the file in the root of the repository.
This repository has one example.
[`repo.md`](repo.md):
```md
---
title: Jekyll URL Shortener
redirect_to: https://github.com/hlaueriksson/jekyll-url-shortener
---
```This results in:
* "Short" link: https://hlaueriksson.github.io/jekyll-url-shortener/repo/
* Target page: https://github.com/hlaueriksson/jekyll-url-shortener
* *(Ironically the short link is 5 characters longer than the target page URL)*The `title` could be used to describe the target page. Consider to provide the *exact* title of the target page.
The `redirect_to` is the URL to the target page. This is the only [front matter](https://jekyllrb.com/docs/front-matter/) that is mandatory to make the short link work.
The file can have a `.md` (Markdown) or `.html` extension.
By default, the file name will be the *slug* of the short link. This behavior is configured in `_config.yml`.
If you want to use a different slug, set the `permalink` variable:
```md
permalink: /something/
```Take the opportunity to get a real short slug by using *emojis*:
```md
permalink: /😻/
```Find appropriate emojis to copy from
## Built With
* Jekyll:
* jekyll-theme-minimal:
* jekyll-redirect-from:
* GitHub Pages:## Showcase
| Repo | Site |
| :--- | :--- |
| https://github.com/hlaueriksson/hlaueriksson.me | https://hlaueriksson.me## Running Jekyll locally
Run:
```cmd
bundle exec jekyll serve
```Browse:
-
Documentation:
-
## Customizations of the redirect template
The redirect template has been customized in this repository.
[`_layouts/redirect.html`](_layouts/redirect.html):
```html
{% if site.google_analytics %}
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', '{{ site.google_analytics }}');
{% endif %}
Redirecting…
location="{{ page.redirect.to }}"
Redirecting…
Click here if you are not redirected.```
The Google Analytics script is added at the top of the HTML.
If the `google_analytics` tracking code is specified in `_config.yml`, then the script is rendered in the redirect template.
Documentation:
-