diff --git a/.prettierignore b/.prettierignore index f917ab02..f1346feb 100644 --- a/.prettierignore +++ b/.prettierignore @@ -3,4 +3,6 @@ assets/css/main.scss assets/plotly/demo.html lighthouse_results/** -_posts/2015-10-20-math.md +_posts/** + + diff --git a/_config.yml b/_config.yml index 0856f0ae..a011fb70 100644 --- a/_config.yml +++ b/_config.yml @@ -7,7 +7,7 @@ first_name: Soichiro last_name: Nishimori email: nishimori@ms.u-tokyo.ac.jp description: > # the ">" symbol means to ignore newlines until "footer_text:" - A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design. + Soichiro Nishimori's personal website. footer_text: > Powered by Jekyll with al-folio theme. Hosted by GitHub Pages. @@ -126,8 +126,8 @@ bing_site_verification: # out your bing-site-verification ID (Bing Webmaster) # Blog # ----------------------------------------------------------------------------- -blog_name: al-folio # blog_name will be displayed in your blog page -blog_description: a simple whitespace theme for academics +blog_name: にしもりのブログ # blog_name will be displayed in your blog page +blog_description: permalink: /blog/:year/:title/ # Pagination diff --git a/_posts/2015-03-15-formatting-and-links.md b/_posts/2015-03-15-formatting-and-links.md deleted file mode 100644 index 0962756d..00000000 --- a/_posts/2015-03-15-formatting-and-links.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -layout: post -title: a post with formatting and links -date: 2015-03-15 16:40:16 -description: march & april, looking forward to summer -tags: formatting links -categories: sample-posts ---- - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. [Pinterest](https://www.pinterest.com) DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -#### Hipster list - -- brunch -- fixie -- raybans -- messenger bag - -#### Check List - -- [x] Brush Teeth -- [ ] Put on socks - - [x] Put on left sock - - [ ] Put on right sock -- [x] Go to school - -Hoodie Thundercats retro, tote bag 8-bit Godard craft beer gastropub. Truffaut Tumblr taxidermy, raw denim Kickstarter sartorial dreamcatcher. Quinoa chambray slow-carb salvia readymade, bicycle rights 90's yr typewriter selfies letterpress cardigan vegan. - -
- -Pug heirloom High Life vinyl swag, single-origin coffee four dollar toast taxidermy reprehenderit fap distillery master cleanse locavore. Est anim sapiente leggings Brooklyn ea. Thundercats locavore excepteur veniam eiusmod. Raw denim Truffaut Schlitz, migas sapiente Portland VHS twee Bushwick Marfa typewriter retro id keytar. - -> We do not grow absolutely, chronologically. We grow sometimes in one dimension, and not in another, unevenly. We grow partially. We are relative. We are mature in one realm, childish in another. -> —Anais Nin - -Fap aliqua qui, scenester pug Echo Park polaroid irony shabby chic ex cardigan church-key Odd Future accusamus. Blog stumptown sartorial squid, gastropub duis aesthetic Truffaut vero. Pinterest tilde twee, odio mumblecore jean shorts lumbersexual. diff --git a/_posts/2015-05-15-images.md b/_posts/2015-05-15-images.md deleted file mode 100644 index 61f687f8..00000000 --- a/_posts/2015-05-15-images.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -layout: post -title: a post with images -date: 2015-05-15 21:01:00 -description: this is what included images could look like -tags: formatting images -categories: sample-posts -thumbnail: assets/img/9.jpg ---- - -This is an example post with image galleries. - -
-
- {% include figure.liquid loading="eager" path="assets/img/9.jpg" class="img-fluid rounded z-depth-1" %} -
-
- {% include figure.liquid loading="eager" path="assets/img/7.jpg" class="img-fluid rounded z-depth-1" %} -
-
-
- A simple, elegant caption looks good between image rows, after each row, or doesn't have to be there at all. -
- -Images can be made zoomable. -Simply add `data-zoomable` to `` tags that you want to make zoomable. - -
-
- {% include figure.liquid loading="eager" path="assets/img/8.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
- {% include figure.liquid loading="eager" path="assets/img/10.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
- -The rest of the images in this post are all zoomable, arranged into different mini-galleries. - -
-
- {% include figure.liquid path="assets/img/11.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
- {% include figure.liquid path="assets/img/12.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
- {% include figure.liquid path="assets/img/7.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
diff --git a/_posts/2015-07-15-code.md b/_posts/2015-07-15-code.md deleted file mode 100644 index c721ec96..00000000 --- a/_posts/2015-07-15-code.md +++ /dev/null @@ -1,100 +0,0 @@ ---- -layout: post -title: a post with code -date: 2015-07-15 15:09:00 -description: an example of a blog post with some code -tags: formatting code -categories: sample-posts -featured: true ---- - -This theme implements a built-in Jekyll feature, the use of Rouge, for syntax highlighting. -It supports more than 100 languages. -This example is in C++. -All you have to do is wrap your code in markdown code tags: - -````markdown -```c++ -code code code -``` -```` - -```c++ -int main(int argc, char const \*argv[]) -{ - string myString; - - cout << "input a string: "; - getline(cin, myString); - int length = myString.length(); - - char charArray = new char * [length]; - - charArray = myString; - for(int i = 0; i < length; ++i){ - cout << charArray[i] << " "; - } - - return 0; -} -``` - -For displaying code in a list item, you have to be aware of the indentation, as stated in this [Stackoverflow answer](https://stackoverflow.com/questions/34987908/embed-a-code-block-in-a-list-item-with-proper-indentation-in-kramdown/38090598#38090598). You must indent your code by **(3 \* bullet_indent_level)** spaces. This is because kramdown (the markdown engine used by Jekyll) indentation for the code block in lists is determined by the column number of the first non-space character after the list item marker. For example: - -````markdown -1. We can put fenced code blocks inside nested bullets, too. - - 1. Like this: - - ```c - printf("Hello, World!"); - ``` - - 2. The key is to indent your fenced block in the same line as the first character of the line. -```` - -Which displays: - -1. We can put fenced code blocks inside nested bullets, too. - - 1. Like this: - - ```c - printf("Hello, World!"); - ``` - - 2. The key is to indent your fenced block in the same line as the first character of the line. - -By default, it does not display line numbers. If you want to display line numbers for every code block, you can set `kramdown.syntax_highlighter_opts.block.line_numbers` to true in your `_config.yml` file. - -If you want to display line numbers for a specific code block, all you have to do is wrap your code in a liquid tag: - -{% raw %} -{% highlight c++ linenos %}
code code code
{% endhighlight %} -{% endraw %} - -The keyword `linenos` triggers display of line numbers. -Produces something like this: - -{% highlight c++ linenos %} - -int main(int argc, char const \*argv[]) -{ -string myString; - - cout << "input a string: "; - getline(cin, myString); - int length = myString.length(); - - char charArray = new char * [length]; - - charArray = myString; - for(int i = 0; i < length; ++i){ - cout << charArray[i] << " "; - } - - return 0; - -} - -{% endhighlight %} diff --git a/_posts/2015-10-20-disqus-comments.md b/_posts/2015-10-20-disqus-comments.md deleted file mode 100644 index cf538840..00000000 --- a/_posts/2015-10-20-disqus-comments.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: post -title: a post with disqus comments -date: 2015-10-20 11:59:00-0400 -description: an example of a blog post with disqus comments -tags: comments -categories: sample-posts external-services -disqus_comments: true -related_posts: false ---- - -This post shows how to add DISQUS comments. diff --git a/_posts/2015-10-20-math.md b/_posts/2015-10-20-math.md deleted file mode 100644 index 9ef0657b..00000000 --- a/_posts/2015-10-20-math.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: post -title: a post with math -date: 2015-10-20 11:12:00-0400 -description: an example of a blog post with some math -tags: formatting math -categories: sample-posts -related_posts: false ---- - -This theme supports rendering beautiful math in inline and display modes using [MathJax 3](https://www.mathjax.org/) engine. You just need to surround your math expression with `$$`, like `$$ E = mc^2 $$`. If you leave it inside a paragraph, it will produce an inline expression, just like $$ E = mc^2 $$. - -To use display mode, again surround your expression with `$$` and place it as a separate paragraph. Here is an example: - -$$ -\sum_{k=1}^\infty |\langle x, e_k \rangle|^2 \leq \|x\|^2 -$$ - -You can also use `\begin{equation}...\end{equation}` instead of `$$` for display mode math. -MathJax will automatically number equations: - -\begin{equation} -\label{eq:cauchy-schwarz} -\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) -\end{equation} - -and by adding `\label{...}` inside the equation environment, we can now refer to the equation using `\eqref`. - -Note that MathJax 3 is [a major re-write of MathJax](https://docs.mathjax.org/en/latest/upgrading/whats-new-3.0.html) that brought a significant improvement to the loading and rendering speed, which is now [on par with KaTeX](http://www.intmath.com/cg5/katex-mathjax-comparison.php). diff --git a/_posts/2018-12-22-distill.md b/_posts/2018-12-22-distill.md deleted file mode 100644 index 6fa2e8d8..00000000 --- a/_posts/2018-12-22-distill.md +++ /dev/null @@ -1,321 +0,0 @@ ---- -layout: distill -title: a distill-style blog post -description: an example of a distill-style blog post and main elements -tags: distill formatting -giscus_comments: true -date: 2021-05-22 -featured: true - -authors: - - name: Albert Einstein - url: "https://en.wikipedia.org/wiki/Albert_Einstein" - affiliations: - name: IAS, Princeton - - name: Boris Podolsky - url: "https://en.wikipedia.org/wiki/Boris_Podolsky" - affiliations: - name: IAS, Princeton - - name: Nathan Rosen - url: "https://en.wikipedia.org/wiki/Nathan_Rosen" - affiliations: - name: IAS, Princeton - -bibliography: 2018-12-22-distill.bib - -# Optionally, you can add a table of contents to your post. -# NOTES: -# - make sure that TOC names match the actual section names -# for hyperlinks within the post to work correctly. -# - we may want to automate TOC generation in the future using -# jekyll-toc plugin (https://github.com/toshimaru/jekyll-toc). -toc: - - name: Equations - # if a section has subsections, you can add them as follows: - # subsections: - # - name: Example Child Subsection 1 - # - name: Example Child Subsection 2 - - name: Citations - - name: Footnotes - - name: Code Blocks - - name: Interactive Plots - - name: Layouts - - name: Other Typography? - -# Below is an example of injecting additional post-specific styles. -# If you use this post as a template, delete this _styles block. -_styles: > - .fake-img { - background: #bbb; - border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1); - margin-bottom: 12px; - } - .fake-img p { - font-family: monospace; - color: white; - text-align: left; - margin: 12px 0; - text-align: center; - font-size: 16px; - } ---- - -## Equations - -This theme supports rendering beautiful math in inline and display modes using [MathJax 3](https://www.mathjax.org/) engine. -You just need to surround your math expression with `$$`, like `$$ E = mc^2 $$`. -If you leave it inside a paragraph, it will produce an inline expression, just like $$ E = mc^2 $$. - -To use display mode, again surround your expression with `$$` and place it as a separate paragraph. -Here is an example: - -$$ -\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) -$$ - -Note that MathJax 3 is [a major re-write of MathJax](https://docs.mathjax.org/en/latest/upgrading/whats-new-3.0.html) that brought a significant improvement to the loading and rendering speed, which is now [on par with KaTeX](http://www.intmath.com/cg5/katex-mathjax-comparison.php). - ---- - -## Citations - -Citations are then used in the article body with the `` tag. -The key attribute is a reference to the id provided in the bibliography. -The key attribute can take multiple ids, separated by commas. - -The citation is presented inline like this: (a number that displays more information on hover). -If you have an appendix, a bibliography is automatically created and populated in it. - -Distill chose a numerical inline citation style to improve readability of citation dense articles and because many of the benefits of longer citations are obviated by displaying more information on hover. -However, we consider it good style to mention author last names if you discuss something at length and it fits into the flow well — the authors are human and it’s nice for them to have the community associate them with their work. - ---- - -## Footnotes - -Just wrap the text you would like to show up in a footnote in a `` tag. -The number of the footnote will be automatically generated.This will become a hoverable footnote. - ---- - -## Code Blocks - -Syntax highlighting is provided within `` tags. -An example of inline code snippets: `let x = 10;`. -For larger blocks of code, add a `block` attribute: - - - var x = 25; - function(x) { - return x * x; - } - - -**Note:** `` blocks do not look good in the dark mode. -You can always use the default code-highlight using the `highlight` liquid tag: - -{% highlight javascript %} -var x = 25; -function(x) { -return x \* x; -} -{% endhighlight %} - ---- - -## Interactive Plots - -You can add interative plots using plotly + iframes :framed_picture: - -
- -
- -The plot must be generated separately and saved into an HTML file. -To generate the plot that you see above, you can use the following code snippet: - -{% highlight python %} -import pandas as pd -import plotly.express as px -df = pd.read_csv( -'https://raw.githubusercontent.com/plotly/datasets/master/earthquakes-23k.csv' -) -fig = px.density_mapbox( -df, -lat='Latitude', -lon='Longitude', -z='Magnitude', -radius=10, -center=dict(lat=0, lon=180), -zoom=0, -mapbox_style="stamen-terrain", -) -fig.show() -fig.write_html('assets/plotly/demo.html') -{% endhighlight %} - ---- - -## Details boxes - -Details boxes are collapsible boxes which hide additional information from the user. They can be added with the `details` liquid tag: - -{% details Click here to know more %} -Additional details, where math $$ 2x - 1 $$ and `code` is rendered correctly. -{% enddetails %} - ---- - -## Layouts - -The main text column is referred to as the body. -It is the assumed layout of any direct descendants of the `d-article` element. - -
-

.l-body

-
- -For images you want to display a little larger, try `.l-page`: - -
-

.l-page

-
- -All of these have an outset variant if you want to poke out from the body text a little bit. -For instance: - -
-

.l-body-outset

-
- -
-

.l-page-outset

-
- -Occasionally you’ll want to use the full browser width. -For this, use `.l-screen`. -You can also inset the element a little from the edge of the browser by using the inset variant. - -
-

.l-screen

-
-
-

.l-screen-inset

-
- -The final layout is for marginalia, asides, and footnotes. -It does not interrupt the normal flow of `.l-body` sized text except on mobile screen sizes. - -
-

.l-gutter

-
- ---- - -## Other Typography? - -Emphasis, aka italics, with _asterisks_ (`*asterisks*`) or _underscores_ (`_underscores_`). - -Strong emphasis, aka bold, with **asterisks** or **underscores**. - -Combined emphasis with **asterisks and _underscores_**. - -Strikethrough uses two tildes. ~~Scratch this.~~ - -1. First ordered list item -2. Another item - ⋅⋅\* Unordered sub-list. -3. Actual numbers don't matter, just that it's a number - ⋅⋅1. Ordered sub-list -4. And another item. - -⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown). - -⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅ -⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅ -⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.) - -- Unordered list can use asterisks - -* Or minuses - -- Or pluses - -[I'm an inline-style link](https://www.google.com) - -[I'm an inline-style link with title](https://www.google.com "Google's Homepage") - -[I'm a reference-style link][Arbitrary case-insensitive reference text] - -[You can use numbers for reference-style link definitions][1] - -Or leave it empty and use the [link text itself]. - -URLs and URLs in angle brackets will automatically get turned into links. -http://www.example.com or and sometimes -example.com (but not on Github, for example). - -Some text to show that the reference links can follow later. - -[arbitrary case-insensitive reference text]: https://www.mozilla.org -[1]: http://slashdot.org -[link text itself]: http://www.reddit.com - -Here's our logo (hover to see the title text): - -Inline-style: -![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1") - -Reference-style: -![alt text][logo] - -[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2" - -Inline `code` has `back-ticks around` it. - -```javascript -var s = "JavaScript syntax highlighting"; -alert(s); -``` - -```python -s = "Python syntax highlighting" -print s -``` - -``` -No language indicated, so no syntax highlighting. -But let's throw in a tag. -``` - -Colons can be used to align columns. - -| Tables | Are | Cool | -| ------------- | :-----------: | ----: | -| col 3 is | right-aligned | $1600 | -| col 2 is | centered | $12 | -| zebra stripes | are neat | $1 | - -There must be at least 3 dashes separating each header cell. -The outer pipes (|) are optional, and you don't need to make the -raw Markdown line up prettily. You can also use inline Markdown. - -| Markdown | Less | Pretty | -| -------- | --------- | ---------- | -| _Still_ | `renders` | **nicely** | -| 1 | 2 | 3 | - -> Blockquotes are very handy in email to emulate reply text. -> This line is part of the same quote. - -Quote break. - -> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote. - -Here's a line for us to start with. - -This line is separated from the one above by two newlines, so it will be a _separate paragraph_. - -This line is also a separate paragraph, but... -This line is only separated by a single newline, so it's a separate line in the _same paragraph_. diff --git a/_posts/2020-09-28-github-metadata.md b/_posts/2020-09-28-github-metadata.md deleted file mode 100644 index 3adbdeef..00000000 --- a/_posts/2020-09-28-github-metadata.md +++ /dev/null @@ -1,39 +0,0 @@ ---- -layout: post -title: a post with github metadata -date: 2020-09-28 21:01:00 -description: a quick run down on accessing github metadata. -tags: metadata -categories: sample-posts external-services ---- - -A sample blog page that demonstrates the accessing of github meta data. - -## What does Github-MetaData do? - -- Propagates the site.github namespace with repository metadata -- Setting site variables : - - site.title - - site.description - - site.url - - site.baseurl -- Accessing the metadata - duh. -- Generating edittable links. - -## Additional Reading - -- If you're recieving incorrect/missing data, you may need to perform a Github API authentication. -- Go through this README for more details on the topic. -- This page highlights all the feilds you can access with github-metadata. -
- -## Example MetaData - -- Host Name : {{ site.github.hostname }} -- URL : {{ site.github.url }} -- BaseURL : {{ site.github.baseurl }} -- Archived : {{ site.github.archived}} -- Contributors : - {% for contributor in site.github.contributors %} - - {{ contributor.login }} - {% endfor %} diff --git a/_posts/2020-09-28-twitter.md b/_posts/2020-09-28-twitter.md deleted file mode 100644 index e99c12d8..00000000 --- a/_posts/2020-09-28-twitter.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: post -title: a post with twitter -date: 2020-09-28 11:12:00-0400 -description: an example of a blog post with twitter -tags: formatting -categories: sample-posts external-services ---- - -A sample blog page that demonstrates the inclusion of Tweets/Timelines/etc. - -# Tweet - -An example of displaying a tweet: -{% twitter https://twitter.com/rubygems/status/518821243320287232 %} - -# Timeline - -An example of pulling from a timeline: -{% twitter https://twitter.com/jekyllrb maxwidth=500 limit=3 %} - -# Additional Details - -For more details on using the plugin visit: [jekyll-twitter-plugin](https://github.com/rob-murray/jekyll-twitter-plugin) diff --git a/_posts/2021-07-04-diagrams.md b/_posts/2021-07-04-diagrams.md deleted file mode 100644 index c85baa22..00000000 --- a/_posts/2021-07-04-diagrams.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: post -title: a post with diagrams -date: 2021-07-04 17:39:00 -tags: formatting diagrams -description: an example of a blog post with diagrams -mermaid: - enabled: true - zoomable: true ---- - -This theme supports generating various diagrams from a text description using [mermaid](https://mermaid-js.github.io/mermaid/){:target="\_blank"}. Previously, this was done using the [jekyll-diagrams](https://github.com/zhustec/jekyll-diagrams){:target="\_blank"} plugin. For more information on this matter, see the [related issue](https://github.com/alshedivat/al-folio/issues/1609#issuecomment-1656995674). To disable the zooming feature, set `mermaid.zoomable` to `false` in this post frontmatter. - -## Mermaid - -The diagram below was generated by the following code: - -````markdown -```mermaid -sequenceDiagram - participant John - participant Alice - Alice->>John: Hello John, how are you? - John-->>Alice: Great! -``` -```` - -```mermaid -sequenceDiagram - participant John - participant Alice - Alice->>John: Hello John, how are you? - John-->>Alice: Great! -``` diff --git a/_posts/2022-02-01-redirect.md b/_posts/2022-02-01-redirect.md deleted file mode 100644 index 62be5f3c..00000000 --- a/_posts/2022-02-01-redirect.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: post -title: a post with redirect -date: 2022-02-01 17:39:00 -description: you can also redirect to assets like pdf -redirect: /assets/pdf/example_pdf.pdf ---- - -Redirecting to another page. diff --git a/_posts/2022-12-10-giscus-comments.md b/_posts/2022-12-10-giscus-comments.md deleted file mode 100644 index 72e08474..00000000 --- a/_posts/2022-12-10-giscus-comments.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: post -title: a post with giscus comments -date: 2022-12-10 11:59:00-0400 -description: an example of a blog post with giscus comments -tags: comments -categories: sample-posts external-services -giscus_comments: true -related_posts: false ---- - -This post shows how to add GISCUS comments. diff --git a/_posts/2023-03-20-table-of-contents.md b/_posts/2023-03-20-table-of-contents.md deleted file mode 100644 index ec91cd33..00000000 --- a/_posts/2023-03-20-table-of-contents.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -layout: post -title: a post with table of contents -date: 2023-03-20 11:59:00-0400 -description: an example of a blog post with table of contents -tags: formatting toc -categories: sample-posts -giscus_comments: true -related_posts: false -toc: - beginning: true ---- - -This post shows how to add a table of contents in the beginning of the post. - -## Adding a Table of Contents - -To add a table of contents to a post, simply add - -```yml -toc: - beginning: true -``` - -to the front matter of the post. The table of contents will be automatically generated from the headings in the post. - -### Example of Sub-Heading 1 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -### Example of another Sub-Heading 1 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -## Table of Contents Options - -If you want to learn more about how to customize the table of contents, you can check the [jekyll-toc](https://github.com/toshimaru/jekyll-toc) repository. - -### Example of Sub-Heading 2 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -### Example of another Sub-Heading 2 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. diff --git a/_posts/2023-03-21-tables.md b/_posts/2023-03-21-tables.md deleted file mode 100644 index da1d7e89..00000000 --- a/_posts/2023-03-21-tables.md +++ /dev/null @@ -1,106 +0,0 @@ ---- -layout: post -title: displaying beautiful tables with Bootstrap Tables -date: 2023-03-20 14:37:00-0400 -description: an example of how to use Bootstrap Tables -tags: formatting tables -categories: sample-posts -giscus_comments: true -related_posts: true -pretty_table: true ---- - -Using markdown to display tables is easy. Just use the following syntax: - -```markdown -| Left aligned | Center aligned | Right aligned | -| :----------- | :------------: | ------------: | -| Left 1 | center 1 | right 1 | -| Left 2 | center 2 | right 2 | -| Left 3 | center 3 | right 3 | -``` - -That will generate: - -| Left aligned | Center aligned | Right aligned | -| :----------- | :------------: | ------------: | -| Left 1 | center 1 | right 1 | -| Left 2 | center 2 | right 2 | -| Left 3 | center 3 | right 3 | - -

- -It is also possible to use HTML to display tables. For example, the following HTML code will display a table with [Bootstrap Table](https://bootstrap-table.com/), loaded from a JSON file: - -{% raw %} - -```html - - - - - - - - -
IDItem NameItem Price
-``` - -{% endraw %} - - - - - - - - - -
IDItem NameItem Price
- -

- -By using [Bootstrap Table](https://bootstrap-table.com/) it is possible to create pretty complex tables, with pagination, search, and more. For example, the following HTML code will display a table, loaded from a JSON file, with pagination, search, checkboxes, and header/content alignment. For more information, check the [documentation](https://examples.bootstrap-table.com/index.html). - -{% raw %} - -```html - - - - - - - - - -
IDItem NameItem Price
-``` - -{% endraw %} - - - - - - - - - - -
IDItem NameItem Price
diff --git a/_posts/2023-04-24-videos.md b/_posts/2023-04-24-videos.md deleted file mode 100644 index d408d6bb..00000000 --- a/_posts/2023-04-24-videos.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: post -title: a post with videos -date: 2023-04-24 21:01:00 -description: this is what included videos could look like -tags: formatting videos -categories: sample-posts ---- - -This is an example post with videos. It supports local video files. - -
-
- {% include video.liquid path="assets/video/pexels-engin-akyurt-6069112-960x540-30fps.mp4" class="img-fluid rounded z-depth-1" controls=true autoplay=true %} -
-
- {% include video.liquid path="assets/video/pexels-engin-akyurt-6069112-960x540-30fps.mp4" class="img-fluid rounded z-depth-1" controls=true %} -
-
-
- A simple, elegant caption looks good between video rows, after each row, or doesn't have to be there at all. -
- -It does also support embedding videos from different sources. Here are some examples: - -
-
- {% include video.liquid path="https://www.youtube.com/embed/jNQXAC9IVRw" class="img-fluid rounded z-depth-1" %} -
-
- {% include video.liquid path="https://player.vimeo.com/video/524933864?h=1ac4fd9fb4&title=0&byline=0&portrait=0" class="img-fluid rounded z-depth-1" %} -
-
diff --git a/_posts/2023-04-25-audios.md b/_posts/2023-04-25-audios.md deleted file mode 100644 index 1f3691ca..00000000 --- a/_posts/2023-04-25-audios.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: post -title: a post with audios -date: 2023-04-25 10:25:00 -description: this is what included audios could look like -tags: formatting audios -categories: sample-posts ---- - -This is an example post with audios. It supports local audio files. - -
-
- {% include audio.liquid path="assets/audio/epicaly-short-113909.mp3" controls=true %} -
-
- {% include audio.liquid path="https://cdn.pixabay.com/download/audio/2022/06/25/audio_69a61cd6d6.mp3" controls=true %} -
-
-
- A simple, elegant caption looks good between video rows, after each row, or doesn't have to be there at all. -
diff --git a/_posts/2023-04-25-sidebar-table-of-contents.md b/_posts/2023-04-25-sidebar-table-of-contents.md deleted file mode 100644 index 2afb8fca..00000000 --- a/_posts/2023-04-25-sidebar-table-of-contents.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -layout: post -title: a post with table of contents on a sidebar -date: 2023-04-25 10:14:00-0400 -description: an example of a blog post with table of contents on a sidebar -tags: formatting toc sidebar -categories: sample-posts -giscus_comments: true -related_posts: false -toc: - sidebar: left ---- - -This post shows how to add a table of contents as a sidebar. - -## Adding a Table of Contents - -To add a table of contents to a post as a sidebar, simply add - -```yml -toc: - sidebar: left -``` - -to the front matter of the post. The table of contents will be automatically generated from the headings in the post. If you wish to display the sidebar to the right, simply change `left` to `right`. - -### Example of Sub-Heading 1 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -### Example of another Sub-Heading 1 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -## Customizing Your Table of Contents - -{:data-toc-text="Customizing"} - -If you want to learn more about how to customize the table of contents of your sidebar, you can check the [bootstrap-toc](https://afeld.github.io/bootstrap-toc/) documentation. Notice that you can even customize the text of the heading that will be displayed on the sidebar. - -### Example of Sub-Heading 2 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -### Example of another Sub-Heading 2 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. diff --git a/_posts/2023-05-12-custom-blockquotes.md b/_posts/2023-05-12-custom-blockquotes.md deleted file mode 100644 index fdaf47e6..00000000 --- a/_posts/2023-05-12-custom-blockquotes.md +++ /dev/null @@ -1,131 +0,0 @@ ---- -layout: post -title: a post with custom blockquotes -date: 2023-05-12 15:53:00-0400 -description: an example of a blog post with custom blockquotes -tags: formatting blockquotes -categories: sample-posts -giscus_comments: true -related_posts: true ---- - -This post shows how to add custom styles for blockquotes. Based on [jekyll-gitbook](https://github.com/sighingnow/jekyll-gitbook) implementation. - -We decided to support the same custom blockquotes as in [jekyll-gitbook](https://sighingnow.github.io/jekyll-gitbook/jekyll/2022-06-30-tips_warnings_dangers.html), which are also found in a lot of other sites' styles. The styles definitions can be found on the [\_base.scss](https://github.com/alshedivat/al-folio/blob/master/_sass/_base.scss) file, more specifically: - -```scss -/* Tips, warnings, and dangers */ -.post .post-content blockquote { - &.block-tip { - border-color: var(--global-tip-block); - background-color: var(--global-tip-block-bg); - - p { - color: var(--global-tip-block-text); - } - - h1, - h2, - h3, - h4, - h5, - h6 { - color: var(--global-tip-block-title); - } - } - - &.block-warning { - border-color: var(--global-warning-block); - background-color: var(--global-warning-block-bg); - - p { - color: var(--global-warning-block-text); - } - - h1, - h2, - h3, - h4, - h5, - h6 { - color: var(--global-warning-block-title); - } - } - - &.block-danger { - border-color: var(--global-danger-block); - background-color: var(--global-danger-block-bg); - - p { - color: var(--global-danger-block-text); - } - - h1, - h2, - h3, - h4, - h5, - h6 { - color: var(--global-danger-block-title); - } - } -} -``` - -A regular blockquote can be used as following: - -```markdown -> This is a regular blockquote -> and it can be used as usual -``` - -> This is a regular blockquote -> and it can be used as usual - -These custom styles can be used by adding the specific class to the blockquote, as follows: - - - -```markdown -> ##### TIP -> -> A tip can be used when you want to give advice -> related to a certain content. -{: .block-tip } -``` - -> ##### TIP -> -> A tip can be used when you want to give advice -> related to a certain content. -{: .block-tip } - -```markdown -> ##### WARNING -> -> This is a warning, and thus should -> be used when you want to warn the user -{: .block-warning } -``` - -> ##### WARNING -> -> This is a warning, and thus should -> be used when you want to warn the user -{: .block-warning } - -```markdown -> ##### DANGER -> -> This is a danger zone, and thus should -> be used carefully -{: .block-danger } -``` - -> ##### DANGER -> -> This is a danger zone, and thus should -> be used carefully -{: .block-danger } - - diff --git a/_posts/2023-07-04-jupyter-notebook.md b/_posts/2023-07-04-jupyter-notebook.md deleted file mode 100644 index 8c1a1fc8..00000000 --- a/_posts/2023-07-04-jupyter-notebook.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -layout: post -title: a post with jupyter notebook -date: 2023-07-04 08:57:00-0400 -description: an example of a blog post with jupyter notebook -tags: formatting jupyter -categories: sample-posts -giscus_comments: true -related_posts: false ---- - -To include a jupyter notebook in a post, you can use the following code: - -{% raw %} - -```liquid -{::nomarkdown} -{% assign jupyter_path = 'assets/jupyter/blog.ipynb' | relative_url %} -{% capture notebook_exists %}{% file_exists assets/jupyter/blog.ipynb %}{% endcapture %} -{% if notebook_exists == 'true' %} - {% jupyter_notebook jupyter_path %} -{% else %} -

