Skip to content

Commit 6d01982

Browse files
committed
fix: deploy
1 parent 82cecd0 commit 6d01982

File tree

5 files changed

+28
-25
lines changed

5 files changed

+28
-25
lines changed

_data/linkedin_posts.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// File deleted

_data/navigation.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
- name: Home
22
link: /
3-
- name: GitHub
4-
link: https://github.com/NotAwar
53
- name: CV
64
link: /cv/
75
- name: Contact

_layouts/linkedin_extended.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

assets/css/style.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -762,3 +762,13 @@ p {
762762
}
763763
}
764764
}
765+
766+
body {
767+
background-color: #000;
768+
color: #d4af37;
769+
}
770+
771+
a {
772+
color: #d4af37;
773+
}
774+
// You can add further custom overrides below as needed

index.html

Lines changed: 17 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h2 class="hero-subtitle">Senior Cloud Engineer | Competency Lead for Cloud Nati
1717
</div>
1818
</div>
1919

20-
<!-- GitHub Projects Section -->
20+
<!-- GitHub Projects Section (restored) -->
2121
<section class="projects-section">
2222
<div class="container">
2323
<h2 class="section-title">GitHub Projects</h2>
@@ -42,28 +42,18 @@ <h3 class="project-title">
4242
</div>
4343
</section>
4444

45-
<!-- LinkedIn Posts Section -->
46-
<section class="linkedin-section">
45+
<!-- Recent Posts Feed Section -->
46+
<section class="recent-posts">
4747
<div class="container">
48-
<h2 class="section-title">Latest LinkedIn Posts</h2>
49-
<div class="linkedin-grid">
50-
{% for post in site.data.linkedin_posts limit:3 %}
51-
<div class="linkedin-card">
52-
<div class="linkedin-header">
53-
<img src="/assets/images/linkedin-icon.png" alt="LinkedIn" class="linkedin-icon">
54-
<span class="post-date">{{ post.date | date: "%b %d, %Y" }}</span>
55-
</div>
56-
<h3 class="post-title">{{ post.title }}</h3>
57-
<p class="post-excerpt">{{ post.excerpt }}</p>
58-
<a href="{{ post.url }}" class="linkedin-link" target="_blank">Read on LinkedIn →</a>
59-
</div>
48+
<h2 class="section-title">Recent Posts</h2>
49+
<ul class="post-feed">
50+
{% for post in site.posts limit:5 %}
51+
<li>
52+
<a href="{{ post.url | relative_url }}">{{ post.title }}</a>
53+
<span class="post-date">{{ post.date | date: "%d %b %Y" }}</span>
54+
</li>
6055
{% endfor %}
61-
</div>
62-
<div class="profile-link">
63-
<a href="https://www.linkedin.com/in/notawar" target="_blank" class="btn linkedin-btn">
64-
Follow on LinkedIn
65-
</a>
66-
</div>
56+
</ul>
6757
</div>
6858
</section>
6959

@@ -96,7 +86,7 @@ <h4>Programming</h4>
9686
</div>
9787
</section>
9888

99-
<!-- Contact Section with prominent links -->
89+
<!-- Contact Section with additional GitHub link -->
10090
<section class="contact-section">
10191
<div class="container">
10292
<h2 class="section-title">Get In Touch</h2>
@@ -109,6 +99,11 @@ <h2 class="section-title">Get In Touch</h2>
10999
<span class="contact-icon">LinkedIn</span>
110100
<span class="contact-handle">Connect with me</span>
111101
</a>
102+
<!-- Added extra GitHub link for emphasis -->
103+
<a href="https://github.com/NotAwar?tab=repositories" class="contact-card">
104+
<span class="contact-icon">View Projects</span>
105+
<span class="contact-handle">See my GitHub</span>
106+
</a>
112107
</div>
113108
</div>
114109
</section>

0 commit comments

Comments
 (0)