age collapsing has-emoji"> d01d7cf85d first commit 4 年之前 link-template.php d01d7cf85d first commit 4 年之前 load.php d01d7cf85d first commit 4 年之前 locale.php d01d7cf85d first commit 4 年之前 media-template.php d01d7cf85d first commit 4 年之前 media.php d01d7cf85d first commit 4 年之前 meta.php d01d7cf85d first commit 4 年之前 ms-blogs.php d01d7cf85d first commit 4 年之前 ms-default-constants.php d01d7cf85d first commit 4 年之前 ms-default-filters.php d01d7cf85d first commit 4 年之前 ms-deprecated.php d01d7cf85d first commit 4 年之前 ms-files.php d01d7cf85d first commit 4 年之前 ms-functions.php d01d7cf85d first commit 4 年之前 ms-load.php d01d7cf85d first commit 4 年之前 ms-network.php d01d7cf85d first commit 4 年之前 ms-settings.php d01d7cf85d first commit 4 年之前 ms-site.php d01d7cf85d first commit 4 年之前 nav-menu-template.php d01d7cf85d first commit 4 年之前 nav-menu.php d01d7cf85d first commit 4 年之前 option.php d01d7cf85d first commit 4 年之前 pluggable-deprecated.php d01d7cf85d first commit 4 年之前 pluggable.php d01d7cf85d first commit 4 年之前 plugin.php d01d7cf85d first commit 4 年之前 post-formats.php d01d7cf85d first commit 4 年之前 post-template.php d01d7cf85d first commit 4 年之前 post-thumbnail-template.php d01d7cf85d first commit 4 年之前 post.php d01d7cf85d first commit 4 年之前 query.php d01d7cf85d first commit 4 年之前 registration-functions.php d01d7cf85d first commit 4 年之前 registration.php d01d7cf85d first commit 4 年之前 rest-api.php d01d7cf85d first commit 4 年之前 revision.php d01d7cf85d first commit 4 年之前 rewrite.php d01d7cf85d first commit 4 年之前 robots-template.php d01d7cf85d first commit 4 年之前 rss-functions.php d01d7cf85d first commit 4 年之前 rss.php d01d7cf85d first commit 4 年之前 script-loader.php d01d7cf85d first commit 4 年之前 session.php d01d7cf85d first commit 4 年之前 shortcodes.php d01d7cf85d first commit 4 年之前 sitemaps.php d01d7cf85d first commit 4 年之前 spl-autoload-compat.php d01d7cf85d first commit 4 年之前 taxonomy.php d01d7cf85d first commit 4 年之前 template-canvas.php d01d7cf85d first commit 4 年之前 template-loader.php d01d7cf85d first commit 4 年之前 template.php d01d7cf85d first commit 4 年之前 theme-i18n.json d01d7cf85d first commit 4 年之前 theme-templates.php d01d7cf85d first commit 4 年之前 theme.json d01d7cf85d first commit 4 年之前 theme.php d01d7cf85d first commit 4 年之前 update.php d01d7cf85d first commit 4 年之前 user.php d01d7cf85d first commit 4 年之前 vars.php d01d7cf85d first commit 4 年之前 version.php d01d7cf85d first commit 4 年之前 widgets.php d01d7cf85d first commit 4 年之前 wlwmanifest.xml d01d7cf85d first commit 4 年之前 wp-db.php d01d7cf85d first commit 4 年之前 wp-diff.php d01d7cf85d first commit 4 年之前 tum/ecoloop - Gogs: Simplico Git Service

Ei kuvausta

.gitignore 1006B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # Python bytecode and caches
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # Compiled extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. .eggs/
  14. *.egg-info/
  15. .installed.cfg
  16. *.egg
  17. # Virtual environments and local env files
  18. .venv/
  19. venv/
  20. ENV/
  21. env/
  22. env.bak/
  23. .env
  24. .env.*
  25. .python-version
  26. # Django
  27. db.sqlite3
  28. db.sqlite3-journal
  29. *.sqlite3
  30. media/
  31. staticfiles/
  32. # Logs
  33. *.log
  34. logs/
  35. # Unit test / coverage
  36. .coverage
  37. .coverage.*
  38. htmlcov/
  39. .tox/
  40. .nox/
  41. .pytest_cache/
  42. coverage.xml
  43. # Type checker caches
  44. .mypy_cache/
  45. .pyre/
  46. .pytype/
  47. .pyrightcache/
  48. # Editors / IDEs
  49. .vscode/
  50. .idea/
  51. *.suo
  52. *.ntvs*
  53. *.njsproj
  54. *.sln
  55. *.sw?
  56. *.iml
  57. # OS files
  58. .DS_Store
  59. Thumbs.db
  60. # Node / Frontend
  61. node_modules/
  62. npm-debug.log*
  63. yarn-debug.log*
  64. yarn-error.log*
  65. pnpm-debug.log*
  66. theme/static_src/node_modules/
  67. theme/static_src/.cache/
  68. theme/static_src/.next/
  69. theme/static_src/dist/
  70. # Tailwind / PostCSS artifacts
  71. theme/static_src/.tailwind-cache/
  72. *.map
  73. # Docker / temp
  74. docker-compose.override.yml
  75. .docker/
  76. .tmp/
  77. tmp/