Sorry, the notebook you are looking for does not exist.

-{% endif %} -{:/nomarkdown} -``` - -{% endraw %} - -Let's break it down: this is possible thanks to [Jekyll Jupyter Notebook plugin](https://github.com/red-data-tools/jekyll-jupyter-notebook) that allows you to embed jupyter notebooks in your posts. It basically calls [`jupyter nbconvert --to html`](https://nbconvert.readthedocs.io/en/latest/usage.html#convert-html) to convert the notebook to an html page and then includes it in the post. Since [Kramdown](https://jekyllrb.com/docs/configuration/markdown/) is the default Markdown renderer for Jekyll, we need to surround the call to the plugin with the [::nomarkdown](https://kramdown.gettalong.org/syntax.html#extensions) tag so that it stops processing this part with Kramdown and outputs the content as-is. - -The plugin takes as input the path to the notebook, but it assumes the file exists. If you want to check if the file exists before calling the plugin, you can use the `file_exists` filter. This avoids getting a 404 error from the plugin and ending up displaying the main page inside of it instead. If the file does not exist, you can output a message to the user. The code displayed above outputs the following: - -{::nomarkdown} -{% assign jupyter_path = "assets/jupyter/blog.ipynb" | relative_url %} -{% capture notebook_exists %}{% file_exists assets/jupyter/blog.ipynb %}{% endcapture %} -{% if notebook_exists == "true" %} -{% jupyter_notebook jupyter_path %} -{% else %} - -

Sorry, the notebook you are looking for does not exist.

-{% endif %} -{:/nomarkdown} - -Note that the jupyter notebook supports both light and dark themes. diff --git a/_posts/2023-07-12-post-bibliography.md b/_posts/2023-07-12-post-bibliography.md deleted file mode 100644 index 168356c8..00000000 --- a/_posts/2023-07-12-post-bibliography.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: post -title: a post with bibliography -date: 2023-07-12 09:56:00-0400 -description: an example of a blog post with bibliography -tags: formatting bib -categories: sample-posts -giscus_comments: true -related_posts: false -related_publications: true ---- - -This post shows how to add bibliography to simple blog posts. We support every citation style that [jekyll-scholar](https://github.com/inukshuk/jekyll-scholar) does. That means simple citation like {% cite einstein1950meaning %}, multiple citations like {% cite einstein1950meaning einstein1905movement %}, long references like {% reference einstein1905movement %} or also quotes: - -{% quote einstein1905electrodynamics %} -Lorem ipsum dolor sit amet, consectetur adipisicing elit, -sed do eiusmod tempor. - -Lorem ipsum dolor sit amet, consectetur adipisicing. -{% endquote %} - -If you would like something more academic, check the [distill style post]({% post_url 2018-12-22-distill %}). diff --git a/_posts/2023-12-12-tikzjax.md b/_posts/2023-12-12-tikzjax.md deleted file mode 100644 index a0df3313..00000000 --- a/_posts/2023-12-12-tikzjax.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: post -title: a post with TikZJax -date: 2023-12-12 22:25:00 -description: this is what included TikZ code could look like -tags: formatting diagrams -categories: sample-posts -tikzjax: true ---- - -This is an example post with TikZ code. TikZJax converts script tags (containing TikZ code) into SVGs. - - diff --git a/_posts/2024-01-26-chartjs.md b/_posts/2024-01-26-chartjs.md deleted file mode 100644 index 210557d6..00000000 --- a/_posts/2024-01-26-chartjs.md +++ /dev/null @@ -1,188 +0,0 @@ ---- -layout: post -title: a post with chart.js -date: 2024-01-26 01:04:00 -description: this is what included chart.js code could look like -tags: formatting charts -categories: sample-posts -chart: - chartjs: true ---- - -This is an example post with some [chart.js](https://www.chartjs.org/) code. - -````markdown -```chartjs -{ - "type": "line", - "data": { - "labels": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July" - ], - "datasets": [ - { - "label": "# of bugs", - "fill": false, - "lineTension": 0.1, - "backgroundColor": "rgba(75,192,192,0.4)", - "borderColor": "rgba(75,192,192,1)", - "borderCapStyle": "butt", - "borderDash": [], - "borderDashOffset": 0, - "borderJoinStyle": "miter", - "pointBorderColor": "rgba(75,192,192,1)", - "pointBackgroundColor": "#fff", - "pointBorderWidth": 1, - "pointHoverRadius": 5, - "pointHoverBackgroundColor": "rgba(75,192,192,1)", - "pointHoverBorderColor": "rgba(220,220,220,1)", - "pointHoverBorderWidth": 2, - "pointRadius": 1, - "pointHitRadius": 10, - "data": [ - 65, - 59, - 80, - 81, - 56, - 55, - 40 - ], - "spanGaps": false - } - ] - }, - "options": {} -} -``` -```` - -This is how it looks like: - -```chartjs -{ - "type": "line", - "data": { - "labels": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July" - ], - "datasets": [ - { - "label": "# of bugs", - "fill": false, - "lineTension": 0.1, - "backgroundColor": "rgba(75,192,192,0.4)", - "borderColor": "rgba(75,192,192,1)", - "borderCapStyle": "butt", - "borderDash": [], - "borderDashOffset": 0, - "borderJoinStyle": "miter", - "pointBorderColor": "rgba(75,192,192,1)", - "pointBackgroundColor": "#fff", - "pointBorderWidth": 1, - "pointHoverRadius": 5, - "pointHoverBackgroundColor": "rgba(75,192,192,1)", - "pointHoverBorderColor": "rgba(220,220,220,1)", - "pointHoverBorderWidth": 2, - "pointRadius": 1, - "pointHitRadius": 10, - "data": [ - 65, - 59, - 80, - 81, - 56, - 55, - 40 - ], - "spanGaps": false - } - ] - }, - "options": {} -} -``` - -Also another example chart. - -````markdown -```chartjs -{ - "type": "doughnut", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow" - ], - "datasets": [ - { - "data": [ - 300, - 50, - 100 - ], - "backgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ], - "hoverBackgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ] - } - ] - }, - "options": {} -} -``` -```` - -Which generates: - -```chartjs -{ - "type": "doughnut", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow" - ], - "datasets": [ - { - "data": [ - 300, - 50, - 100 - ], - "backgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ], - "hoverBackgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ] - } - ] - }, - "options": {} -} -``` diff --git a/_posts/2024-01-26-echarts.md b/_posts/2024-01-26-echarts.md deleted file mode 100644 index b496288d..00000000 --- a/_posts/2024-01-26-echarts.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -layout: post -title: a post with echarts -date: 2024-01-26 16:03:00 -description: this is what included echarts code could look like -tags: formatting charts -categories: sample-posts -chart: - echarts: true ---- - -This is an example post with some [echarts](https://echarts.apache.org/) code. - -````markdown -```echarts -{ - "title": { - "text": "ECharts Getting Started Example" - }, - "responsive": true, - "tooltip": {}, - "legend": { - "top": "30px", - "data": ["sales"] - }, - "xAxis": { - "data": ["Shirts", "Cardigans", "Chiffons", "Pants", "Heels", "Socks"] - }, - "yAxis": {}, - "series": [ - { - "name": "sales", - "type": "bar", - "data": [5, 20, 36, 10, 10, 20] - } - ] -} -``` -```` - -Which generates: - -```echarts -{ - "title": { - "text": "ECharts Getting Started Example" - }, - "responsive": true, - "tooltip": {}, - "legend": { - "top": "30px", - "data": ["sales"] - }, - "xAxis": { - "data": ["Shirts", "Cardigans", "Chiffons", "Pants", "Heels", "Socks"] - }, - "yAxis": {}, - "series": [ - { - "name": "sales", - "type": "bar", - "data": [5, 20, 36, 10, 10, 20] - } - ] -} -``` - -Note that this library offer support for both light and dark themes. You can switch between them using the theme switcher in the top right corner of the page. diff --git a/_posts/2024-01-26-geojson-map.md b/_posts/2024-01-26-geojson-map.md deleted file mode 100644 index 6909aee6..00000000 --- a/_posts/2024-01-26-geojson-map.md +++ /dev/null @@ -1,93 +0,0 @@ ---- -layout: post -title: a post with geojson -date: 2024-01-26 17:57:00 -description: this is what included geojson code could look like -tags: formatting charts maps -categories: sample-posts -map: true ---- - -This is an example post with some [geojson](https://geojson.org/) code. The support is provided thanks to [Leaflet](https://leafletjs.com/). To create your own visualization, go to [geojson.io](https://geojson.io/). - -````markdown -```geojson -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "coordinates": [ - [ - [ - -60.11363029935569, - -2.904625022183211 - ], - [ - -60.11363029935569, - -3.162613728707967 - ], - [ - -59.820894493858034, - -3.162613728707967 - ], - [ - -59.820894493858034, - -2.904625022183211 - ], - [ - -60.11363029935569, - -2.904625022183211 - ] - ] - ], - "type": "Polygon" - } - } - ] -} -``` -```` - -Which generates: - -```geojson -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "coordinates": [ - [ - [ - -60.11363029935569, - -2.904625022183211 - ], - [ - -60.11363029935569, - -3.162613728707967 - ], - [ - -59.820894493858034, - -3.162613728707967 - ], - [ - -59.820894493858034, - -2.904625022183211 - ], - [ - -60.11363029935569, - -2.904625022183211 - ] - ] - ], - "type": "Polygon" - } - } - ] -} -``` diff --git a/_posts/2024-01-27-advanced-images.md b/_posts/2024-01-27-advanced-images.md deleted file mode 100644 index 3baa160b..00000000 --- a/_posts/2024-01-27-advanced-images.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: post -title: a post with advanced image components -date: 2024-01-27 11:46:00 -description: this is what advanced image components could look like -tags: formatting images -categories: sample-posts -thumbnail: assets/img/9.jpg -images: - compare: true - slider: true ---- - -This is an example post with advanced image components. - -## Image Slider - -This is a simple image slider. It uses the [Swiper](https://swiperjs.com/) library. Check the [examples page](https://swiperjs.com/demos) for more information of what you can achieve with it. - - - {% include figure.liquid loading="eager" path="assets/img/9.jpg" class="img-fluid rounded z-depth-1" %} - {% include figure.liquid loading="eager" path="assets/img/7.jpg" class="img-fluid rounded z-depth-1" %} - {% include figure.liquid loading="eager" path="assets/img/8.jpg" class="img-fluid rounded z-depth-1" %} - {% include figure.liquid loading="eager" path="assets/img/10.jpg" class="img-fluid rounded z-depth-1" %} - {% include figure.liquid loading="eager" path="assets/img/12.jpg" class="img-fluid rounded z-depth-1" %} - - -## Image Comparison Slider - -This is a simple image comparison slider. It uses the [img-comparison-slider](https://img-comparison-slider.sneas.io/) library. Check the [examples page](https://img-comparison-slider.sneas.io/examples.html) for more information of what you can achieve with it. - - - {% include figure.liquid path="assets/img/prof_pic.jpg" class="img-fluid rounded z-depth-1" slot="first" %} - {% include figure.liquid path="assets/img/prof_pic_color.png" class="img-fluid rounded z-depth-1" slot="second" %} - diff --git a/_posts/2024-01-27-code-diff.md b/_posts/2024-01-27-code-diff.md deleted file mode 100644 index 6ec06d5b..00000000 --- a/_posts/2024-01-27-code-diff.md +++ /dev/null @@ -1,473 +0,0 @@ ---- -layout: post -title: a post with code diff -date: 2024-01-27 19:22:00 -description: this is how you can display code diffs -tags: formatting code -categories: sample-posts -code_diff: true ---- - -You can display diff code by using the regular markdown syntax: - -````markdown -```diff -diff --git a/sample.js b/sample.js -index 0000001..0ddf2ba ---- a/sample.js -+++ b/sample.js -@@ -1 +1 @@ --console.log("Hello World!") -+console.log("Hello from Diff2Html!") -``` -```` - -Which generates: - -```diff -diff --git a/sample.js b/sample.js -index 0000001..0ddf2ba ---- a/sample.js -+++ b/sample.js -@@ -1 +1 @@ --console.log("Hello World!") -+console.log("Hello from Diff2Html!") -``` - -But this is difficult to read, specially if you have a large diff. You can use [diff2html](https://diff2html.xyz/) to display a more readable version of the diff. For this, just use `diff2html` instead of `diff` for the code block language: - -````markdown -```diff2html -diff --git a/sample.js b/sample.js -index 0000001..0ddf2ba ---- a/sample.js -+++ b/sample.js -@@ -1 +1 @@ --console.log("Hello World!") -+console.log("Hello from Diff2Html!") -``` -```` - -If we use a longer example, for example [this commit from diff2html](https://github.com/rtfpessoa/diff2html/commit/c2c253d3e3f8b8b267f551e659f72b44ca2ac927), it will generate the following output: - -```diff2html -From 2aaae31cc2a37bfff83430c2c914b140bee59b6a Mon Sep 17 00:00:00 2001 -From: Rodrigo Fernandes -Date: Sun, 9 Oct 2016 16:41:54 +0100 -Subject: [PATCH 1/2] Initial template override support - ---- - scripts/hulk.js | 4 ++-- - src/diff2html.js | 3 +-- - src/file-list-printer.js | 11 ++++++++--- - src/hoganjs-utils.js | 29 +++++++++++++++++------------ - src/html-printer.js | 6 ++++++ - src/line-by-line-printer.js | 6 +++++- - src/side-by-side-printer.js | 6 +++++- - test/file-list-printer-tests.js | 2 +- - test/hogan-cache-tests.js | 18 +++++++++++++++--- - test/line-by-line-tests.js | 3 +-- - test/side-by-side-printer-tests.js | 3 +-- - 11 files changed, 62 insertions(+), 29 deletions(-) - -diff --git a/scripts/hulk.js b/scripts/hulk.js -index 5a793c18..a4b1a4d5 100755 ---- a/scripts/hulk.js -+++ b/scripts/hulk.js -@@ -173,11 +173,11 @@ function namespace(name) { - // write a template foreach file that matches template extension - templates = extractFiles(options.argv.remain) - .map(function(file) { -- var openedFile = fs.readFileSync(file, 'utf-8'); -+ var openedFile = fs.readFileSync(file, 'utf-8').trim(); - var name; - if (!openedFile) return; - name = namespace(path.basename(file).replace(/\..*$/, '')); -- openedFile = removeByteOrderMark(openedFile.trim()); -+ openedFile = removeByteOrderMark(openedFile); - openedFile = wrap(file, name, openedFile); - if (!options.outputdir) return openedFile; - fs.writeFileSync(path.join(options.outputdir, name + '.js') -diff --git a/src/diff2html.js b/src/diff2html.js -index 21b0119e..64e138f5 100644 ---- a/src/diff2html.js -+++ b/src/diff2html.js -@@ -7,7 +7,6 @@ - - (function() { - var diffParser = require('./diff-parser.js').DiffParser; -- var fileLister = require('./file-list-printer.js').FileListPrinter; - var htmlPrinter = require('./html-printer.js').HtmlPrinter; - - function Diff2Html() { -@@ -43,7 +42,7 @@ - - var fileList = ''; - if (configOrEmpty.showFiles === true) { -- fileList = fileLister.generateFileList(diffJson, configOrEmpty); -+ fileList = htmlPrinter.generateFileListSummary(diffJson, configOrEmpty); - } - - var diffOutput = ''; -diff --git a/src/file-list-printer.js b/src/file-list-printer.js -index e408d9b2..1e0a2c61 100644 ---- a/src/file-list-printer.js -+++ b/src/file-list-printer.js -@@ -8,11 +8,16 @@ - (function() { - var printerUtils = require('./printer-utils.js').PrinterUtils; - -- var hoganUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ var hoganUtils; -+ - var baseTemplatesPath = 'file-summary'; - var iconsBaseTemplatesPath = 'icon'; - -- function FileListPrinter() { -+ function FileListPrinter(config) { -+ this.config = config; -+ -+ var HoganJsUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ hoganUtils = new HoganJsUtils(config); - } - - FileListPrinter.prototype.generateFileList = function(diffFiles) { -@@ -38,5 +43,5 @@ - }); - }; - -- module.exports.FileListPrinter = new FileListPrinter(); -+ module.exports.FileListPrinter = FileListPrinter; - })(); -diff --git a/src/hoganjs-utils.js b/src/hoganjs-utils.js -index 9949e5fa..0dda08d7 100644 ---- a/src/hoganjs-utils.js -+++ b/src/hoganjs-utils.js -@@ -8,18 +8,19 @@ - (function() { - var fs = require('fs'); - var path = require('path'); -- - var hogan = require('hogan.js'); - - var hoganTemplates = require('./templates/diff2html-templates.js'); - -- var templatesPath = path.resolve(__dirname, 'templates'); -+ var extraTemplates; - -- function HoganJsUtils() { -+ function HoganJsUtils(configuration) { -+ this.config = configuration || {}; -+ extraTemplates = this.config.templates || {}; - } - -- HoganJsUtils.prototype.render = function(namespace, view, params, configuration) { -- var template = this.template(namespace, view, configuration); -+ HoganJsUtils.prototype.render = function(namespace, view, params) { -+ var template = this.template(namespace, view); - if (template) { - return template.render(params); - } -@@ -27,17 +28,16 @@ - return null; - }; - -- HoganJsUtils.prototype.template = function(namespace, view, configuration) { -- var config = configuration || {}; -+ HoganJsUtils.prototype.template = function(namespace, view) { - var templateKey = this._templateKey(namespace, view); - -- return this._getTemplate(templateKey, config); -+ return this._getTemplate(templateKey); - }; - -- HoganJsUtils.prototype._getTemplate = function(templateKey, config) { -+ HoganJsUtils.prototype._getTemplate = function(templateKey) { - var template; - -- if (!config.noCache) { -+ if (!this.config.noCache) { - template = this._readFromCache(templateKey); - } - -@@ -53,6 +53,7 @@ - - try { - if (fs.readFileSync) { -+ var templatesPath = path.resolve(__dirname, 'templates'); - var templatePath = path.join(templatesPath, templateKey); - var templateContent = fs.readFileSync(templatePath + '.mustache', 'utf8'); - template = hogan.compile(templateContent); -@@ -66,12 +67,16 @@ - }; - - HoganJsUtils.prototype._readFromCache = function(templateKey) { -- return hoganTemplates[templateKey]; -+ return extraTemplates[templateKey] || hoganTemplates[templateKey]; - }; - - HoganJsUtils.prototype._templateKey = function(namespace, view) { - return namespace + '-' + view; - }; - -- module.exports.HoganJsUtils = new HoganJsUtils(); -+ HoganJsUtils.prototype.compile = function(templateStr) { -+ return hogan.compile(templateStr); -+ }; -+ -+ module.exports.HoganJsUtils = HoganJsUtils; - })(); -diff --git a/src/html-printer.js b/src/html-printer.js -index 585d5b66..13f83047 100644 ---- a/src/html-printer.js -+++ b/src/html-printer.js -@@ -8,6 +8,7 @@ - (function() { - var LineByLinePrinter = require('./line-by-line-printer.js').LineByLinePrinter; - var SideBySidePrinter = require('./side-by-side-printer.js').SideBySidePrinter; -+ var FileListPrinter = require('./file-list-printer.js').FileListPrinter; - - function HtmlPrinter() { - } -@@ -22,5 +23,10 @@ - return sideBySidePrinter.generateSideBySideJsonHtml(diffFiles); - }; - -+ HtmlPrinter.prototype.generateFileListSummary = function(diffJson, config) { -+ var fileListPrinter = new FileListPrinter(config); -+ return fileListPrinter.generateFileList(diffJson); -+ }; -+ - module.exports.HtmlPrinter = new HtmlPrinter(); - })(); -diff --git a/src/line-by-line-printer.js b/src/line-by-line-printer.js -index b07eb53c..d230bedd 100644 ---- a/src/line-by-line-printer.js -+++ b/src/line-by-line-printer.js -@@ -11,7 +11,8 @@ - var utils = require('./utils.js').Utils; - var Rematch = require('./rematch.js').Rematch; - -- var hoganUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ var hoganUtils; -+ - var genericTemplatesPath = 'generic'; - var baseTemplatesPath = 'line-by-line'; - var iconsBaseTemplatesPath = 'icon'; -@@ -19,6 +20,9 @@ - - function LineByLinePrinter(config) { - this.config = config; -+ -+ var HoganJsUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ hoganUtils = new HoganJsUtils(config); - } - - LineByLinePrinter.prototype.makeFileDiffHtml = function(file, diffs) { -diff --git a/src/side-by-side-printer.js b/src/side-by-side-printer.js -index bbf1dc8d..5e3033b3 100644 ---- a/src/side-by-side-printer.js -+++ b/src/side-by-side-printer.js -@@ -11,7 +11,8 @@ - var utils = require('./utils.js').Utils; - var Rematch = require('./rematch.js').Rematch; - -- var hoganUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ var hoganUtils; -+ - var genericTemplatesPath = 'generic'; - var baseTemplatesPath = 'side-by-side'; - var iconsBaseTemplatesPath = 'icon'; -@@ -26,6 +27,9 @@ - - function SideBySidePrinter(config) { - this.config = config; -+ -+ var HoganJsUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ hoganUtils = new HoganJsUtils(config); - } - - SideBySidePrinter.prototype.makeDiffHtml = function(file, diffs) { -diff --git a/test/file-list-printer-tests.js b/test/file-list-printer-tests.js -index a502a46f..60ea3208 100644 ---- a/test/file-list-printer-tests.js -+++ b/test/file-list-printer-tests.js -@@ -1,6 +1,6 @@ - var assert = require('assert'); - --var fileListPrinter = require('../src/file-list-printer.js').FileListPrinter; -+var fileListPrinter = new (require('../src/file-list-printer.js').FileListPrinter)(); - - describe('FileListPrinter', function() { - describe('generateFileList', function() { -diff --git a/test/hogan-cache-tests.js b/test/hogan-cache-tests.js -index 190bf6f8..3bb754ac 100644 ---- a/test/hogan-cache-tests.js -+++ b/test/hogan-cache-tests.js -@@ -1,6 +1,6 @@ - var assert = require('assert'); - --var HoganJsUtils = require('../src/hoganjs-utils.js').HoganJsUtils; -+var HoganJsUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)(); - var diffParser = require('../src/diff-parser.js').DiffParser; - - describe('HoganJsUtils', function() { -@@ -21,16 +21,28 @@ describe('HoganJsUtils', function() { - }); - assert.equal(emptyDiffHtml, result); - }); -+ - it('should render view without cache', function() { - var result = HoganJsUtils.render('generic', 'empty-diff', { - contentClass: 'd2h-code-line', - diffParser: diffParser - }, {noCache: true}); -- assert.equal(emptyDiffHtml + '\n', result); -+ assert.equal(emptyDiffHtml, result); - }); -+ - it('should return null if template is missing', function() { -- var result = HoganJsUtils.render('generic', 'missing-template', {}, {noCache: true}); -+ var hoganUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)({noCache: true}); -+ var result = hoganUtils.render('generic', 'missing-template', {}); - assert.equal(null, result); - }); -+ -+ it('should allow templates to be overridden', function() { -+ var emptyDiffTemplate = HoganJsUtils.compile('

{{myName}}

'); -+ -+ var config = {templates: {'generic-empty-diff': emptyDiffTemplate}}; -+ var hoganUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)(config); -+ var result = hoganUtils.render('generic', 'empty-diff', {myName: 'Rodrigo Fernandes'}); -+ assert.equal('

Rodrigo Fernandes

', result); -+ }); - }); - }); -diff --git a/test/line-by-line-tests.js b/test/line-by-line-tests.js -index 1cd92073..8869b3df 100644 ---- a/test/line-by-line-tests.js -+++ b/test/line-by-line-tests.js -@@ -14,7 +14,7 @@ describe('LineByLinePrinter', function() { - ' File without changes\n' + - ' \n' + - ' \n' + -- '\n'; -+ ''; - - assert.equal(expected, fileHtml); - }); -@@ -422,7 +422,6 @@ describe('LineByLinePrinter', function() { - ' \n' + - ' \n' + - '\n' + -- '\n' + - ' \n' + - ' \n' + - ' \n' + -diff --git a/test/side-by-side-printer-tests.js b/test/side-by-side-printer-tests.js -index 76625f8e..771daaa5 100644 ---- a/test/side-by-side-printer-tests.js -+++ b/test/side-by-side-printer-tests.js -@@ -14,7 +14,7 @@ describe('SideBySidePrinter', function() { - ' File without changes\n' + - ' \n' + - ' \n' + -- '\n'; -+ ''; - - assert.equal(expectedRight, fileHtml.right); - assert.equal(expectedLeft, fileHtml.left); -@@ -324,7 +324,6 @@ describe('SideBySidePrinter', function() { - ' \n' + - ' \n' + - '\n' + -- '\n' + - ' \n' + - ' \n' + - ' \n' + - -From f3cadb96677d0eb82fc2752dc3ffbf35ca9b5bdb Mon Sep 17 00:00:00 2001 -From: Rodrigo Fernandes -Date: Sat, 15 Oct 2016 13:21:22 +0100 -Subject: [PATCH 2/2] Allow uncompiled templates - ---- - README.md | 3 +++ - src/hoganjs-utils.js | 7 +++++++ - test/hogan-cache-tests.js | 24 +++++++++++++++++++++++- - 3 files changed, 33 insertions(+), 1 deletion(-) - -diff --git a/README.md b/README.md -index 132c8a28..46909f25 100644 ---- a/README.md -+++ b/README.md -@@ -98,6 +98,9 @@ The HTML output accepts a Javascript object with configuration. Possible options - - `synchronisedScroll`: scroll both panes in side-by-side mode: `true` or `false`, default is `false` - - `matchWordsThreshold`: similarity threshold for word matching, default is 0.25 - - `matchingMaxComparisons`: perform at most this much comparisons for line matching a block of changes, default is `2500` -+ - `templates`: object with previously compiled templates to replace parts of the html -+ - `rawTemplates`: object with raw not compiled templates to replace parts of the html -+ > For more information regarding the possible templates look into [src/templates](https://github.com/rtfpessoa/diff2html/tree/master/src/templates) - - ## Diff2HtmlUI Helper - -diff --git a/src/hoganjs-utils.js b/src/hoganjs-utils.js -index 0dda08d7..b2e9c275 100644 ---- a/src/hoganjs-utils.js -+++ b/src/hoganjs-utils.js -@@ -17,6 +17,13 @@ - function HoganJsUtils(configuration) { - this.config = configuration || {}; - extraTemplates = this.config.templates || {}; -+ -+ var rawTemplates = this.config.rawTemplates || {}; -+ for (var templateName in rawTemplates) { -+ if (rawTemplates.hasOwnProperty(templateName)) { -+ if (!extraTemplates[templateName]) extraTemplates[templateName] = this.compile(rawTemplates[templateName]); -+ } -+ } - } - - HoganJsUtils.prototype.render = function(namespace, view, params) { -diff --git a/test/hogan-cache-tests.js b/test/hogan-cache-tests.js -index 3bb754ac..a34839c0 100644 ---- a/test/hogan-cache-tests.js -+++ b/test/hogan-cache-tests.js -@@ -36,7 +36,7 @@ describe('HoganJsUtils', function() { - assert.equal(null, result); - }); - -- it('should allow templates to be overridden', function() { -+ it('should allow templates to be overridden with compiled templates', function() { - var emptyDiffTemplate = HoganJsUtils.compile('

{{myName}}

'); - - var config = {templates: {'generic-empty-diff': emptyDiffTemplate}}; -@@ -44,5 +44,27 @@ describe('HoganJsUtils', function() { - var result = hoganUtils.render('generic', 'empty-diff', {myName: 'Rodrigo Fernandes'}); - assert.equal('

Rodrigo Fernandes

', result); - }); -+ -+ it('should allow templates to be overridden with uncompiled templates', function() { -+ var emptyDiffTemplate = '

{{myName}}

'; -+ -+ var config = {rawTemplates: {'generic-empty-diff': emptyDiffTemplate}}; -+ var hoganUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)(config); -+ var result = hoganUtils.render('generic', 'empty-diff', {myName: 'Rodrigo Fernandes'}); -+ assert.equal('

Rodrigo Fernandes

', result); -+ }); -+ -+ it('should allow templates to be overridden giving priority to compiled templates', function() { -+ var emptyDiffTemplate = HoganJsUtils.compile('

{{myName}}

'); -+ var emptyDiffTemplateUncompiled = '

Not used!

'; -+ -+ var config = { -+ templates: {'generic-empty-diff': emptyDiffTemplate}, -+ rawTemplates: {'generic-empty-diff': emptyDiffTemplateUncompiled} -+ }; -+ var hoganUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)(config); -+ var result = hoganUtils.render('generic', 'empty-diff', {myName: 'Rodrigo Fernandes'}); -+ assert.equal('

Rodrigo Fernandes

', result); -+ }); - }); - }); -``` diff --git a/_posts/2024-01-27-vega-lite.md b/_posts/2024-01-27-vega-lite.md deleted file mode 100644 index e94c3dee..00000000 --- a/_posts/2024-01-27-vega-lite.md +++ /dev/null @@ -1,104 +0,0 @@ ---- -layout: post -title: a post with vega lite -date: 2024-01-27 00:20:00 -description: this is what included vega lite code could look like -tags: formatting charts -categories: sample-posts -chart: - vega_lite: true ---- - -This is an example post with some [vega lite](https://vega.github.io/vega-lite/) code. - -````markdown -```vega_lite -{ - "$schema": "https://vega.github.io/schema/vega-lite/v5.json", - "description": "A dot plot showing each movie in the database, and the difference from the average movie rating. The display is sorted by year to visualize everything in sequential order. The graph is for all Movies before 2019.", - "data": { - "url": "https://raw.githubusercontent.com/vega/vega/main/docs/data/movies.json" - }, - "transform": [ - {"filter": "datum['IMDB Rating'] != null"}, - {"filter": {"timeUnit": "year", "field": "Release Date", "range": [null, 2019]}}, - { - "joinaggregate": [{ - "op": "mean", - "field": "IMDB Rating", - "as": "AverageRating" - }] - }, - { - "calculate": "datum['IMDB Rating'] - datum.AverageRating", - "as": "RatingDelta" - } - ], - "mark": "point", - "encoding": { - "x": { - "field": "Release Date", - "type": "temporal" - }, - "y": { - "field": "RatingDelta", - "type": "quantitative", - "title": "Rating Delta" - }, - "color": { - "field": "RatingDelta", - "type": "quantitative", - "scale": {"domainMid": 0}, - "title": "Rating Delta" - } - } -} -``` -```` - -Which generates: - -```vega_lite -{ - "$schema": "https://vega.github.io/schema/vega-lite/v5.json", - "description": "A dot plot showing each movie in the database, and the difference from the average movie rating. The display is sorted by year to visualize everything in sequential order. The graph is for all Movies before 2019.", - "data": { - "url": "https://raw.githubusercontent.com/vega/vega/main/docs/data/movies.json" - }, - "transform": [ - {"filter": "datum['IMDB Rating'] != null"}, - {"filter": {"timeUnit": "year", "field": "Release Date", "range": [null, 2019]}}, - { - "joinaggregate": [{ - "op": "mean", - "field": "IMDB Rating", - "as": "AverageRating" - }] - }, - { - "calculate": "datum['IMDB Rating'] - datum.AverageRating", - "as": "RatingDelta" - } - ], - "mark": "point", - "encoding": { - "x": { - "field": "Release Date", - "type": "temporal" - }, - "y": { - "field": "RatingDelta", - "type": "quantitative", - "title": "Rating Delta" - }, - "color": { - "field": "RatingDelta", - "type": "quantitative", - "scale": {"domainMid": 0}, - "title": "Rating Delta" - } - } -} -``` - -This plot supports both light and dark themes. diff --git a/_posts/2024-04-09.md b/_posts/2024-04-09.md new file mode 100644 index 00000000..0c7dc039 --- /dev/null +++ b/_posts/2024-04-09.md @@ -0,0 +1,42 @@ +--- +layout: post +title: 個人ページ作りました. +date: 2024-04-09 +description: 博士になったし,みんな持ってるし,個人ページ作ったほうがいいかなと思って作りました.意外と時間かかりました. +tags: +categories: ジブリッシュ +featured: false +--- + +### 個人ページ作らむと欲す. + +欧米のイカした研究者はみんなかっこいいpersonal web pageを持っている印象があって,自分も欲しいなーと漠然と思っていましたが,なかなか作る時間が取れずにいました. +博士課程がこの4月から始まって,まだ時間がゆったり流れているので,時間があるうちに作ってしまおうと思い立ちました.あと,新入生が,「ラボを決める前にラボのメンバーの個人ページはあるものは全部読んだ」と言っていて,RLに興味がある人がラボに増えるかもしれないというプラクティカルな効用もあると気がつき,重い腰を上げました. + +### できるだけ楽に作りたい. +いろいろ調べて,とりあえず[GitHub Pages](https://docs.github.com/ja/pages/getting-started-with-github-pages/about-github-pages)を使うのが簡単そうと言う結論に達しました.WebサイトをGithub上のレポジトリから直接ホストできます.自分でサーバーとか用意しなくていいのがいいですね.さて,僕はwebプログラミングの知識が皆無なので,テンプレートを探すことにしました. + +- [academicpages](https://github.com/academicpages/academicpages.github.io?tab=readme-ov-file): 多分一番ポピュラーなやつです.クリックしてもらうと見たことある!となると思います. +- [al-folio](https://github.com/alshedivat/al-folio): これもかなりスター多いです.デザインが好みだったのでこれにしました. +- [minima](https://github.com/jekyll/minima): Jekyllでwebページを作る際のミニマルなテンプレートみたいです. + +### デフォルトページを表示するまで. +テンプレートは[al-folio](https://github.com/alshedivat/al-folio)に決まったので,あとはこれをいじるだけかと思いきや,いろいろハマりました. +ここでは,僕みたいにwebプログラミング何もわからないけどとにかくパッと個人ページ欲しい人向けに,2024年4月現在うまくいく方法を書いておきます. + +**ステップ1**: テンプレートページをデプロイする. + +ここでは,https://.github.ioを検索すると,テンプレートである,アインシュタインの個人ページが表示される状態になることを目指します. +1. [aI-folio](https://github.com/alshedivat/al-folio)の右上にある`Use this template`をクリックして,`.github.io`と言う名前のレポジトリを作りましょう.この際, `Include all branches`にチェックをつけましょう. + +2. `Setting -> Actions -> General -> Workflow permission`にいき,`Read and write permission`の権限をGithub Actionに与えてください. + +3. `_config.yaml`の`url`を`https://.github.io`に変更し,`baseurl`の値を消してください.(**baseurl**と言うkeyは消さないでください) + +4. `Settings -> Pages -> Build and deployment`で,`branch`を`gh-pages`(github pagesでデプロイするためのbranch)に変更してください. + +上記の方法は,エラーに出会って検索した[issue](https://github.com/alshedivat/al-folio/issues/1438#issuecomment-1951693154)で見つけました. + +**ステップ2** カスタマイズ. + +ステップ1 ができればあとはもう簡単です.[al-folioのREADME](https://github.com/alshedivat/al-folio?tab=readme-ov-file#al-folio)を参考に,適切なファイルに変更を加えていってください.マージが行われるたびに自動で変更後のwebpageをデプロイしてくれます.[GitHub Actionsでフォーマットチェッカーやリンクチャッカーが動いている](https://github.com/nissymori/nissymori.github.io?tab=readme-ov-file#code-quality-checks)ので,怒られたら指示に従って直しましょう. diff --git a/assets/json/resume.json b/assets/json/resume.json index c018b092..b7d3d341 100644 --- a/assets/json/resume.json +++ b/assets/json/resume.json @@ -27,7 +27,7 @@ "position": "Research Part-timer", "url": "https://www.riken.jp/en/research/labs/aip/index.html", "startDate": "2024-04-01", - "endDate": "Present" + "endDate": "" } ], "education": [