Skip to content

Latest commit

 

History

History
59 lines (55 loc) · 1.77 KB

Tree.md

File metadata and controls

59 lines (55 loc) · 1.77 KB

The tree-like path of the Blog (Vue.js)

.
├── App.vue (root component)
├── assets
│   ├── Fonts
│   │   └── IranYekan
│   │       └── WebFonts
│   │           └── fonts
│   │               └── woff
│   │                   ├── IRANYekanWebBlack.woff
│   │                   └── IRANYekanWebMedium.woff
│   └── Images
│       ├── ContentImage
│       │   └── buzzwords-Content-D2022P05.png
│       ├── Icons
│       │   ├── archive.svg
│       │   ├── bell.svg
│       │   ├── check-circle.svg
│       │   ├── circle.svg
│       │   ├── edit-3.svg
│       │   ├── external-link.svg
│       │   ├── github.svg
│       │   ├── heart.svg
│       │   └── Mh.svg
│       ├── InBuildVector.png
│       └── white.jpg
├── components
│   ├── Button.vue
│   ├── Card.vue
│   ├── Footer.vue
│   ├── IntroCard.vue
│   └── notResponsive.vue
├── content
│   └── D2022P05
│       ├── ContentParaghraph1.md
│       ├── ContentParaghraph2.md
│       ├── ContentParaghraph3.md
│       ├── ContentParaghraph4.md
│       └── ContentParaghraph5.md
├── ContentGenerator.json
├── ContentHandel.js
├── main.js
├── router
│   └── index.js
├── scss
│   ├── app.scss
│   ├── _fonts.scss
│   ├── _main.scss
│   └── _variables.scss
└── views
    ├── HomeView.vue
    ├── IsLunch.vue
    └── Post.vue