Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New AKS Blog - Initial commit #4193

Merged
merged 27 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
d805218
Create jekyll-gh-pages.yml
chzbrgr71 Apr 2, 2024
31cbb89
Added GitHub Pages Blog site and Action
chzbrgr71 Apr 2, 2024
d27debf
fixing linkedin social share
pauldotyu Apr 2, 2024
7d04217
footer links
pauldotyu Apr 2, 2024
b99e655
fix typo
pauldotyu Apr 2, 2024
bb6ebd9
add browse all categories link
pauldotyu Apr 2, 2024
742e623
fix favicon urls
pauldotyu Apr 2, 2024
3bd49bd
youtube embed via helper
pauldotyu Apr 2, 2024
4dd9a66
polishing side nav
pauldotyu Apr 3, 2024
c1f0cc2
homepage title
pauldotyu Apr 3, 2024
4132f3b
more nav refinement
pauldotyu Apr 3, 2024
00d2e4d
tighten up post metadata spacing and fonts
pauldotyu Apr 3, 2024
534ec87
removing site url to fix social posts
pauldotyu Apr 3, 2024
1e84674
fix external link targets
pauldotyu Apr 3, 2024
acd157b
Merge pull request #11 from pauldotyu/master
chzbrgr71 Apr 3, 2024
51ac681
adding authors
pauldotyu Apr 3, 2024
769e3b9
Merge pull request #12 from pauldotyu/master
chzbrgr71 Apr 3, 2024
659fc57
testing splash
pauldotyu Apr 3, 2024
c986437
Merge pull request #13 from pauldotyu/master
chzbrgr71 Apr 3, 2024
49ef5e0
cleaned up posts
chzbrgr71 Apr 3, 2024
36b2a23
fixed typo
chzbrgr71 Apr 3, 2024
29f6d04
categories must be lower case
chzbrgr71 Apr 3, 2024
b4cc8f3
adding category landing page and taxonomy description
pauldotyu Apr 8, 2024
ef20a19
updated category desc
chzbrgr71 Apr 8, 2024
46160b4
cleaned up sample posts and authors
chzbrgr71 Apr 10, 2024
c8ceaf7
fixed typo
chzbrgr71 Apr 10, 2024
03b9d26
removed latin phrases from splash sample page
chzbrgr71 Apr 12, 2024
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: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
with:
check_filenames: true
skip: ./.git,./.github/workflows/codespell.yml,.git,*.png,*.jpg,*.svg,*.sum,./vhd-notes/*
ignore_words_list: AKS,aks,nd,aci
ignore_words_list: AKS,aks,nd,aci,rouge
51 changes: 51 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./blog
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
5 changes: 5 additions & 0 deletions blog/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
_site
.sass-cache
.jekyll-cache
.jekyll-metadata
vendor
37 changes: 37 additions & 0 deletions blog/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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", "~> 3.9.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", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
gem "jekyll-target-blank", "~> 2.0", ">= 2.0.2"
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 "github-pages", group: :jekyll_plugins
gem "jekyll-include-cache", group: :jekyll_plugins
gem "webrick", "~> 1.8", ">= 1.8.1"
Loading
Loading