Skip to content

Commit

Permalink
feature(main): change static page to jekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
developer-account committed Jul 3, 2024
1 parent e808a1a commit ab3b348
Show file tree
Hide file tree
Showing 63 changed files with 848 additions and 6,830 deletions.
Empty file removed .nojekyll
Empty file.
5 changes: 5 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
permalink: /404.html
layout: default
---

<style type="text/css" media="screen">
.container {
margin: 10px auto;
Expand Down
35 changes: 35 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
# gem "jekyll", "~> 4.3.3"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.5"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
gem "github-pages", "~> 228",group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
end

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
platforms :mingw, :x64_mingw, :mswin, :jruby do
gem "tzinfo", ">= 1", "< 3"
gem "tzinfo-data"
end

# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]

# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
# do not have a Java counterpart.
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

gem "webrick", "~> 1.8"
51 changes: 51 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
#
# If you need help with YAML syntax, here are some quick references for you:
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
# https://learnxinyminutes.com/docs/yaml/
#
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.

title: 네이버광고 전환분석 가이드
description: >- # this means to ignore newlines until "baseurl:"
conversion script install guide
wcs.trans
baseurl: "/conversion-tracking" # the subpath of your site, e.g. /blog
url: "https://naver.github.io" # the base hostname & protocol for your site, e.g. http://example.com
github_username: NAVER-ConversionTracking

# Build settings
remote_theme: sighingnow/jekyll-gitbook
plugins:
- jekyll-feed

markdown: kramdown
kramdown:
auto_ids: true
input: GFM
toc_levels: 1..6
syntax_highlighter: rouge

syntax_highlighter_style: github

toc:
enabled: true
h_min: 1 # default: 1
h_max: 3 # default: 6
collections:
pages:
sort_by: lesson
output: true
permalink: /:collection/:path/
28 changes: 28 additions & 0 deletions _includes/gitbook-sharing.json.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
"sharing": {
"facebook": false,
"google": false,
"github": true,
{% if site.github_username %}
"github_link": "https://github.com/{{ site.github_username }}",
{% else %}
"github_link": "https://github.com",
{% endif %}

"telegram": false,
"telegram_link": "https://t.me",

"instapaper": false,

"twitter": false,
{% if site.twitter_username %}
"twitter_link": "https://twitter.com/{{ site.twitter_username }}",
{% endif %}

"vk": false,

"weibo": false,

"all": ["github"]
},
Loading

0 comments on commit ab3b348

Please sign in to comment.