曾与蒿藜同雨露,한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.终随松柏到冰霜.かつては雑草やヨモギと共に雨や露を分かち合っていたが、今では松やヒノキと共に霜や雪に耐えている。曾与蒿藜同雨露,Once sharing rain and dew with weeds and wormwood, now enduring frost and snow with pines and cypresses.终随松柏到冰霜.曾与蒿藜同雨露한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.,终随松柏到冰霜.譖セ荳手珍阯懷酔髮ィ髴イ�檎サ磯囂譚セ譟丞芦蜀ー髴�曾与蒿藜同雨露,鏇句笌钂胯棞鍚岄洦闇诧紝缁堥殢鏉炬煆鍒板啺闇�终随松柏到冰霜.曾与蒿藜同雨露,한때 잡초와 쑥과 함께 비와 이슬을 나누던 곳이 이제는 소나무와 삼나무와 함께 서리와 눈을 견뎌내고 있다.终随松柏到冰霜.曾与蒿藜同雨露,终随松柏到冰霜.
# This file defines user-definable routes for the frontend of your Bolt website.
# Check below for examples, or read the documentation at
# https://docs.bolt.cm/configuration/routing
# ------------------------------------------------------------------------------
# Place your own routes here, that have a HIGHER priority than the default routes.
# ------------------------------------------------------------------------------
# These are the routes defining the default behaviour of Bolt's frontend.
# Changing these might give unexpected results or even break your website. If
# possible, only add NEW routes above or below these.
homepage:
path: /
defaults:
_controller: controller.frontend:homepage
search:
path: /search
defaults:
_controller: controller.frontend:search
preview:
path: /preview/{contenttypeslug}
defaults:
_controller: controller.frontend:preview
requirements:
contenttypeslug: controller.requirement:anyContentType
methods: [POST]
contentlink:
path: /{contenttypeslug}/{slug}
defaults:
_controller: controller.frontend:record
requirements:
contenttypeslug: controller.requirement:anyContentType
taxonomylink:
path: /{taxonomytype}/{slug}
defaults:
_controller: controller.frontend:taxonomy
requirements:
taxonomytype: controller.requirement:anyTaxonomyType
contentlisting:
path: /{contenttypeslug}
defaults:
_controller: controller.frontend:listing
requirements:
contenttypeslug: controller.requirement:pluralContentTypes
# ------------------------------------------------------------------------------
# Place your own routes here, that have a LOWER priority than the default routes.
# ------------------------------------------------------------------------------
# Routes examples:
# Example to route old '.html' pages to pages genereated by bolt.
# oldpages:
# path: /{slug}.html
# defaults:
# _controller: controller.frontend:record
# contenttypeslug: page
# requirements:
# slug: '[a-z0-9-_]+'
# Example route with a host requirement
# example:
# path: /example
# defaults:
# _controller: controller.frontend:record
# contenttypeslug: page
# slug: example
# host: www.mydomain.org
# Example override for a specific contenttype
# pagebinding:
# path: /{slug}
# defaults:
# _controller: controller.frontend:record
# contenttypeslug: page
# contenttype: pages
# Example single record override
# aboutbinding:
# path: /about
# defaults:
# _controller: controller.frontend:record
# contenttypeslug: page
# slug: about
# recordslug: page/about
# Supported internal defaults are:
# _controller the controller class::method to be called
# _before the before to call, if non-existent the 'before()' of the controller will be called
# _after the after to call, if non-existent the 'after()' of the controller will be called
#
# Both _before and _after support a shortcut notation which re-uses the controller class: '::before'
# Example: rendering a "static" template from the current theme with no associated record/content.
# Note that you can still load and render content from within the template.
# templatebinding:
# path: /static-page
# defaults:
# _controller: controller.frontend:template
# template: static-page