Skip to content

Commit

Permalink
Added words / phrases
Browse files Browse the repository at this point in the history
  • Loading branch information
aparnaittekot committed Aug 14, 2024
1 parent 08da08e commit 12d44ec
Show file tree
Hide file tree
Showing 22 changed files with 77 additions and 5 deletions.
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ collections:
tabs:
output: true
sort_by: order
new_words:
output: true

defaults:
- scope:
Expand Down
2 changes: 2 additions & 0 deletions _data/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ tabs:
categories: Categories
tags: Tags
all-posts: All Posts
coming-soon: Coming Soon
authors: Authors
# upcoming-blogs: Upcoming Blogs
music: Music
technology: Technology
words: Words / Phrases
# upcoming-music-covers: Upcoming Music Covers

# the text displayed in the search bar & search results
Expand Down
21 changes: 21 additions & 0 deletions _layouts/words.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
layout: page
# All the Tags of posts.
---

<div id="tags" class="d-flex flex-wrap mx-xl-2">
{% assign tags = '' | split: '' %}
{% for t in site.new_words %}
{% assign tags = tags | push: t %}
{% endfor %}

{% assign sorted_tags = tags | sort_natural %}

{% for t in sorted_tags %}
<div>
<a class="tag">
{{ t.name }} - {{ t.meaning }}
</a>
</div>
{% endfor %}
</div>
4 changes: 4 additions & 0 deletions _new_words/2024-07-01-word.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
name: Cavalier
meaning: No proper concern
---
4 changes: 4 additions & 0 deletions _new_words/2024-08-03-word.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
name: Off Colour
meaning: Slightly ill
---
4 changes: 4 additions & 0 deletions _new_words/2024-08-09-word.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
name: Famished
meaning: Extremely Hungry
---
4 changes: 4 additions & 0 deletions _new_words/2024-08-14-word.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
name: Ephemeral
meaning: Lasting only a short period of time
---
17 changes: 17 additions & 0 deletions _posts/_drafts/2024-07-26-love-story-cover.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
title: "Love Story" by Indila - Short Keyboard Cover
categories: [Music Cover]
tags: [keyboard-cover, music]
comments: false
date: 2024-07-26 00:00:00 +0530
layout: page
type: MusicCover
---

My attempt at covering "Love Story" by Indila.
Coming Soon!
<!--
[![IMAGE ALT TEXT HERE](https://img.youtube.com/vi/-blqdshX-9g/0.jpg)](
https://youtube.com/shorts/-blqdshX-9g) -->

<!-- {% include embed/youtube.html id='-blqdshX-9g' %} -->
10 changes: 10 additions & 0 deletions _posts/_drafts/2024-08-10-musical-notation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: Musical Notation
categories: [Music Theory]
tags: [keyboard-cover, music, theory, western]
date: 2024-09-10 00:00:00 +0530
type: Music Theory
pin: true
---


Empty file.
Empty file added _posts/_drafts/chaos-theory.md
Empty file.
Binary file added _posts/music/.DS_Store
Binary file not shown.
File renamed without changes.
1 change: 0 additions & 1 deletion _posts/music/theory/2024-06-05-major-scales-formula.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ categories: [Music Theory]
tags: [keyboard-cover, music, theory, western]
date: 2024-06-05 00:00:00 +0530
type: Music Theory
pin: true
---

Below are the `12 music notes` in western music
Expand Down
1 change: 0 additions & 1 deletion _posts/music/theory/2024-07-08-minor-scales-formula.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ categories: [Music Theory]
tags: [keyboard-cover, music, theory, western]
date: 2024-07-08 00:00:00 +0530
type: Music Theory
pin: true
---


Expand Down
2 changes: 1 addition & 1 deletion _tabs/authors.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Authors
icon: fas fa-regular fa-at
order: 8
order: 9
---

## Aparna Ittekot
Expand Down
2 changes: 1 addition & 1 deletion _tabs/categories.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
layout: categories
title: Categories
icon: fas fa-stream
order: 6
order: 7
---
2 changes: 1 addition & 1 deletion _tabs/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
layout: tags
title: Tags
icon: fas fa-tag
order: 7
order: 8
---
6 changes: 6 additions & 0 deletions _tabs/words.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Interesting words / phrases
layout: words
icon: fa-solid fa-spell-check
order: 6
---

0 comments on commit 12d44ec

Please sign in to comment.