Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: Dev adelacecilia welcome to the experience section #296

Open
wants to merge 4 commits into
base: dev-adelacecilia
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Binary file added requirement/image/company-logo/bit-bee.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/arcadia.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/argus.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/big-telematics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/bit-bee.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/chemist-direct.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/colab.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/content-formula.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/fifth9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/rma.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/romaris.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/solera.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/_asset/image/company-logo/zeus-media.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/_component/about-me/about-me.pug
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ include ../section-title/section-title
.description-box__with-shadow
each description in data['about-me'].descriptionList
p.description=description

.column(span="row")
.column(span="row" height='10px')
.button.button__pill--green
Expand Down
5 changes: 5 additions & 0 deletions src/_component/config/reusable.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
%rounder-border-list {
border-radius: 6px;
border: 2px solid #707070;
list-style-type: none;
}
13 changes: 13 additions & 0 deletions src/_component/experience/experience.pug
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
- var sectionTitle = data.experience.sectionTitle;
include ../section-title/section-title

.column(span="row" height='10px')
.column(span="row")
ul.experience__list
each job in data.experience.jobList
li=job.jobTitle
.column(span="row")
.column(span="row" height='10px')
button.button__disc--blue
i.icon__arrow-down
.column(span="row" height='10px')
3 changes: 3 additions & 0 deletions src/_component/experience/experience.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.experience__list {
@extend %rounder-border-list
}
7 changes: 6 additions & 1 deletion src/_component/skills/skills.pug
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,9 @@ each skillType in data.skills.skillTypeList
)=skill.label
.column(span="row")
.description-box__with-shadow
p.description=data.skills.description
p.description=data.skills.description
.column(span="row")
.column(span="row" height='10px')
button.button__disc--blue
i.icon__arrow-down
.column(span="row" height='10px')
4 changes: 1 addition & 3 deletions src/_component/skills/skills.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
.skills__list {
border-radius: 6px;
border: 2px solid #707070;
list-style-type: none;
@extend %rounder-border-list
}

.skills__item {
Expand Down
27 changes: 27 additions & 0 deletions src/_data/experience.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"sectionTitle": "Experience",
"jobList": [
{
"jobTitle": "Starter Web Developer",
"startDate": "2020 August",
"endDate": "2020 November",
"iconPath": "bit-bee.png",
"companyName": "BitBee",
"moreInfoList": [
"esklfjiekgjiekfjjdfheisjfeksjdf",
"hedfueifhdiufheiufhuierhfuie"
]
},
{
"jobTitle": "Junior Web Developer",
"startDate": "2020 November",
"endDate": "Present",
"iconPath": "chemist-direct.png",
"companyName": "Chemist Direct",
"moreInfoList": [
"esklfjiekgjiekfjjdfheisjfeksjdf",
"hedfueifhdiufheiufhuierhfuie"
]
}
]
}
1 change: 1 addition & 0 deletions src/index.pug
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ html
include _component/about-me/about-me.pug
include _component/connect/connect.pug
include _component/skills/skills.pug
include _component/experience/experience.pug
1 change: 1 addition & 0 deletions src/style.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import "_component/config/reusable";
@import "_component/layout/roboto-font";
@import "_component/layout/layout";
@import "_component/about-me/about-me";
Expand Down