Skip to content
Open

jhjj #2293

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6737b45
Create jekyll-gh-pages.yml
seyedalimousavikia Aug 12, 2024
fba4d6c
Rename jekyll-gh-pages.yml to ali.yml
seyedalimousavikia Aug 12, 2024
d86622a
Update _config.yml
seyedalimousavikia Aug 12, 2024
d65a32a
Update _config.yml
seyedalimousavikia Aug 12, 2024
29a6644
Update _config.yml
seyedalimousavikia Aug 12, 2024
9456c61
Update post.html
seyedalimousavikia Aug 12, 2024
c520ea5
Create 2024-08-12-test-post.md
seyedalimousavikia Aug 12, 2024
7e35612
Update 2024-08-12-test-post.md
seyedalimousavikia Aug 12, 2024
8770898
Update 2014-3-3-Hello-World.md
seyedalimousavikia Aug 12, 2024
2f1b5f7
Update about.md
seyedalimousavikia Aug 12, 2024
739224a
Update about.md
seyedalimousavikia Aug 12, 2024
cd8e7eb
Update about.md
seyedalimousavikia Aug 12, 2024
8556966
Update about.md
seyedalimousavikia Aug 12, 2024
1c85f7c
Update about.md
seyedalimousavikia Aug 12, 2024
0a2acaf
Update about.md
seyedalimousavikia Aug 12, 2024
56138da
Update 2024-08-12-test-post.md
seyedalimousavikia Aug 12, 2024
fa1179a
Update style.scss
seyedalimousavikia Aug 12, 2024
346d3ce
Update style.scss
seyedalimousavikia Aug 12, 2024
e41d4c8
test1
seyedalimousavikia Aug 12, 2024
3076301
Update index.html
seyedalimousavikia Aug 12, 2024
64b30a8
Update index.html for test
seyedalimousavikia Aug 12, 2024
91100e1
Create jekyll-docker.yml
seyedalimousavikia Aug 12, 2024
93273ab
Create jekyll-gh-pages.yml
seyedalimousavikia Aug 12, 2024
134f953
Create mousavikia
seyedalimousavikia Aug 13, 2024
739248e
Update CNAME
seyedalimousavikia Aug 13, 2024
6e998d8
Delete CNAME
seyedalimousavikia Aug 13, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions .github/workflows/ali.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
20 changes: 20 additions & 0 deletions .github/workflows/jekyll-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Jekyll site CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Build the site in the jekyll/builder container
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future"
51 changes: 51 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
name: Deploy Jekyll with GitHub Pages dependencies preinstalled

on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
36 changes: 36 additions & 0 deletions .github/workflows/mousavikia
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4

# Runs a single command using the runners shell
- name: Run a one-line script
run: echo Hello, world!

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project.
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

16 changes: 8 additions & 8 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
#

# Name of your site (displayed in the header)
name: Your Name
name: Seyed Ali Mousavi Kia

# Short bio or description (displayed in the header)
description: Web Developer from Somewhere
description: Master of Computer Networking

# URL of your avatar or profile pic (you could use your GitHub profile pic)
avatar: https://raw.githubusercontent.com/barryclark/jekyll-now/master/images/jekyll-logo.png
avatar: https://fiverr-res.cloudinary.com/images/t_main1,q_auto,f_auto,q_auto,f_auto/gigs/318284581/original/9bcae5770275d3b295208eb37285e447898324b8/train-on-basics-of-computer-networking.jpg

#
# Flags below are optional
Expand All @@ -18,15 +18,15 @@ avatar: https://raw.githubusercontent.com/barryclark/jekyll-now/master/images/je
# Includes an icon in the footer for each username you enter
footer-links:
dribbble:
email:
email:[email protected]
facebook:
flickr:
github: barryclark/jekyll-now
instagram:
linkedin:
github: seyedalimousavikia
instagram:ali.mouska
linkedin:Seyed Ali Mousavi kia
pinterest:
rss: # just type anything here for a working RSS icon
twitter: jekyllrb
twitter:
stackoverflow: # your stackoverflow profile, e.g. "users/50476/bart-kiers"
youtube: # channel/<your_long_string> or user/<user-name>
googleplus: # anything in your profile username that comes after plus.google.com/
Expand Down
1 change: 1 addition & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ <h1>{{ page.title }}</h1>

{% include disqus.html %}
</article>
<script> alert('welcome') </script>
4 changes: 2 additions & 2 deletions _posts/2014-3-3-Hello-World.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
layout: post
title: You're up and running!
---

[my resume](https://cvbuilder.me/resume/fa/e161c16b-b0ab-47af-8ade-d3bd5729026c "resume")
Next you can update your site name, avatar and other options using the _config.yml file in the root of your repository (shown below).

![_config.yml]({{ site.baseurl }}/images/config.png)

The easiest way to make your first post is to edit this one. Go into /_posts/ and update the Hello World markdown file. For more instructions head over to the [Jekyll Now repository](https://github.com/barryclark/jekyll-now) on GitHub.
The easiest way to make your first post is to edit this one. Go into /_posts/ and update the Hello World markdown file. For more instructions head over to the [Jekyll Now repository](https://github.com/barryclark/jekyll-now) on GitHub.
6 changes: 6 additions & 0 deletions _posts/2024-08-12-test-post.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
1.1.1.## A New Post
### from me[my resume](https://cvbuilder.me/resume/fa/e161c16b-b0ab-47af-8ade-d3bd5729026c "my resume")



Enter text in [Markdown](http://daringfireball.net/projects/markdown/). Use the toolbar above, or click the **?** button for formatting help.
9 changes: 5 additions & 4 deletions about.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ layout: page
title: About
permalink: /about/
---

Some information about you!
##

### More Information
hello

A place to include any other types of information that you'd like to include about yourself.
### More Information

[my resume](https://cvbuilder.me/resume/fa/e161c16b-b0ab-47af-8ade-d3bd5729026c "resume")
### Contact me

[[email protected]](mailto:[email protected])
[[email protected]](mailto:[email protected])
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<div class="posts">
{% for post in site.posts %}
<article class="post">

<h1>test 1</h1>
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>

<div class="entry">
{{ post.excerpt }}
</div>

<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
<a href="" class="read-more">Read More</a>
</article>
{% endfor %}
</div>
</div>
4 changes: 2 additions & 2 deletions style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ html {
}

body {
background: $white;
background: $blue;
font: 18px/1.4 $helvetica;
color: $darkGray;
}
Expand Down Expand Up @@ -69,7 +69,7 @@ p {
}

a {
color: $blue;
color: $red;
text-decoration: none;
cursor: pointer;
&:hover, &:active {
Expand Down