gitextract_u0sne320/ ├── .dockerignore ├── .github/ │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ ├── dependabot.yml │ └── workflows/ │ ├── close-inactive.yaml │ └── update-templates.yml ├── .gitignore ├── .gitmodules ├── .swift-version ├── .swiftlint.yml ├── .travis/ │ ├── ci.sh │ └── update-submodule.sh ├── Dockerfile ├── LICENSE.md ├── Localizations/ │ ├── README.md │ ├── ar.json │ ├── cs.json │ ├── de.json │ ├── el.json │ ├── en.json │ ├── fa.json │ ├── fr.json │ ├── id.json │ ├── ja.json │ ├── ko.json │ ├── nl.json │ ├── pt.json │ ├── ro.json │ ├── ru.json │ ├── th.json │ ├── tr.json │ └── zh.json ├── Package.pins ├── Package.resolved ├── Package.swift ├── Procfile ├── Public/ │ ├── assets/ │ │ ├── main.css │ │ └── main.js │ ├── fonts/ │ │ ├── ProximaNova-Bold.otf │ │ ├── ProximaNova-Light.otf │ │ ├── ProximaNova-Regular.otf │ │ ├── ProximaNova-Semibold.otf │ │ └── ProximaNova-Thin.otf │ └── sitemap.xml ├── README.md ├── Resources/ │ ├── Views/ │ │ ├── index.leaf │ │ └── internal-linking.leaf │ └── links.json ├── Sources/ │ ├── App/ │ │ ├── Controllers/ │ │ │ ├── InternalLinkingController.swift │ │ │ ├── ReadOnlyTemplateManagerProtocol.swift │ │ │ └── TemplateController.swift │ │ ├── Enum/ │ │ │ └── TemplateSuffix.swift │ │ ├── Extensions/ │ │ │ ├── Dictionary+Extensions.swift │ │ │ ├── FileManager+Extensions.swift │ │ │ ├── Router+Extensions.swift │ │ │ ├── Sequence+Extensions.swift │ │ │ ├── String+Extensions.swift │ │ │ └── URL+Extensions.swift │ │ ├── Middleware/ │ │ │ └── FileMiddlewareWithBasePrefix.swift │ │ ├── Models/ │ │ │ ├── Dropdown.swift │ │ │ ├── Flags.swift │ │ │ ├── IgnoreTemplateModel.swift │ │ │ ├── IgnoreTemplateModeling.swift │ │ │ └── InternalLink.swift │ │ ├── RouteHandlers/ │ │ │ ├── APIRouteHandlers.swift │ │ │ ├── SiteRouteHandlers.swift │ │ │ └── UrlResolver.swift │ │ └── Server.swift │ └── Run/ │ └── main.swift ├── Tests/ │ ├── AppTests/ │ │ ├── Controllers/ │ │ │ └── TemplateControllerTests.swift │ │ ├── Extensions/ │ │ │ ├── Sequence+ExtensionsTest.swift │ │ │ ├── String+ExtensionsTests.swift │ │ │ └── URL+ExtensionsTests.swift │ │ ├── Models/ │ │ │ └── IgnoreTemplateModelTests.swift │ │ └── RouteHandlers/ │ │ ├── APIHandlersTests.swift │ │ └── SiteHandlersTests.swift │ └── LinuxMain.swift ├── app.json ├── docker-compose-dev.yml ├── docker-compose.yml ├── e2e-tests/ │ ├── api/ │ │ ├── index.test.js │ │ └── show.test.js │ ├── pages/ │ │ └── homepage.test.js │ └── utils/ │ └── templates.js ├── jest-puppeteer.config.js ├── jest.config.js ├── package.json ├── src/ │ ├── css/ │ │ └── bootstrap-extract.css │ ├── index.js │ ├── js/ │ │ └── app.js │ └── less/ │ ├── app.less │ ├── internal-linking.less │ ├── select2-toptal-theme.less │ └── variables.less └── webpack.config.js