diff --git a/css/index.css b/css/index.css index abf8be5b0..31407a258 100644 --- a/css/index.css +++ b/css/index.css @@ -256,7 +256,7 @@ background-color:#5596f5 !important; @layer components { h1 { @apply text-4xl lg:text-6xl font-normal; - color: #2b2b2b; + color: #ffffff; font-family: "Inter", sans-serif !important; } h2 { @@ -269,7 +269,7 @@ background-color:#5596f5 !important; } h3 { @apply text-2xl lg:text-3xl my-4 font-extralight; - color: #2b2b2b; + color: #ffffff; font-family: "Inter", sans-serif !important; } h3 strong { @@ -324,12 +324,12 @@ background-color:#5596f5 !important; } h3 a{ - color:#2b2b2b; + color:#ffffff; } h3 a:hover{ - color:#2E83FF; + color:#b6b6b6; } @@ -342,7 +342,7 @@ background-color:#5596f5 !important; font-family: "Inter", sans-serif; line-height: 1.5; font-weight: 700; - color:#333; + color:#e2e2e2; } .article h1{ @@ -354,7 +354,7 @@ background-color:#5596f5 !important; font-size: 1.125rem; font-family: "Inter", sans-serif; line-height: 1.7; - color:#333 + color:#e2e2e2 } .post-content-text a, .article a{ @@ -369,7 +369,7 @@ background-color:#5596f5 !important; font-size: 1.125rem; font-family: "Inter", sans-serif; line-height: 1.7; - color:#333 + color:#e2e2e2 } .article h3{ diff --git a/templates/partials/blogSidebar.html b/templates/partials/blogSidebar.html index 7d0cde20a..c7dabd188 100644 --- a/templates/partials/blogSidebar.html +++ b/templates/partials/blogSidebar.html @@ -1,25 +1,25 @@
-

FILTER POSTS BY

- All +

FILTER POSTS BY

+ All {% set taxonomy = get_taxonomy(kind="categories") %} {% set categories = taxonomy.items %} {% for category in categories %} {% set path = category.name | slugify %} {% set fullpath = "/categories/" ~ path %} - {{category.name}} + {{category.name}} {% endfor %}
{% set section = get_section(path="blog/_index.md")%}
-

FEATURED POSTS

+

FEATURED POSTS

{% for page in section.pages %} {% if page.extra.isFeatured %} - {{ page.title }} + {{ page.title }} {% endif %} {% endfor %} diff --git a/templates/partials/featuredBlog.html b/templates/partials/featuredBlog.html index 4b662c659..5875b4c84 100644 --- a/templates/partials/featuredBlog.html +++ b/templates/partials/featuredBlog.html @@ -11,30 +11,30 @@
-

FEATURED POST

+

FEATURED POST

+ class="text-2xl main-title md:text-4xl fw-500 text-gray-50 leading-snug font-medium"> {{ featured.title }}

-

+

{{ featured.description }}

-

+

{{ featured.date | date(format="%B %e, %Y", timezone="America/Chicago")}} - {% for author in featured.taxonomies.people %} {% set author_path = 'people/' ~ author ~ '/index.md' %} {% set author = get_page(path=author_path) %} {% set author_img = get_url(path='/' ~ author.relative_path | replace(from='_', to='-') | replace(from='index.md', to=author.extra.imgPath)) %} - {{ author.title }} {{ author.title }} {% endfor %}

@@ -42,11 +42,11 @@
- +
-
+
diff --git a/templates/partials/featuredNews.html b/templates/partials/featuredNews.html index 20a90fd6c..50e03c627 100644 --- a/templates/partials/featuredNews.html +++ b/templates/partials/featuredNews.html @@ -2,24 +2,24 @@
-

FEATURED NEWS

+

FEATURED NEWS

+ class="text-2xl main-title md:text-4xl fw-500 text-gray-50 font-medium"> {{ featured.title }}

-

+

{{ featured.description }}

-

+

{{ featured.date | date(format="%B %e, %Y", timezone="America/Chicago")}} - {% for author in featured.taxonomies.people %} {% set author_path = 'people/' ~ author ~ '/index.md' %} {% set author = get_page(path=author_path) %} {% set author_img = get_url(path='/' ~ author.relative_path | replace(from='_', to='-') | replace(from='index.md', to=author.extra.imgPath)) %} - {{ author.title }} +

\ No newline at end of file diff --git a/templates/partials/newsCard.html b/templates/partials/newsCard.html index e7061e6a9..76c703f78 100644 --- a/templates/partials/newsCard.html +++ b/templates/partials/newsCard.html @@ -1,4 +1,4 @@ -
+
@@ -7,13 +7,13 @@ {% endif %}
-
+ -

+

diff --git a/templates/partials/newsSidebar.html b/templates/partials/newsSidebar.html index 78ee1497c..42bc6e7cb 100644 --- a/templates/partials/newsSidebar.html +++ b/templates/partials/newsSidebar.html @@ -1,25 +1,25 @@

-

FILTER NEWS BY

- All +

FILTER NEWS BY

+ All {% set taxonomy = get_taxonomy(kind="news-category") %} {% set categories = taxonomy.items %} {% for category in categories %} {% set path = category.name | slugify %} {% set fullpath = "/news-category/" ~ path %} - {{category.name}} + {{category.name}} {% endfor %}
{% set section = get_section(path="newsroom/_index.md")%}