Skip to content

Commit

Permalink
Summary
Browse files Browse the repository at this point in the history
  • Loading branch information
Relius-TP committed Oct 25, 2023
1 parent f71cf02 commit 66dfb98
Show file tree
Hide file tree
Showing 17 changed files with 44 additions and 1,077 deletions.
13 changes: 0 additions & 13 deletions assets/css/meyawo.css → assets/css/raxch.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,4 @@
@charset "UTF-8";
/*!
=========================================================
* Meyawo Landing page
=========================================================
* Copyright: 2019 DevCRUD (https://devcrud.com)
* Licensed: (https://devcrud.com/licenses)
* Coded by www.devcrud.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
@import url("https://fonts.googleapis.com/css?family=Baloo+Paaji|Open+Sans:300,300i,400,400i,600,600i,700,700i");
:root {
--blue: #1e549f;
Expand Down
Binary file added assets/doc/CV_Aurelius Trisandio Prasetyo.pdf
Binary file not shown.
Binary file added assets/doc/CV_Aurelius Trisandio Prasetyo_2.pdf
Binary file not shown.
Binary file removed assets/doc/CV_old_Aurelius Trisandio Prasetyo.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions gulpfile.js → assets/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ gulp.task('sass', function() {
gulp.task('css', function() {
return gulp.src(paths.src.css)
.pipe(cleanCSS({compatibility: 'ie8'}))
.pipe(concat('meyawo.css'))
.pipe(concat('raxch.css'))
.pipe(rename({ suffix: '.min' }))
.pipe(gulp.dest(paths.dist.css))
});
Expand All @@ -58,7 +58,7 @@ gulp.task('css', function() {
gulp.task('js', function() {
return gulp.src(paths.src.js)
.pipe(uglify())
.pipe(concat('meyawo.js'))
.pipe(concat('raxch.js'))
.pipe(rename({ suffix: '.min' }))
.pipe(gulp.dest(paths.dist.js))
.pipe(browserSync.stream());
Expand Down
Binary file added assets/imgs/Korra-GIF.gif
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 assets/imgs/Marin-Kitagawa-1-GIF.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/imgs/avatar2.jpg
Binary file not shown.
Binary file removed assets/imgs/avatar3.jpg
Binary file not shown.
Binary file added assets/imgs/going-crazy-toilet-paper-shortage.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed assets/imgs/img-1.jpg
Binary file not shown.
Binary file removed assets/imgs/img-2.jpg
Binary file not shown.
25 changes: 10 additions & 15 deletions assets/js/meyawo.js → assets/js/raxch.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
/*!
=========================================================
* Meyawo Landing page
=========================================================
* Copyright: 2019 DevCRUD (https://devcrud.com)
* Licensed: (https://devcrud.com/licenses)
* Coded by www.devcrud.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/

// smooth scroll
$(document).ready(function(){
$(".navbar .nav-link").on('click', function(event) {
Expand All @@ -35,4 +21,13 @@ $(document).ready(function(){
$('#nav-toggle').click(function(){
$(this).toggleClass('is-active')
$('ul.nav').toggleClass('show');
});
});

document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener("click", function(e){
e.preventDefault();
document.querySelector(this.getAttribute("href")).scrollIntoView({
behavior : "smooth"
})
})
})
2 changes: 1 addition & 1 deletion package.json → assets/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "Meyawo",
"name": "Aurelius TP",
"version": "1.5.0",
"description": "An elegant responsive bootstrap 4.x theme.",
"main": "gulpfile.js",
Expand Down
15 changes: 0 additions & 15 deletions assets/scss/meyawo.scss → assets/scss/raxch.scss
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
/*!
=========================================================
* Meyawo Landing page
=========================================================
* Copyright: 2019 DevCRUD (https://devcrud.com)
* Licensed: (https://devcrud.com/licenses)
* Coded by www.devcrud.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/


// Core
@import "vendors/bootstrap-4.3.1/functions";

Expand Down
Loading

0 comments on commit 66dfb98

Please sign in to comment.