diff --git a/docs/blog/what-is-education/index.html b/docs/blog/what-is-education/index.html index 55d7234..2a9dd64 100644 --- a/docs/blog/what-is-education/index.html +++ b/docs/blog/what-is-education/index.html @@ -16,4 +16,4 @@ Academics system has evolved with time and got worst. Let’s see what the syste Subscribe

What is Education?


What is Education? #

Education simply means “learning”. It’s a natural process.

Ratio of components in Education: #

50% Knowledge/Understanding, 30% Skills, 20% Experience.

Education vs Academics: #

Education and Academics are not the same thing. Academics is Education based of a curriculum and an institution. Plato discovered the word while describing his school of philosophy.

Academics system has evolved with time and got worst. Let’s see what the system has become nowadays: #

Extra bad: #

Education as a concept/implementation/system is good. -Academics is good only as a concept. It’s implementation and system is always the worst and corrupted.

Activities in Education: #

Read vs Study vs Research: #

  1. Read: Reading is about watching or interpreting something/someone to gain knowledge.

  2. Study: Studying is about interpreting a topic, going deeper and gaining some conscious understanding out of it.

  3. Research: Research is about studying a topic and then contributing to it with changes from your end.

Knowledge vs Entertainment: #

Example:

  1. The first book was to provide Knowledge/Understanding, but later books became a source of Entertainment (fiction).
  2. Videos can be used for both Knowledge/Understanding and Entertainment purposes. For example, for Knowledge/Understanding, there are documentaries, tutorial videos etc. For Entertainment, there are movies, funny videos etc.
Tags:
Categories:

Comments

\ No newline at end of file +Academics is good only as a concept. It’s implementation and system is always the worst and corrupted.

Activities in Education: #

Read vs Study vs Research: #

  1. Read: Reading is about watching or interpreting something/someone to gain knowledge.

  2. Study: Studying is about interpreting a topic, going deeper and gaining some conscious understanding out of it.

  3. Research: Research is about studying a topic and then contributing to it with changes from your end.

Knowledge vs Entertainment: #

Example:

  1. The first book was to provide Knowledge/Understanding, but later books became a source of Entertainment (fiction).
  2. Videos can be used for both Knowledge/Understanding and Entertainment purposes. For example, for Knowledge/Understanding, there are documentaries, tutorial videos etc. For Entertainment, there are movies, funny videos etc.
Tags:
Categories:

Comments

\ No newline at end of file diff --git a/docs/css/custom.css b/docs/css/custom.css index 8c4d1df..03bc49d 100644 --- a/docs/css/custom.css +++ b/docs/css/custom.css @@ -940,7 +940,7 @@ padding: 0.35rem 0.9rem; background: var(--accent-color); color: #fff; - border: 1px solid var(--accent-color); + border: none; border-radius: 4px; font: inherit; font-size: 0.85rem; @@ -962,7 +962,7 @@ [data-theme='dark'] .comment-form__submit { background-color: transparent; - border-color: var(--foreground-color); + border: 1px solid var(--foreground-color); color: var(--foreground-color); } @@ -975,7 +975,7 @@ @media (prefers-color-scheme: dark) { .comment-form__submit { background-color: transparent; - border-color: var(--foreground-color); + border: 1px solid var(--foreground-color); color: var(--foreground-color); } diff --git a/layouts/blog/single.html b/layouts/blog/single.html index 5505ac8..73a3ddd 100644 --- a/layouts/blog/single.html +++ b/layouts/blog/single.html @@ -160,8 +160,9 @@ // Nested replies var repliesEl = el.querySelector('.comment__replies'); - if (c.replies && c.replies.length) { - c.replies.forEach(function (r) { + var replyList = Array.isArray(c.replies) ? c.replies : Object.values(c.replies || {}); + if (replyList.length) { + replyList.forEach(function (r) { repliesEl.appendChild(renderComment(r, depth + 1)); }); } diff --git a/static/css/custom.css b/static/css/custom.css index 8c4d1df..03bc49d 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -940,7 +940,7 @@ padding: 0.35rem 0.9rem; background: var(--accent-color); color: #fff; - border: 1px solid var(--accent-color); + border: none; border-radius: 4px; font: inherit; font-size: 0.85rem; @@ -962,7 +962,7 @@ [data-theme='dark'] .comment-form__submit { background-color: transparent; - border-color: var(--foreground-color); + border: 1px solid var(--foreground-color); color: var(--foreground-color); } @@ -975,7 +975,7 @@ @media (prefers-color-scheme: dark) { .comment-form__submit { background-color: transparent; - border-color: var(--foreground-color); + border: 1px solid var(--foreground-color); color: var(--foreground-color); }