mirror of
https://github.com/brain-hackers/wiki.brainux.org
synced 2024-12-22 12:10:06 +09:00
Merge pull request #29 from brain-hackers/update
_posts を collections へ移動 etc.
This commit is contained in:
commit
3c2d36cce3
5
.editorconfig
Normal file
5
.editorconfig
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
root = true
|
||||||
|
|
||||||
|
[*.html]
|
||||||
|
charset = utf-8
|
||||||
|
indent_size = 2
|
@ -1 +1 @@
|
|||||||
_posts/2021-12-04-linux-package-list.md
|
collections/_linux/package-list.md
|
||||||
|
58
_config.yml
58
_config.yml
@ -62,10 +62,6 @@ atom_feed:
|
|||||||
|
|
||||||
og_image: "assets/images/og_image.jpg"
|
og_image: "assets/images/og_image.jpg"
|
||||||
|
|
||||||
stay_on_top_categories:
|
|
||||||
- 初めての方へ
|
|
||||||
- a
|
|
||||||
|
|
||||||
footer:
|
footer:
|
||||||
links:
|
links:
|
||||||
- label: "Twitter"
|
- label: "Twitter"
|
||||||
@ -82,7 +78,6 @@ defaults:
|
|||||||
# _posts
|
# _posts
|
||||||
- scope:
|
- scope:
|
||||||
path: ""
|
path: ""
|
||||||
type: posts
|
|
||||||
values:
|
values:
|
||||||
layout: single
|
layout: single
|
||||||
author_profile: false
|
author_profile: false
|
||||||
@ -90,18 +85,49 @@ defaults:
|
|||||||
show_date: false
|
show_date: false
|
||||||
toc: true
|
toc: true
|
||||||
toc_sticky: true
|
toc_sticky: true
|
||||||
# _pages
|
|
||||||
- scope:
|
|
||||||
path: "_pages"
|
|
||||||
type: pages
|
|
||||||
values:
|
|
||||||
layout: single
|
|
||||||
author_profile: false
|
|
||||||
show_date: false
|
|
||||||
|
|
||||||
category_archive:
|
|
||||||
type: liquid
|
|
||||||
path: /categories/
|
|
||||||
tag_archive:
|
tag_archive:
|
||||||
type: liquid
|
type: liquid
|
||||||
path: /tags/
|
path: /tags/
|
||||||
|
|
||||||
|
collections_dir: collections
|
||||||
|
|
||||||
|
collections_order:
|
||||||
|
- beginners
|
||||||
|
- build
|
||||||
|
- u-boot
|
||||||
|
- linux
|
||||||
|
- tips
|
||||||
|
- meta
|
||||||
|
|
||||||
|
collections:
|
||||||
|
beginners:
|
||||||
|
output: true
|
||||||
|
name: For Beginners
|
||||||
|
order:
|
||||||
|
- get-started.md
|
||||||
|
- roadmap.md
|
||||||
|
build:
|
||||||
|
output: true
|
||||||
|
name: Build
|
||||||
|
order:
|
||||||
|
- uboot.md
|
||||||
|
- linux.md
|
||||||
|
- copy-sd-card.md
|
||||||
|
u-boot:
|
||||||
|
output: true
|
||||||
|
name: U-Boot
|
||||||
|
order:
|
||||||
|
- boot-eboot.md
|
||||||
|
- boot-usb.md
|
||||||
|
linux:
|
||||||
|
output: true
|
||||||
|
name: Linux
|
||||||
|
order:
|
||||||
|
- package-list.md
|
||||||
|
tips:
|
||||||
|
output: true
|
||||||
|
name: Tips
|
||||||
|
meta:
|
||||||
|
output: true
|
||||||
|
name: Meta
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
main:
|
main:
|
||||||
- title: "初めての方へ"
|
- title: "初めての方へ"
|
||||||
url: /for%20beginners/beginner-get-started/
|
url: /beginners/get-started/
|
||||||
- title: "タグ一覧"
|
- title: "タグ一覧"
|
||||||
url: /tags/
|
url: /tags/
|
||||||
- title: "この Wiki について"
|
- title: "この Wiki について"
|
||||||
url: /about/
|
url: /about/
|
||||||
|
@ -4,88 +4,52 @@ layout: archive
|
|||||||
|
|
||||||
{{ content }}
|
{{ content }}
|
||||||
|
|
||||||
{% assign stay_on_top = site.stay_on_top_categories %}
|
|
||||||
|
|
||||||
{% assign categories_max = 0 %}
|
|
||||||
{% for category in site.categories %}
|
|
||||||
{% if category[1].size > categories_max %}
|
|
||||||
{% assign categories_max = category[1].size %}
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
<img src="/assets/images/top.jpg">
|
<img src="/assets/images/top.jpg">
|
||||||
|
|
||||||
<h3>カテゴリ一覧</h3>
|
<h3>カテゴリ一覧</h3>
|
||||||
|
|
||||||
<ul class="taxonomy__index">
|
<ul class="taxonomy__index">
|
||||||
{% comment %} Iterate the Stay-on-Top list and all categories and render matched categories {% endcomment %}
|
{% for label in site.collections_order %}
|
||||||
|
{% assign collection = site.collections | where: "label", label | first %}
|
||||||
{% for category in site.categories %}
|
|
||||||
{% for stay in stay_on_top %}
|
|
||||||
<!--<p>category[0] = `{{ category[0]}}`, stay = `{{ stay }}`</p>-->
|
|
||||||
{% if category[0] == stay %}
|
|
||||||
<li>
|
|
||||||
<!-- Stay on top -->
|
|
||||||
<a href="#{{ category[0] | slugify }}">
|
|
||||||
<strong>{{ category[0] }}</strong>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
{% comment %} Iterate the Stay-on-Top list and all categories and render unmatched categories {% endcomment %}
|
|
||||||
|
|
||||||
{% for category in site.categories %}
|
|
||||||
{% assign skip = false %}
|
|
||||||
{% for stay in stay_on_top %}
|
|
||||||
{% if category[0] == stay %}
|
|
||||||
{% assign skip = true %}
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% if skip %}
|
|
||||||
{% continue %}
|
|
||||||
{% endif %}
|
|
||||||
<li>
|
<li>
|
||||||
<a href="#{{ category[0] | slugify }}">
|
<a href="#{{ collection.label | slugify | downcase }}">
|
||||||
<strong>{{ category[0] }}</strong> <span class="taxonomy__count">{{ i }}</span>
|
<strong>{{ collection.name }}</strong> <span class="taxonomy__count">{{ i }}</span>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
{% assign entries_layout = page.entries_layout | default: 'list' %}
|
{% comment %} Make sure that all collections are listed in the _config.yml. {% endcomment %}
|
||||||
{% for category in site.categories %}
|
|
||||||
{% for stay in stay_on_top %}
|
|
||||||
{% if category[0] == stay %}
|
|
||||||
<section id="{{ category[0] | slugify | downcase }}" class="taxonomy__section">
|
|
||||||
<h2 class="archive__subtitle">{{ category[0] }}</h2>
|
|
||||||
<div class="entries-{{ entries_layout }}">
|
|
||||||
{% for post in category.last %}
|
|
||||||
{% include archive-single.html type=entries_layout %}
|
|
||||||
{% endfor %}
|
|
||||||
</div>
|
|
||||||
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
|
||||||
</section>
|
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
{% for category in site.categories %}
|
{% assign entries_layout = page.entries_layout | default: 'list' %}
|
||||||
{% assign skip = false %}
|
{% for label in site.collections_order %}
|
||||||
{% for stay in stay_on_top %}
|
{% assign collection = site.collections | where: "label", label | first %}
|
||||||
{% if category[0] == stay %}
|
<section id="{{ collection.label | slugify | downcase }}" class="taxonomy__section">
|
||||||
{% assign skip = true %}
|
<h2 class="archive__subtitle">{{ collection.name }}</h2>
|
||||||
{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
{% if skip %}
|
|
||||||
{% continue %}
|
|
||||||
{% endif %}
|
|
||||||
<section id="{{ category[0] | slugify | downcase }}" class="taxonomy__section">
|
|
||||||
<h2 class="archive__subtitle">{{ category[0] }}</h2>
|
|
||||||
<div class="entries-{{ entries_layout }}">
|
<div class="entries-{{ entries_layout }}">
|
||||||
{% for post in category.last %}
|
{% comment %} First, render ordered pages {% endcomment %}
|
||||||
{% include archive-single.html type=entries_layout %}
|
|
||||||
|
{% assign ordered_post = "" | split: "" %}
|
||||||
|
{% if collection.order %}
|
||||||
|
{% for file in collection.order %}
|
||||||
|
{% assign docpath = "_" | append: collection.label | append: "/" | append: file %}
|
||||||
|
{% assign post = collection.docs | where: "path", docpath | first %}
|
||||||
|
{% if post %}
|
||||||
|
{% include archive-single.html type=entries_layout %}
|
||||||
|
{% assign ordered_post = ordered_post | push: docpath %}
|
||||||
|
{% else %}
|
||||||
|
<p style="color: #ff0000; font-weight: bolder">{{docpath}} not found!</p>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% comment %} Second, render pages not listed in the order array {% endcomment %}
|
||||||
|
|
||||||
|
{% for post in collection.docs %}
|
||||||
|
{% assign already_rendered = ordered_post | where_exp: "path", "path == post.path" | size %}
|
||||||
|
{% if already_rendered == 0 %}
|
||||||
|
{% include archive-single.html type=entries_layout %}
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
||||||
|
76
_layouts/tags.html
Normal file
76
_layouts/tags.html
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
---
|
||||||
|
layout: archive
|
||||||
|
---
|
||||||
|
|
||||||
|
{{ content }}
|
||||||
|
|
||||||
|
{% comment %} Flatten all documents in all categories {% endcomment %}
|
||||||
|
|
||||||
|
{% assign docs = "" | split: "" %}
|
||||||
|
{% for collection in site.collections %}
|
||||||
|
{% assign docs = docs | concat: collection.docs %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
{% comment %} Extract all tags {% endcomment %}
|
||||||
|
|
||||||
|
{% for doc in docs %}
|
||||||
|
{% assign all_tags = all_tags | concat: doc.tags %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
{% assign unique_tags = all_tags | uniq %}
|
||||||
|
|
||||||
|
{% assign tags_count = "" | split: "" %}
|
||||||
|
{% assign tagged_docs = "" | split: "" %}
|
||||||
|
{% assign tags_max = 0 %}
|
||||||
|
|
||||||
|
{% for tag in unique_tags %}
|
||||||
|
{% comment %} Count the number of tag occurrence in all docs {% endcomment %}
|
||||||
|
|
||||||
|
{% assign count = 0 %}
|
||||||
|
{% for t in all_tags %}
|
||||||
|
{% if t == tag %}
|
||||||
|
{% assign count = count | plus: 1 %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% assign tags_count = tags_count | push: count %}
|
||||||
|
|
||||||
|
{% comment %} Group docs by tags {% endcomment %}
|
||||||
|
|
||||||
|
{% assign found = docs | where_exp: "item", "item.tags contains tag" %}
|
||||||
|
{% assign tagged_docs = tagged_docs | push: found %}
|
||||||
|
|
||||||
|
{% if count > tags_max %}
|
||||||
|
{% assign tags_max = count %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
<ul class="taxonomy__index">
|
||||||
|
{% for i in (1..tags_max) reversed %}
|
||||||
|
{% for tag in unique_tags %}
|
||||||
|
{% if tags_count[forloop.index0] == i %}
|
||||||
|
<li>
|
||||||
|
<a href="#{{ tag | slugify | downcase }}">
|
||||||
|
<strong>{{ tag }}</strong> <span class="taxonomy__count">{{ i }}</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
{% assign entries_layout = page.entries_layout | default: 'list' %}
|
||||||
|
{% for i in (1..tags_max) reversed %}
|
||||||
|
{% for tag in unique_tags %}
|
||||||
|
{% if tags_count[forloop.index0] == i %}
|
||||||
|
<section id="{{ tag | slugify | downcase }}" class="taxonomy__section">
|
||||||
|
<h2 class="archive__subtitle">{{ tag }}</h2>
|
||||||
|
<div class="entries-{{ entries_layout }}">
|
||||||
|
{% for post in tagged_docs[forloop.index0] %}
|
||||||
|
{% include archive-single.html type=entries_layout %}
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
<a href="#page-title" class="back-to-top">{{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑</a>
|
||||||
|
</section>
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endfor %}
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: 初めての方へ ─ とりあえず動かす
|
title: 初めての方へ ─ とりあえず動かす
|
||||||
categories:
|
|
||||||
- For Beginners
|
|
||||||
tags:
|
tags:
|
||||||
- For Beginners
|
- For Beginners
|
||||||
- 沼の入り口
|
- 沼の入り口
|
@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: ハードウェア対応状況とロードマップ
|
title: ハードウェア対応状況とロードマップ
|
||||||
categories:
|
|
||||||
- Linux
|
|
||||||
- U-Boot
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- U-Boot
|
- U-Boot
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: SD カードへのコピー
|
title: SD カードへのコピー
|
||||||
categories:
|
|
||||||
- Linux
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- 自力ビルド
|
- 自力ビルド
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Linux のビルド
|
title: Linux のビルド
|
||||||
categories:
|
|
||||||
- Linux
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- 自力ビルド
|
- 自力ビルド
|
||||||
@ -75,4 +73,4 @@ Linuxのカーネルの準備ができたら、カーネルの上で動くアプ
|
|||||||
+ 52 apt install -y fbterm uim-fep uim-mozc
|
+ 52 apt install -y fbterm uim-fep uim-mozc
|
||||||
```
|
```
|
||||||
|
|
||||||
[SD カードへのコピー](/linux/linux-copy-sd-card/)に続く…
|
[SD カードへのコピー](/build/copy-sd-card/)に続く…
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: U-Boot のビルド
|
title: U-Boot のビルド
|
||||||
categories:
|
|
||||||
- U-Boot
|
|
||||||
tags:
|
tags:
|
||||||
- U-Boot
|
- U-Boot
|
||||||
- 自力ビルド
|
- 自力ビルド
|
||||||
@ -56,4 +54,4 @@ git clone --recursive https://github.com/brain-hackers/buildbrain.git
|
|||||||
5. `make nk.bin` を実行します
|
5. `make nk.bin` を実行します
|
||||||
|
|
||||||
|
|
||||||
[Linux のビルド](/linux/linux-build/)に続く…
|
[Linux のビルド](/build/linux/)に続く…
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: brain-config
|
title: brain-config
|
||||||
categories:
|
|
||||||
- Linux
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
---
|
---
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: パッケージ一覧
|
title: パッケージ一覧
|
||||||
categories:
|
|
||||||
- Linux
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
toc: false
|
toc: false
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Xorg
|
title: Xorg
|
||||||
categories:
|
|
||||||
- Linux
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- GUI
|
- GUI
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Wiki の編集方法とルール
|
title: Wiki の編集方法とルール
|
||||||
categories:
|
|
||||||
- Meta
|
|
||||||
tags:
|
tags:
|
||||||
- Wiki
|
- Wiki
|
||||||
- メンバー向け
|
- メンバー向け
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: OTG ケーブル
|
title: OTG ケーブル
|
||||||
categories:
|
|
||||||
- Tips
|
|
||||||
tags:
|
tags:
|
||||||
- 周辺機器
|
- 周辺機器
|
||||||
- USB
|
- USB
|
@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Swap 領域
|
title: Swap 領域
|
||||||
categories:
|
|
||||||
- Tips
|
|
||||||
- Linux
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
excerpt: ""
|
excerpt: ""
|
@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: タッチパネル
|
title: タッチパネル
|
||||||
categories:
|
|
||||||
- Tips
|
|
||||||
- Linux
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- GUI
|
- GUI
|
||||||
@ -11,13 +8,6 @@ excerpt: タッチパネルのキャリブレーション(Brainux に同梱さ
|
|||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
# 事前に
|
|
||||||
|
|
||||||
Xorgの設定ファイル ( xorg.conf )を設定していない場合は、下記のWikiを参照して設定してください。
|
|
||||||
|
|
||||||
[Xorg](/linux/linux-xorg/)
|
|
||||||
|
|
||||||
|
|
||||||
# 必要なパッケージのインストール
|
# 必要なパッケージのインストール
|
||||||
|
|
||||||
```sh
|
```sh
|
@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: USB Ethernet Gadget
|
title: USB Ethernet Gadget
|
||||||
categories:
|
|
||||||
- Tips
|
|
||||||
- Linux
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- USB
|
- USB
|
@ -1,8 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Web ブラウザ
|
title: Web ブラウザ
|
||||||
categories:
|
|
||||||
- Tips
|
|
||||||
- Linux
|
|
||||||
tags:
|
tags:
|
||||||
- Linux
|
- Linux
|
||||||
- GUI
|
- GUI
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: EBOOT を介した起動
|
title: EBOOT を介した起動
|
||||||
categories:
|
|
||||||
- U-Boot
|
|
||||||
tags:
|
tags:
|
||||||
- U-Boot
|
- U-Boot
|
||||||
- EBOOT
|
- EBOOT
|
@ -1,7 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: USB Recovery を介した起動
|
title: USB Recovery を介した起動
|
||||||
categories:
|
|
||||||
- U-Boot
|
|
||||||
tags:
|
tags:
|
||||||
- U-Boot
|
- U-Boot
|
||||||
# excerpt: "記事が書けたらこの行をアンコメントして記入してください"
|
# excerpt: "記事が書けたらこの行をアンコメントして記入してください"
|
@ -8,8 +8,8 @@
|
|||||||
"textlint-rule-prh": "^5.3.0"
|
"textlint-rule-prh": "^5.3.0"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"textlint": "textlint '_posts/*'",
|
"textlint": "textlint 'collections/**/*'",
|
||||||
"textlint-fix": "textlint --fix '_posts/*'",
|
"textlint-fix": "textlint --fix 'collections/**/*'",
|
||||||
"mdlint": "./node_modules/markdownlint-cli/markdownlint.js _posts"
|
"mdlint": "./node_modules/markdownlint-cli/markdownlint.js collections/**/*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user