Skip to content

Commit

Permalink
Merge pull request #4 from Coordinate-Cat/feature/issue-3
Browse files Browse the repository at this point in the history
feat: launch official web site
  • Loading branch information
Coordinate-Cat authored May 14, 2022
2 parents 596c53f + 8a4647e commit d4a8017
Show file tree
Hide file tree
Showing 11 changed files with 61 additions and 17 deletions.
16 changes: 16 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
changelog:
exclude:
labels:
- ignore-for-release
authors:
- Coordinate-Cat
categories:
- title: Site Development
labels:
- site
- title: Documentation Maintenance
labels:
- documentation
- title: Other Changes
labels:
- "*"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# JAPAN-OSINT
# OSINT-JAPAN

⚠️During the maintenance process

![japan-osint.png](japan-osint.png)
![japan-osint.png](static/osint.png)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/Coordinate-Cat/JAPAN-OSINT/TOC%20Generator?color=fff&label=TOC%20Generator)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/Coordinate-Cat/JAPAN-OSINT/Markdown%20Workflow?color=fff&label=Markdown%20Link%20Check)
![GitHub](https://img.shields.io/github/license/Coordinate-Cat/JAPAN-OSINT?color=black)
Expand Down
Binary file removed japan-osint.png
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "sveltekit-blog-template",
"name": "osint-japan",
"version": "0.0.1",
"scripts": {
"dev": "npm run md-to-json & svelte-kit dev",
Expand Down
2 changes: 1 addition & 1 deletion src/assets/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
--link-color: #0076df;
--border-color: #e5e7eb;
font-size: 16px;
font-family: Helvetica, Arial, sans-serif;
font-family: Inter, Arial, sans-serif;
}

h1 {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/blogMetaData.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const blogMetaData = {
blogTitle: 'BlogTemplate',
blogTitle: 'OSINT JAPAN',
description: 'A full featured blog template build with sveltekit'
}
13 changes: 8 additions & 5 deletions src/lib/components/Footer.svelte
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<script>
var year = new Date().getFullYear();
</script>

<footer class="footer">
<ul class="footer__links">
<li class="footer__links_item">
Expand All @@ -10,7 +14,10 @@
<a href="/rss.xml" class="footer__links__item__link">RSS Feed</a>
</li>
<li class="footer__links_item">
<span class="footer__copy-right">© 2021 Yourname</span>
<a href="https://github.com/Coordinate-Cat/JAPAN-OSINT/blob/main/LICENSE" class="footer__links__item__link">MIT</a>
</li>
<li class="footer__links_item">
<a href="https://github.com/Coordinate-Cat" class="footer__links__item__link">© {year} OKA</a>
</li>
</ul>
</footer>
Expand Down Expand Up @@ -47,8 +54,4 @@
.footer__links__item__link:hover {
border-bottom: 1.5px solid var(--secondary-color);
}
.footer__copy-right {
color: var(--secondary-color);
}
</style>
2 changes: 1 addition & 1 deletion src/lib/components/PostDetail.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{format(new Date(post.date), "MMMM DD, YYYY")},
</span>

<a class="post-detail__top__info__author" href="/about">by Yourname</a>
<a class="post-detail__top__info__author" href="/about">by Oka</a>
</div>
</div>
<div class="post-detail__content">
Expand Down
6 changes: 5 additions & 1 deletion src/routes/about.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,9 @@
/>
<div class="about-container">
<h1>About</h1>
<p>Tell People about you!!</p>
<p>
Repository of this
<a href="https://github.com/Coordinate-Cat/JAPAN-OSINT">site</a>
</p>

</div>
31 changes: 26 additions & 5 deletions src/routes/index.svelte
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<script lang="ts">
export let posts;
// export let posts;
import { envVariables } from "$lib/envVariables";
import { blogMetaData } from "$lib/blogMetaData";
import { MetaTags } from "svelte-meta-tags";
import PostList from "$lib/components/PostList.svelte";
import PostItem from "$lib/components/Post.svelte";
// import PostList from "$lib/components/PostList.svelte";
// import PostItem from "$lib/components/Post.svelte";
const meta = {
title: `Home | ${blogMetaData.blogTitle}`,
Expand Down Expand Up @@ -45,11 +45,32 @@
}}
/>

<PostList>
<h1>Under Development</h1>
<h2>
This is <a href="https://github.com/Coordinate-Cat/JAPAN-OSINT/issues" class="issue">OSS</a>.<br>
We are waiting for your great ideas.
</h2>

<!-- <PostList>
{#each posts as post}
<PostItem {post} />
{/each}
</PostList>
</PostList> -->

<style>
h1, h2 {
text-align: center;
}
.issue {
color: #FF4B4B;
font-size: 1.5rem;
font-weight: 600;
margin: 0.8rem 0;
text-decoration: none;
}
.issue:hover {
border-bottom: 2.5px solid #FF4B4B;
}
</style>
Binary file added static/osint.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

1 comment on commit d4a8017

@vercel
Copy link

@vercel vercel bot commented on d4a8017 May 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.