Skip to content

Commit 33d3970

Browse files
committed
Merge branch 'astro'
2 parents af60a37 + b217b1b commit 33d3970

File tree

284 files changed

+12612
-25105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+12612
-25105
lines changed

.gitignore

Lines changed: 16 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,21 @@
1-
# Ignore docs files
2-
_gh_pages
3-
_site
4-
.ruby-version
5-
.sass-cache
6-
.jekyll-metadata
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
75

8-
# Node Modules
9-
node_modules/*
10-
!node_modules/bootstrap/scss/*
11-
!node_modules/bootstrap/dist/js/*
6+
# dependencies
7+
node_modules/
128

13-
# Numerous always-ignore extensions
14-
*.diff
15-
*.err
16-
*.orig
17-
*.log
18-
*.rej
19-
*.swo
20-
*.swp
21-
*.zip
22-
*.vi
23-
*~
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
2414

25-
# OS or Editor folders
26-
.DS_Store
27-
._*
28-
Thumbs.db
29-
.cache
30-
.project
31-
.settings
32-
.tmproj
33-
*.esproj
34-
nbproject
35-
*.sublime-project
36-
*.sublime-workspace
37-
.idea
3815

39-
# Lock files
40-
*.lock
16+
# environment variables
17+
.env
18+
.env.production
4119

42-
# Komodo
43-
*.komodoproject
44-
.komodotools
45-
46-
# grunt-html-validation
47-
validation-status.json
48-
validation-report.json
20+
# macOS-specific files
21+
.DS_Store

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

404.html

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

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vivekipedia.in

Gemfile

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

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Maxi Ferreira
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

100755100644
Lines changed: 57 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,64 @@
1-
# Personal Website
1+
# [Astro](https://astro.build) Blog Template
22

3-
This is Vivek Shrinivasan's Personal website. You can check it out [here](http://kaizer1v.github.io/)
3+
[![Screenshot](screenshot.png)](https://astro-blog-template.netlify.app/)
44

5-
__This website is built using [Jekyll](https://jekyllrb.com/)__
5+
## 👉 Check out the ✨ [Live Demo](https://astro-blog-template.netlify.app/)
66

7-
## Install
7+
## 👩‍🚀 Getting Started
88

9-
Clone this reporistory
9+
### Locally
1010

11-
`git clone [email protected]:kaizer1v/kaizer1v.github.io.git`
11+
```
12+
npm init astro -- --template Charca/astro-blog-template
13+
```
1214

13-
and run following commands from inside the above folder
15+
### On StackBlitz
1416

15-
`bundle install`
16-
`bundle exec jekyll serve --port 8998`
17+
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/charca/astro-blog-template)
18+
19+
## ✨ Features:
20+
21+
- ✅ Astro 1.0
22+
- ✅ Dark Mode
23+
- ✅ Full Markdown support
24+
- ✅ SEO-friendly setup with canonical URLs and OpenGraph data
25+
- ✅ RSS 2.0 generation
26+
- ✅ Sitemap.xml generation
27+
28+
## 🚀 Project Structure
29+
30+
Inside of your Astro project, you'll see the following folders and files:
31+
32+
```
33+
/
34+
├── public/
35+
│ ├── robots.txt
36+
│ └── favicon.ico
37+
├── src/
38+
│ ├── components/
39+
│ │ └── Tour.astro
40+
│ └── pages/
41+
│ └── index.astro
42+
└── package.json
43+
```
44+
45+
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
46+
47+
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
48+
49+
Any static assets, like images, can be placed in the `public/` directory.
50+
51+
## 🧞 Commands
52+
53+
All commands are run from the root of the project, from a terminal:
54+
55+
| Command | Action |
56+
| :---------------- | :------------------------------------------- |
57+
| `npm install` | Installs dependencies |
58+
| `npm run dev` | Starts local dev server at `localhost:3030` |
59+
| `npm run build` | Build your production site to `./dist/` |
60+
| `npm run preview` | Preview your build locally, before deploying |
61+
62+
## 👀 Want to learn more?
63+
64+
Feel free to check [Astro's documentation](https://github.com/withastro/astro) or jump into Astro's [Discord server](https://astro.build/chat).

_config.yml

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

_data/navigation.yml

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

0 commit comments

Comments
 (0)