├── .gitignore
├── 404.php
├── README.md
├── archive.php
├── author.php
├── bower.json
├── codesniffer.ruleset.xml
├── comments.php
├── composer.json
├── css
├── custom-editor-style.css
├── theme.css
├── theme.min.css
└── theme.min.css.map
├── fonts
├── FontAwesome.otf
├── fontawesome-webfont.eot
├── fontawesome-webfont.svg
├── fontawesome-webfont.ttf
├── fontawesome-webfont.woff
├── fontawesome-webfont.woff2
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.svg
├── glyphicons-halflings-regular.ttf
├── glyphicons-halflings-regular.woff
└── glyphicons-halflings-regular.woff2
├── footer.php
├── functions.php
├── global-templates
├── left-sidebar-check.php
└── pagination.php
├── gulpfile.js
├── header-front-page.php
├── header.php
├── img
├── header.jpg
├── placeholder.png
└── src
│ └── header.jpg
├── inc
├── bootstrap-wp-navwalker.php
├── custom-comments.php
├── custom-header.php
├── custom-tags.php
├── customizer.php
├── editor.php
├── enqueue.php
├── extras.php
├── jetpack.php
├── pagination.php
├── related-posts.php
├── security.php
├── setup.php
├── style-wpcom.css
├── template-tags.php
├── theme-settings.php
├── untitled.html
├── widgets.php
├── woocommerce.php
└── wpcom.php
├── index.php
├── js
├── core.js
├── jquery.js
├── jquery.min.js
├── jquery.slim.js
├── jquery.slim.min.js
├── main.js
├── popper.js
├── popper.min.js
├── theme.js
└── theme.min.js
├── languages
├── de_DE.mo
├── de_DE.po
├── el_GR.mo
├── el_GR.po
├── es_ES.mo
├── es_ES.po
├── fr_FR.mo
├── fr_FR.po
├── it_IT.mo
├── it_IT.po
├── ko_KR.mo
├── ko_KR.po
├── nb_NO.mo
├── nb_NO.po
├── nl_NL.mo
├── nl_NL.po
├── nn_NO.mo
├── nn_NO.po
├── pt_BR.mo
├── pt_BR.po
├── pt_PT.mo
├── pt_PT.po
├── ru_RU.mo
├── ru_RU.po
├── sv_SE.mo
├── sv_SE.po
├── understrap.pot
├── zh_CN.mo
└── zh_CN.po
├── loop-templates
├── content-aside.php
├── content-blank.php
├── content-empty.php
├── content-gallery.php
├── content-group.php
├── content-none.php
├── content-page.php
├── content-search.php
├── content-single.php
├── content-status.php
├── content.php
└── widgets-posts
│ ├── posts-style1.php
│ ├── posts-style2.php
│ └── posts-style3.php
├── package.json
├── page-templates
├── blank.php
├── both-sidebarspage.php
├── empty.php
├── fullwidthpage.php
├── left-sidebarpage.php
└── right-sidebarpage.php
├── page.php
├── sass
├── assets
│ ├── bootstrap4.scss
│ ├── font-awesome.scss
│ └── underscores.scss
├── theme.scss
├── theme
│ ├── _contact-form7.scss
│ ├── _theme.scss
│ └── _theme_variables.scss
└── understrap
│ └── understrap.scss
├── screenshot.png
├── search.php
├── searchform.php
├── sidebar-left.php
├── sidebar-right.php
├── sidebar.php
├── single.php
├── src
├── js
│ ├── bootstrap4
│ │ ├── bootstrap.bundle.js
│ │ ├── bootstrap.bundle.min.js
│ │ ├── bootstrap.js
│ │ └── bootstrap.min.js
│ ├── customizer.js
│ ├── navigation.js
│ └── skip-link-focus-fix.js
└── sass
│ ├── bootstrap4
│ ├── _alert.scss
│ ├── _badge.scss
│ ├── _breadcrumb.scss
│ ├── _button-group.scss
│ ├── _buttons.scss
│ ├── _card.scss
│ ├── _carousel.scss
│ ├── _close.scss
│ ├── _code.scss
│ ├── _custom-forms.scss
│ ├── _dropdown.scss
│ ├── _forms.scss
│ ├── _functions.scss
│ ├── _grid.scss
│ ├── _images.scss
│ ├── _input-group.scss
│ ├── _jumbotron.scss
│ ├── _list-group.scss
│ ├── _media.scss
│ ├── _mixins.scss
│ ├── _modal.scss
│ ├── _nav.scss
│ ├── _navbar.scss
│ ├── _pagination.scss
│ ├── _popover.scss
│ ├── _print.scss
│ ├── _progress.scss
│ ├── _reboot.scss
│ ├── _root.scss
│ ├── _tables.scss
│ ├── _tooltip.scss
│ ├── _transitions.scss
│ ├── _type.scss
│ ├── _utilities.scss
│ ├── _variables.scss
│ ├── bootstrap-grid.scss
│ ├── bootstrap-reboot.scss
│ ├── bootstrap.scss
│ ├── mixins
│ │ ├── _alert.scss
│ │ ├── _background-variant.scss
│ │ ├── _badge.scss
│ │ ├── _border-radius.scss
│ │ ├── _box-shadow.scss
│ │ ├── _breakpoints.scss
│ │ ├── _buttons.scss
│ │ ├── _caret.scss
│ │ ├── _clearfix.scss
│ │ ├── _float.scss
│ │ ├── _forms.scss
│ │ ├── _gradients.scss
│ │ ├── _grid-framework.scss
│ │ ├── _grid.scss
│ │ ├── _hover.scss
│ │ ├── _image.scss
│ │ ├── _list-group.scss
│ │ ├── _lists.scss
│ │ ├── _nav-divider.scss
│ │ ├── _navbar-align.scss
│ │ ├── _pagination.scss
│ │ ├── _reset-text.scss
│ │ ├── _resize.scss
│ │ ├── _screen-reader.scss
│ │ ├── _size.scss
│ │ ├── _table-row.scss
│ │ ├── _text-emphasis.scss
│ │ ├── _text-hide.scss
│ │ ├── _text-truncate.scss
│ │ ├── _transition.scss
│ │ └── _visibility.scss
│ └── utilities
│ │ ├── _align.scss
│ │ ├── _background.scss
│ │ ├── _borders.scss
│ │ ├── _clearfix.scss
│ │ ├── _display.scss
│ │ ├── _embed.scss
│ │ ├── _flex.scss
│ │ ├── _float.scss
│ │ ├── _position.scss
│ │ ├── _screenreaders.scss
│ │ ├── _sizing.scss
│ │ ├── _spacing.scss
│ │ ├── _text.scss
│ │ └── _visibility.scss
│ ├── fontawesome
│ ├── _animated.scss
│ ├── _bordered-pulled.scss
│ ├── _core.scss
│ ├── _fixed-width.scss
│ ├── _icons.scss
│ ├── _larger.scss
│ ├── _list.scss
│ ├── _mixins.scss
│ ├── _path.scss
│ ├── _rotated-flipped.scss
│ ├── _screen-reader.scss
│ ├── _stacked.scss
│ ├── _variables.scss
│ └── font-awesome.scss
│ └── underscores
│ ├── _normalize.scss
│ ├── elements
│ ├── _elements.scss
│ ├── _lists.scss
│ └── _tables.scss
│ ├── forms
│ ├── _buttons.scss
│ ├── _fields.scss
│ └── _forms.scss
│ ├── layout
│ ├── _content-sidebar.scss
│ └── _sidebar-content.scss
│ ├── media
│ ├── _captions.scss
│ ├── _galleries.scss
│ └── _media.scss
│ ├── mixins
│ └── _mixins-master.scss
│ ├── modules
│ ├── _accessibility.scss
│ ├── _alignments.scss
│ ├── _clearings.scss
│ └── _infinite-scroll.scss
│ ├── navigation
│ ├── _links.scss
│ ├── _menus.scss
│ └── _navigation.scss
│ ├── site
│ ├── _site.scss
│ ├── primary
│ │ ├── _comments.scss
│ │ └── _posts-and-pages.scss
│ └── secondary
│ │ └── _widgets.scss
│ ├── style.scss
│ ├── typography
│ ├── _copy.scss
│ ├── _headings.scss
│ └── _typography.scss
│ └── variables-site
│ ├── _colors.scss
│ ├── _structure.scss
│ ├── _typography.scss
│ └── _variables-site.scss
├── style.css
├── woocommerce.php
└── woocommerce
├── cart
├── cart-empty.php
├── cart.php
├── mini-cart.php
└── proceed-to-checkout-button.php
├── checkout
├── form-checkout.php
├── form-coupon.php
├── form-pay.php
└── payment.php
├── global
├── form-login.php
├── quantity-input.php
├── wrapper-end.php
└── wrapper-start.php
├── loop
├── add-to-cart.php
└── orderby.php
├── myaccount
├── downloads.php
├── form-edit-account.php
├── form-edit-address.php
├── form-login.php
├── form-lost-password.php
├── form-reset-password.php
├── my-address.php
├── my-orders.php
├── navigation.php
└── orders.php
├── product-searchform.php
└── single-product
├── add-to-cart
├── simple.php
└── variation-add-to-cart-button.php
├── product-thumbnails.php
├── rating.php
├── review-rating.php
└── short-description.php
/.gitignore:
--------------------------------------------------------------------------------
1 |
2 | *.scssc
3 | *.sass-cache
4 | node_modules
5 | .idea/modules.xml
6 | .idea/vcs.xml
7 | .idea/workspace.xml
8 | .idea/writing.iml
9 | .idea/inspectionProfiles/profiles_settings.xml
10 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # WordPress主题:Writing
2 | 这是一个简洁的WordPress博客主题,为专注写作而设计。
3 |
4 | ## 主要特色
5 | - Bootstrap4;
6 | - 自适应,支持PC、Pad、手机端;
7 | - 支持八种主题配色:白、浅灰、蓝、浅蓝、黑、绿、橙、红;
8 | - 支持设置背景色和背景图片;
9 | - 两栏设计;
10 | - 定制的标签云小工具:可设置显示标签数量;
11 | - 定制高级文章小工具;
12 | - 标签云页面模板、全宽页面模板;
13 | - 支持文章形式:标准、图像、日志、状态、链接、引语、相册;
14 | - 除了文章形式自带不同样式,列表支持有图、无图、大图(对应文章形式:图像)等多种样式;
15 |
--------------------------------------------------------------------------------
/archive.php:
--------------------------------------------------------------------------------
1 |
12 |
13 |
17 |
18 |