├── .gitignore ├── LICENSE ├── functions.php ├── index.php ├── markup └── template.html ├── style.css └── todo.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | .node* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/wp-theme-alpha/HEAD/LICENSE -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/wp-theme-alpha/HEAD/functions.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/wp-theme-alpha/HEAD/index.php -------------------------------------------------------------------------------- /markup/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/wp-theme-alpha/HEAD/markup/template.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/wp-theme-alpha/HEAD/style.css -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnWithHasinHayder/wp-theme-alpha/HEAD/todo.txt --------------------------------------------------------------------------------