Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert to using TailwindCSS #67

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions app/SculpinKernel.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

class SculpinKernel extends \Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel
{
protected function getAdditionalSculpinBundles(): array
{
return [
// 'App\Bundle\ExampleBundle\AppExampleBundle'
];
}
}
7 changes: 1 addition & 6 deletions app/config/sculpin_kernel.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
sculpin_content_types:
posts:
permalink: blog/:year/:month/:day/:filename/

# To disable posts (e.g., if you aren't planning on having any posts and Sculpin's watch mode complains):
#sculpin_content_types:
# posts:
# enabled: false
enabled: true
9 changes: 4 additions & 5 deletions app/config/sculpin_site.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# The contents of this file are parsed and made available as
# via `site.*`. So for example, {{ site.title }} can be used
# in a template to get the contents of the `title` key.
title: Sculpin Blog Skeleton
subtitle: To Get You Started
title: "Sculpin Blog"
subtitle: "Your New Website"
url: ''
google_analytics_tracking_id: ''

# Insert your disqus shortname
#disqus:
Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
{
"name": "sculpin/blog-skeleton",
"description": "A Skeleton for a Sculpin Based Blog",
"description": "Tailwind-based Skeleton for Sculpin",
"type": "sculpin-skeleton",
"license": "MIT",
"require": {
"sculpin/sculpin": "^3.0"
},
"authors": [
{
"name": "Dragonfly Development Inc.",
"email": "info@dflydev.com",
"homepage": "http://dflydev.com"
"name": "Kevin Boyd",
"email": "kevin.boyd@gmail.com"
},
{
"name": "Beau Simensen",
"email": "beau@dflydev.com",
"homepage": "http://beausimensen.com"
}
],
"require": {
"sculpin/sculpin": "^3.0"
},
"scripts": {
"publish": [
"./publish.sh"
Expand Down
Loading