Skip to content

Commit

Permalink
removed rss, changed title
Browse files Browse the repository at this point in the history
  • Loading branch information
balpars committed Feb 22, 2024
1 parent 736021d commit e90144e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 42 deletions.
6 changes: 3 additions & 3 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import type { Site, SocialObjects } from "./types";
export const SITE: Site = {
website: "https://balpars.com",
author: "balpars",
desc: "Compendium of balpars cyber journey.",
title: "Balpars Compendium",
desc: "a blog about cyber",
title: "Balpars Cyber Journey",
ogImage: "astropaper-og.jpg",
lightAndDarkMode: true,
postPerPage: 3,
postPerPage: 6,
scheduledPostMargin: 15 * 60 * 1000, // 15 minutes
};

Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/astro-paper-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ author: balpars
pubDatetime: 2023-01-30T15:57:52.737Z
title: Blog 2.0
slug: blog-2
featured: false
featured: true
tags:
- release
description: Blog 2.0 is an advanced blog.
Expand Down
38 changes: 0 additions & 38 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,6 @@ const socialCount = SOCIALS.filter(social => social.active).length;
<Layout>
<Header />
<main id="main-content">
<section id="hero">
<h1>whoami</h1>

<p>
This blog will be a blog about my journey in cybersec.
</p>
{
// only display if at least one social link is enabled
socialCount > 0 && (
<div class="social-wrapper">
<div class="social-links">Social Links:</div>
<Socials />
</div>
)
}
</section>

<Hr />

Expand Down Expand Up @@ -96,28 +80,6 @@ const socialCount = SOCIALS.filter(social => social.active).length;
</Layout>

<style>
/* ===== Hero Section ===== */
#hero {
@apply pb-6 pt-8;
}
#hero h1 {
@apply my-4 inline-block text-3xl font-bold sm:my-8 sm:text-5xl;
}
#hero .rss-link {
@apply mb-6;
}
#hero .rss-icon {
@apply mb-2 h-6 w-6 scale-110 fill-skin-accent sm:mb-3 sm:scale-125;
}
#hero p {
@apply my-2;
}
.social-wrapper {
@apply mt-4 flex flex-col sm:flex-row sm:items-center;
}
.social-links {
@apply mb-1 mr-2 whitespace-nowrap sm:mb-0;
}

/* ===== Featured & Recent Posts Sections ===== */
#featured,
Expand Down

0 comments on commit e90144e

Please sign in to comment.