Skip to content

Commit

Permalink
copy over the old stuff + configure
Browse files Browse the repository at this point in the history
  • Loading branch information
Lamby777 committed Sep 4, 2024
1 parent 8acbdab commit 9e752e1
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 12 deletions.
24 changes: 12 additions & 12 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,32 +14,32 @@ timezone:
# jekyll-seo-tag settings › https://github.com/jekyll/jekyll-seo-tag/blob/master/docs/usage.md
# ↓ --------------------------

title: Chirpy # the main title
title: Cherry's Cafe

tagline: A text-focused Jekyll theme # it will display as the subtitle
tagline: Just another tech/music nerd blog on the internet.

description: >- # used by seo meta and the atom feed
A minimal, responsive and feature-rich Jekyll theme for technical writing.
Just another tech/music nerd blog on the internet.
# Fill in the protocol & hostname for your site.
# E.g. 'https://username.github.io', note that it does not end with a '/'.
url: ""
url: "https://blog.sparklet.org"

github:
username: github_username # change to your GitHub username
username: Lamby777 # change to your GitHub username

twitter:
username: twitter_username # change to your Twitter username
# twitter:
# username: twitter_username # change to your Twitter username

social:
# Change to your full name.
# It will be displayed as the default author of the posts and the copyright owner in the Footer
name: your_full_name
email: [email protected] # change to your email address
name: Cherry
email: [email protected] # change to your email address
links:
# The first element serves as the copyright owner's link
- https://twitter.com/username # change to your Twitter homepage
- https://github.com/username # change to your GitHub homepage
# - https://twitter.com/username # change to your Twitter homepage
- https://github.com/Lamby777 # change to your GitHub homepage
# Uncomment below to add more social links
# - https://www.facebook.com/username
# - https://www.linkedin.com/in/username
Expand Down Expand Up @@ -98,7 +98,7 @@ theme_mode: # [light | dark]
cdn:

# the avatar on sidebar, support local or CORS resources
avatar:
avatar: "https://avatars.githubusercontent.com/u/35111165?v=4"

# The URL of the site-wide social preview image used in SEO `og:image` meta tag.
# It can be overridden by a customized `page.image` in front matter.
Expand Down
30 changes: 30 additions & 0 deletions _posts/2024-09-04-welcome-to-jekyll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
layout: post
title: "Welcome to Jekyll!"
date: 2024-09-04 01:09:49 -0400
categories: jekyll update
---

You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.

Jekyll requires blog post files to be named according to the following format:

`YEAR-MONTH-DAY-title.MARKUP`

Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.

Jekyll also offers powerful support for code snippets:

```ruby
def print_hi(name)
puts "Hi, #{name}"
end
print_hi('Tom')
#=> prints 'Hi, Tom' to STDOUT.
```

Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].

[jekyll-docs]: https://jekyllrb.com/docs/home
[jekyll-gh]: https://github.com/jekyll/jekyll
[jekyll-talk]: https://talk.jekyllrb.com/
4 changes: 4 additions & 0 deletions run
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

# docker run --name sparklet-blog --volume="$PWD:/srv/jekyll" -p 3000:4000 -it jekyll/jekyll bundle install bundle exec jekyll build
docker run -p 4000:4000 -v "$(pwd)":/site bretfisher/jekyll-serve

0 comments on commit 9e752e1

Please sign in to comment.