Skip to content

Commit 83dfe95

Browse files
committed
fix: deploy
1 parent 7c3fb97 commit 83dfe95

File tree

7 files changed

+167
-314
lines changed

7 files changed

+167
-314
lines changed

_data/linkedin_posts.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
- title: "Cloud Native Day Oslo 2025 – My Notes & Takeaways"
2+
date: 2025-03-14
3+
url: "https://www.linkedin.com/posts/notawar_hashtag-activity-id"
4+
excerpt: "I had the opportunity to attend Cloud Native Day Oslo yesterday and wanted to share my key takeaways from this incredible event. The community engagement and technical depth of sessions exceeded my expectations."
5+
6+
- title: "5 Key DevOps Practices for Cloud-Native Applications"
7+
date: 2024-10-01
8+
url: "https://www.linkedin.com/posts/notawar_devops-cloudnative-bestpractices-activity"
9+
excerpt: "After leading several cloud-native transformations, I've identified these five essential DevOps practices that consistently drive results: Automated testing, Infrastructure as Code, Observability, CI/CD pipelines, and Post-mortems."
10+
11+
- title: "My Experience Working with Kubernetes in Production"
12+
date: 2024-08-15
13+
url: "https://www.linkedin.com/posts/notawar_kubernetes-cloudnative-devops-activity"
14+
excerpt: "Three years into running production workloads on Kubernetes, here are the most important lessons I've learned about scaling, monitoring, and maintaining these complex systems."
15+
16+
- title: "The Future of Cloud Engineering: Predictions for 2025"
17+
date: 2024-07-22
18+
url: "https://www.linkedin.com/posts/notawar_cloud-futureteech-predictions-activity"
19+
excerpt: "As we move deeper into the cloud-native era, these are my predictions for where cloud engineering is heading in 2025, including the rise of FinOps, GitOps becoming the standard, and the increasing importance of edge computing."
20+
21+
- title: "Testing GitHub Pages Deployment"
22+
date: 2023-08-01
23+
url: "https://www.linkedin.com/posts/notawar_test-post"
24+
excerpt: "Testing GitHub Pages deployment with a simple post. GitHub Pages can sometimes be tricky to set up correctly with common issues like workflow configuration, branch naming conventions, and caching issues."

_layouts/linkedin_extended.html

Lines changed: 0 additions & 30 deletions
This file was deleted.

_linkedin_extended/2023-01-01-sample-extended-post.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

_linkedin_extended/2023-08-01-testing-github-pages.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

_linkedin_extended/2025-03-14-cn-day-oslo.md

Lines changed: 0 additions & 142 deletions
This file was deleted.

assets/css/style.scss

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1617,3 +1617,95 @@ p {
16171617
box-shadow: 0 5px 15px var(--shadow-color);
16181618
}
16191619
}
1620+
1621+
// LinkedIn Feed Section
1622+
.linkedin-section {
1623+
padding: 80px 0;
1624+
background-color: var(--black-secondary);
1625+
}
1626+
1627+
.linkedin-grid {
1628+
display: grid;
1629+
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
1630+
gap: 30px;
1631+
margin-bottom: 40px;
1632+
}
1633+
1634+
.linkedin-card {
1635+
background-color: var(--black-tertiary);
1636+
border-radius: 10px;
1637+
padding: 25px;
1638+
box-shadow: 0 5px 15px var(--shadow-color);
1639+
border: 1px solid var(--border-color);
1640+
transition: all 0.3s ease;
1641+
height: 100%;
1642+
display: flex;
1643+
flex-direction: column;
1644+
1645+
&:hover {
1646+
transform: translateY(-3px);
1647+
box-shadow: 0 8px 20px var(--shadow-color);
1648+
border-color: var(--gold-muted);
1649+
}
1650+
1651+
.linkedin-header {
1652+
display: flex;
1653+
align-items: center;
1654+
margin-bottom: 15px;
1655+
1656+
.linkedin-icon {
1657+
width: 20px;
1658+
height: 20px;
1659+
margin-right: 10px;
1660+
}
1661+
1662+
.post-date {
1663+
color: var(--text-muted);
1664+
font-size: 0.9rem;
1665+
}
1666+
}
1667+
1668+
.post-title {
1669+
font-size: 1.4rem;
1670+
margin-top: 0;
1671+
margin-bottom: 15px;
1672+
color: var(--gold-primary);
1673+
}
1674+
1675+
.post-excerpt {
1676+
flex-grow: 1;
1677+
margin-bottom: 20px;
1678+
color: var(--text-secondary);
1679+
}
1680+
1681+
.linkedin-link {
1682+
color: var(--gold-primary);
1683+
font-weight: 500;
1684+
display: inline-block;
1685+
transition: all 0.2s ease;
1686+
1687+
&:hover {
1688+
color: var(--gold-secondary);
1689+
text-decoration: none;
1690+
transform: translateX(3px);
1691+
}
1692+
}
1693+
}
1694+
1695+
.profile-link {
1696+
text-align: center;
1697+
1698+
.linkedin-btn {
1699+
background-color: #0A66C2;
1700+
color: white;
1701+
border: none;
1702+
padding: 12px 25px;
1703+
border-radius: 5px;
1704+
font-weight: 600;
1705+
1706+
&:hover {
1707+
background-color: #0073b1;
1708+
text-decoration: none;
1709+
}
1710+
}
1711+
}

0 commit comments

Comments
 (0)