Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ _site/
vendor/
_config-dev.yml
.DS_Store
.sass-cache
_site_*
6 changes: 1 addition & 5 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,7 @@ plugins:
- jekyll-feed
- jekyll-remote-theme

# keep below 2.5.0 b/c 2.5.1 removed bootstrap iso css
# which either breaks the tabs from the download section
# or the dark mode, see
# https://github.com/sylhare/Type-on-Strap/pull/549
remote_theme: sylhare/type-on-strap@v2.5.0
remote_theme: sylhare/type-on-strap

# Theme settings
color_theme: auto
Expand Down
9 changes: 6 additions & 3 deletions _includes/default/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Source+Code+Pro:wght@400;600&family=JetBrains+Mono:wght@600;700&family=Raleway:wght@900&display=swap" rel="stylesheet">

{% if site.bootstrap %}
<!-- Bootstrap 4.6.2 CSS CDN - loaded in a @layer so theme styles always take precedence -->
<style>@layer reset, bootstrap;</style>
<style>@import url("https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css") layer(bootstrap);</style>
{% endif %}

<!-- CSS -->
<link rel="stylesheet" href="{{ '/assets/css/main.css?v=' | append: site.site_version | relative_url }}">

Expand All @@ -44,9 +50,6 @@
<link rel="alternate" type="application/rss+xml" title="{{ site.title | default: 'SuperCollider latests posts' }}" href="{{ 'feed.xml' | absolute_url }}"/>

{% if site.bootstrap %}
<!-- Bootstrap-4.1.3 isolation CSS -->
<link rel="stylesheet" type="text/css" href="{{ '/assets/css/vendor/bootstrap-iso.min.css' | relative_url }}">

<!-- see https://getbootstrap.com/docs/4.6/getting-started/introduction/#separate -->
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
Expand Down
Loading