Skip to content

Commit

Permalink
Merge branch 'release/Meliodas'
Browse files Browse the repository at this point in the history
  • Loading branch information
avimehenwal committed Jul 12, 2020
2 parents 0f6b5da + 713bcab commit 98e0a15
Show file tree
Hide file tree
Showing 31 changed files with 1,910 additions and 2,356 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"recommendations": [
"ms-python.python",
"yzhang.markdown-all-in-one",
"bierner.markdown-mermaid"
"bierner.markdown-mermaid",
"bierner.markdown-emoji"
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [
Expand Down
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"vscode",
"plugins",
"vue",
"netlify"
"netlify",
"component",
"node"
],
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.0.3](https://github.com/avimehenwal/python.avimehenwal/compare/v1.0.2...v1.0.3) (2020-07-09)

### [1.0.2](https://github.com/avimehenwal/python.avimehenwal/compare/v1.0.1...v1.0.2) (2020-07-09)
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
# python.avimehenwal

[![Netlify Status](https://api.netlify.com/api/v1/badges/afbd0131-1f02-469f-a138-844511ca6420/deploy-status)](https://app.netlify.com/sites/avi-python/deploys)

# :snake: python.avimehenwal

> python practise repo
Link to Project [docs]
:earth_asia: Live Link to Project [docs]

![List Page on mobile](demo/mobile-listpage.png)

![Homepage with logo](/demo/homepage-with-logo.png)

---

#### Get in touch with me
#### :v: Get in touch with me

> I am looking for Jobs ... :sunglasses:
* [Github](https://github.com/avimehenwal/)
* [My Website](https://avimehenwal.in)
* [My Blog v2](https://avimehenwal2.netlify.app/)
* [Twitter Handle](https://twitter.com/avimehenwal)
* [LinkedIn](https://in.linkedin.com/in/avimehenwal)
* [Stackoverflow](https://stackoverflow.com/users/1915935/avi-mehenwal)

<a href="https://www.buymeacoffee.com/F1j07cV" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" style="height: 51px !important;width: 217px !important;" ></a>

Spread Love :hearts: and not :no_entry_sign: hatred [![Twitter Follow](https://img.shields.io/twitter/follow/avimehenwal.svg?style=social)](https://twitter.com/avimehenwal)


[docs]: https://avi-python.netlify.app/
Spread Love :hearts: and not :no_entry_sign: hatred [![Twitter Follow](https://img.shields.io/twitter/follow/avimehenwal.svg?style=social)](https://twitter.com/avimehenwal)
Binary file added demo/homepage-with-logo.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 demo/mobile-listpage.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/.vuepress/components/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div>
- End -

</div>
</template>
60 changes: 60 additions & 0 deletions docs/.vuepress/components/TagList.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!-- .vuepress/components/TagList.vue -->
<template lang="html">
<div>
<h1>
Tags <Badge type="error" :text="tagcount"/>
</h1>

<span v-for="tag in Object.keys(tags)">
<h2 :id="tag">
<router-link
:to="{ path: `/tags.html/#${tag}`}"
class="header-anchor"
aria-hidden="true"
>
#
</router-link>
<Badge vertical="middle" type="tip" :text="tag"/>
<Badge type="error" :text="tags[tag].length"/>
<!-- <Badge type="warning" :text="tags[tag].length"/> -->
</h2>

<ul class="w3-ul w3-hoverable">
<li v-for="page in tags[tag]">
<router-link :to="{ path: page.path}">
{{page.title}}
</router-link>
</li>
</ul>
</span>
</div>
</template>

<script>
export default {
// data () {
// return {
// dtags: this.tags[tag]
// }
// },
computed: {
tags() {
let tags = {}
for (let page of this.$site.pages) {
for (let index in page.frontmatter.tags) {
const tag = page.frontmatter.tags[index]
if (tag in tags) {
tags[tag].push(page)
} else {
tags[tag] = [page]
}
}
}
return tags
},
tagcount () {
return Object.keys(this.tags).length;
}
}
}
</script>
27 changes: 23 additions & 4 deletions docs/.vuepress/config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
title: 'Python programming',
title: 'Programming',
description: 'Avi Mehenwal python programming practise',
head: [
['link', { rel: 'icon', href: '/favicon.ico' }]
Expand All @@ -17,7 +17,7 @@ module.exports = {
repoLabel: 'GitHub',
editLinks: true,
editLinkText: 'Help me improve this page!',
// logo: '/logo4.svg',
logo: '/logo.svg',
// displayAllHeaders: true, // Default: false
activeHeaderLinks: true,
sidebar: 'auto',
Expand All @@ -27,7 +27,8 @@ module.exports = {
smoothScroll: true,
nav: [
{ text: 'Home', link: '/' },
{ text: 'Tutorials', link: '/tutorial/' },
{ text: 'Tags', link: '/tags' },
{ text: 'Tutorials', link: '/tutorials/' },
{ text: 'Projects', link: '/projects/' }
]
},
Expand All @@ -40,7 +41,25 @@ module.exports = {
"@vuepress/plugin-nprogress",
"@vuepress/plugin-blog",
"@vuepress/pwa",
[ 'vuepress-plugin-mermaidjs', { theme: 'forest'}],
// https://mermaid-js.github.io/mermaid/#/mermaidAPI?id=mermaidapi-configuration-defaults
[ 'vuepress-plugin-mermaidjs', {
// "theme": 'forest',
// "theme": 'dark',
"theme": "default",
// "font-size": "20",
gantt: {
titleTopMargin:20,
barHeight:30,
barGap:10,
topPadding:50,
leftPadding:0,
gridLineStartPadding:10,
fontSize:25,
fontFamily:'"Open-Sans", "sans-serif"',
numberSectionStyles:4,
axisFormat:'%Y-%m-%d',
}
}],
[ '@vuepress/google-analytics', { 'ga': process.env.GA } ],
],
markdown: {
Expand Down
Loading

0 comments on commit 98e0a15

Please sign in to comment.