Skip to content
Snippets Groups Projects
Commit 3b0bcf64 authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Added `target="_parent"` to the links that should escape the frame

parent 74fa5f7e
No related branches found
No related tags found
No related merge requests found
......@@ -63,6 +63,18 @@ It should contain the following header:
Don't forget to save and commit the file.
### Having links to external sites in the menu
There is a special layout type, called `external`. For example, to have a link redirecting you to google.com website, you can create a post with the following contents:
```
layout: external
redirect_to: https://www.google.com
title: Title in menu
order: 4
```
### Customise images in the header
Create a folder in `assets/banners` directory, with `banner.svg`, `logos.svg` and `motto.svg` files (for reference, consult `assets/banners/frozen` directory. Do not exceed image dimensions). Update `_config.yml` file with the name of directory you created for the images.
......
<html>
<head>
<meta charset="utf-8">
{% if page.redirect_to %}
<meta http-equiv="Refresh" content="0; url={{page.redirect_to}}" />
{% endif %}
</head>
</html>
\ No newline at end of file
......@@ -2,7 +2,7 @@
Gem::Specification.new do |spec|
spec.name = "jekyll-theme-lcsb-default"
spec.version = "0.2.13"
spec.version = "0.2.14"
spec.authors = ["Trefex", "jaceklebioda_lux"]
spec.email = ["lcsb-sysadmins@uni.lu"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment