Skip to content

Commit 8c26ced

Browse files
committed
Replace composed.blog with explodinglabs.github.io
1 parent aea036d commit 8c26ced

8 files changed

+14
-11
lines changed

CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
composed.blog
1+
explodinglabs.github.io

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
1-
<img style="margin: 0 auto;" src="https://github.com/explodinglabs/composed.blog/blob/main/docs/assets/logo.png?raw=true" />
1+
<img style="margin: 0 auto;" src="https://github.com/explodinglabs/explodinglabs.github.io/blob/main/docs/assets/logo.png?raw=true" />
22

3-
See [Install Jekyll on a Mac](https://composed.blog/install-jekyll-on-mac).
3+
See [Install Jekyll on a Mac](https://explodinglabs.github.io/install-jekyll-on-mac).
44

55
To bring up Jekyll locally:
6+
67
```sh
78
(cd docs && bundle exec jekyll serve --host 0.0.0.0 --livereload)
89
```
910

1011
To remove a post, add the following to the its meta section:
12+
1113
```yaml
1214
sitemap: false
1315
```
16+
1417
This removes the post from the sitemap, and also the post listing because we
1518
have a condition checking for that.

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ plugins:
1111
- jekyll-last-modified-at
1212
title: Composed
1313
tagline: A programming blog
14-
url: "https://composed.blog" # the base hostname & protocol for your site
14+
url: "https://explodinglabs.github.io" # the base hostname & protocol for your site

docs/_layouts/all.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
<meta property="og:title" content="{{ page.title }}" />
1111
<meta property="og:type" content="website" />
12-
<meta property="og:url" content="https://composed.blog/" />
13-
<meta property="og:image" content="https://composed.blog/assets/opengraph.png" />
14-
<meta property="og:image:secure_url" content="https://composed.blog/assets/opengraph.png" />
12+
<meta property="og:url" content="https://explodinglabs.github.io/" />
13+
<meta property="og:image" content="https://explodinglabs.github.io/assets/opengraph.png" />
14+
<meta property="og:image:secure_url" content="https://explodinglabs.github.io/assets/opengraph.png" />
1515
<meta property="og:image:type" content="image/png" />
1616
<meta property="og:image:width" content="1200" />
1717
<meta property="og:image:height" content="630" />

docs/_layouts/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1>{{ page.title }}</h1>
1717
{% if updated and updated != created %}
1818
Updated <time>{{ updated }}</time>.
1919
{% endif %}
20-
<a href="https://github.com/explodinglabs/composed.blog/edit/main/docs/{{page.path}}">
20+
<a href="https://github.com/explodinglabs/explodinglabs.github.io/edit/main/docs/{{page.path}}">
2121
&#9998;
2222
</a>
2323
</time>

docs/_posts/2016-09-01-first-steps-with-micropython.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ baudrate with the `-b` option, the prompt appears (after pressing enter).
9292

9393
## Now see
9494

95-
[How to copy files to a Micropython device](https://composed.blog/micropython/mipy)
95+
[How to copy files to a Micropython device](https://explodinglabs.github.io/micropython/mipy)

docs/_posts/2021-08-26-install-jekyll-on-a-mac.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ gem install --user-install bundler jekyll
2929

3030
## For each site
3131

32-
Add a `Gemfile` with dependencies (see [mine](https://github.com/explodinglabs/composed.blog/blob/main/Gemfile)).
32+
Add a `Gemfile` with dependencies (see [mine](https://github.com/explodinglabs/explodinglabs.github.io/blob/main/Gemfile)).
3333

3434
```sh
3535
bundle install

docs/_posts/python/2018-10-01-release-new-version-to-pypi.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pytest --cov-branch --cov-report term-missing --cov mypackage tests
6767
coveralls
6868
```
6969

70-
[Build readthedocs](https://composed.blog/trigger-rtd-build) if there were any
70+
[Build readthedocs](https://explodinglabs.github.io/trigger-rtd-build) if there were any
7171
documentation changes.
7272

7373
Update related blog posts/Stack Overflow posts.

0 commit comments

Comments
 (0)