diff --git a/.gitignore b/.gitignore index 06a11abd74..a78894937d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,7 @@ _site node_modules Gemfile.lock *.gem +.idea +.DS_Store +.jekyll-cache +vendor/bundle diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000..7f6591735c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM ruby:3.3.4-bookworm + +# Install dependencies +RUN apt-get update && apt-get install -y \ + build-essential \ + zlib1g-dev \ + && rm -rf /var/lib/apt/lists/* + +# Install Jekyll 3.10.0 and Bundler +RUN gem install jekyll -v '3.10.0' +RUN gem install bundler -v '2.3.25' + +# Set the working directory +WORKDIR /srv/jekyll diff --git a/README.md b/README.md index 4cd273bddf..e6edd85067 100644 --- a/README.md +++ b/README.md @@ -1,154 +1 @@ -# [Start Bootstrap - Clean Blog Jekyll](https://startbootstrap.com/themes/clean-blog-jekyll/) - Official Jekyll Version - -[Clean Blog Jekyll](https://startbootstrap.com/themes/clean-blog-jekyll/) is a stylish, responsive blog theme for [Bootstrap](https://getbootstrap.com/) created by [Start Bootstrap](https://startbootstrap.com/). This theme features a blog homepage, about page, contact page, and an example post page along with a working contact form powered by [Formspree](https://formspree.io/). - -This repository holds the official Jekyll version of the Clean Blog theme on Start Bootstrap! - -## Preview - -[![Clean Blog (Jekyll) Preview](https://startbootstrap.com/assets/img/screenshots/themes/clean-blog-jekyll.png)](http://StartBootstrap.github.io/startbootstrap-clean-blog-jekyll/) - -**[View Live Preview](http://StartBootstrap.github.io/startbootstrap-clean-blog-jekyll/)** - -## Installation & Setup - -### Using RubyGems - -When installing the theme using RubyGems, demo images, posts, and pages are not included. Follow the instructions below for complete setup. - -1. (Optional) Create a new Jekyll site: `jekyll new my-site` -2. Replace the current theme in your `Gemfile` with `gem "jekyll-theme-clean-blog"`. -3. Install the theme (run the command inside your site directory): `bundle install` -4. Replace the current theme in your `_config.yml` file with `theme: jekyll-theme-clean-blog`. -5. Build your site: `bundle exec jekyll serve` - -Assuming there are no errors and the site is building properly, follow these steps next: - -1. Create the following pages if they do not exist already (or change the extension of existing markdown files from `.md` to `.html`): - - * `index.html` - set to `layout: home` - * `about.html` - set to `layout: page` - * `contact.html` - set to `layout: page` - * `posts/index.html` - set to `layout: page` (you will also need to create a `posts` directory) - -2. Configure the `index.html` front matter. Example: - - ```markdown - --- - layout: home - background: '/PATH_TO_IMAGE' - --- - ``` - -3. Configure the `about.html`, `contact.html`, and `posts/index.html` front matter. Example: - - ```markdown - --- - layout: page - title: Page Title - description: This is the page description. - background: '/PATH_TO_IMAGE' - --- - ``` - -4. For each post in the `_posts` directory, update the front matter. Example: - - ```markdown - --- - layout: post - title: "Post Title" - subtitle: "This is the post subtitle." - date: YYYY-MM-DD HH:MM:SS - background: '/PATH_TO_IMAGE' - --- - ``` - - For reference, look at the [demo repository](https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll) to see how the files are set up. - -5. Add the form to the `contact.html` page. Add the following code to your `contact.html` page: - - ```html -
-
-
- - -

-
-
-
-
- - -

-
-
-
-
- - -

-
-
-
-
- - -

-
-
-
-
-
- -
-
- ``` - - Make sure you have the `email` setting in your `_config.yml` file set to a working email address! Once this is set, fill out the form and then check your email, verify the email address using the link sent to you by Formspree, and then the form will be working! - -6. Build your site: `bundle exec jekyll serve` - -### Using Core Files - -When using the core files, the demo images, posts, and pages are all included with the download. After following the instructions below, you can then go and change the content of the pages and posts. - -1. [Download](https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll/archive/master.zip) or Clone the repository. -2. Update the following configuration settings in your `_config.yml` file: - - * `baseurl` - * `url` - * `title` - * `email` (after setting this setting to a working email address, fill out the form on the contact page and send it - then check your email and verify the address and the form will send you messages when used) - * `description` - * `author` - * `twitter_username` (Optional) - * `facebook_username` (Optional) - * `github_username` (Optional) - * `linkedin_username` (Optional) - * `instagram_username` (Optional) - -3. Build your site: `bundle exec jekyll serve` - -## Bugs and Issues - -Have a bug or an issue with this template? [Open a new issue](https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll/issues) here on GitHub! - -## About - -Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects. - -* -* - -Start Bootstrap was created by and is maintained by **[David Miller](http://davidmiller.io/)**. - -* -* -* - -Start Bootstrap is based on the [Bootstrap](https://getbootstrap.com/) framework created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thorton](https://twitter.com/fat). - -## Copyright and License - -Copyright 2013-2021 Start Bootstrap LLC. Code released under the [MIT](https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll/blob/master/LICENSE) license. +Moved to [https://github.com/LiCS-KAIST/lics.kaist.ac.kr](https://github.com/LiCS-KAIST/lics.kaist.ac.kr) diff --git a/_config.yml b/_config.yml index fb6e996934..e24863c470 100644 --- a/_config.yml +++ b/_config.yml @@ -1,14 +1,14 @@ -title: Clean Blog -email: your-email@example.com -description: A Blog Theme by Start Bootstrap -author: Start Bootstrap -baseurl: "/startbootstrap-clean-blog-jekyll" -url: "https://startbootstrap.github.io" +title: Laboratory for information and Control Systems +email: +description: 정보 및 시스템 제어 연구실 +author: LiCS +baseurl: "" +url: "https://lics.kaist.ac.kr" # Social Profiles -twitter_username: SBootstrap -github_username: StartBootstrap -facebook_username: StartBootstrap +twitter_username: +github_username: +facebook_username: instagram_username: linkedin_username: @@ -23,3 +23,14 @@ plugins: - jekyll-feed - jekyll-paginate - jekyll-sitemap ## Uncomment this line to silently generate a sitemaps.org compliant sitemap for your Jekyll site + +collections: + people: + output: true + permalink: /:collection/:path/ + alumni: + output: true + permalink: /:collection/:path/ + research: + output: true + permalink: /:collection/:path/ \ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html index 7848045415..1ca3316a7c 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -10,13 +10,16 @@ - + + + + diff --git a/_includes/navbar.html b/_includes/navbar.html index c514748a08..8f7942f4d4 100644 --- a/_includes/navbar.html +++ b/_includes/navbar.html @@ -1,7 +1,10 @@