Built with Drupal 8: A Front-Ender's Tale of Danger and Suspense

Error message

  • Deprecated function: The each() function is deprecated. This message will be suppressed on further calls in menu_set_active_trail() (line 2405 of /home1/markspap/public_html/kathy/includes/menu.inc).
  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /home1/markspap/public_html/kathy/includes/common.inc).
May 3, 2015

UPDATE: In August 2015 I moved this site back to Drupal 7. Drupal 8 is still in beta, and though it's going to be fun, it's obviously not ready for prime time yet.

A few weeks ago I decided to rebuild this blog from scratch.  It had been literally years since I'd posted, so I figured I'd include just a few of the last entries.  Also, Drupal 8 was in beta and I'm impatient.  Why not build a brand new site in 8.0.0-beta9?, I thought.   How hard could it be?

So, okay.  It was a little bit hard.  But surprisingly, the experience wasn’t as hairy as you might expect.  Here’s a summary of my adventurous, experimental walk on the wild beta side. 

Installing Drupal 8

Before I go further, I should mention that I installed Drupal 8 on a previously set up local environment.  (If you don’t know what that means, you can find out more here.   For fellow Mac users, I’d recommend these instructions.)

Honestly, installation was a breeze.  The whole process took less than 5 minutes and was similar enough to Drupal 7 that I felt on solid ground.  I just downloaded and untarred core, added a new database in Mamp, went to the site in my browser and followed the instructions.  Easy peasy.

Playing with core was equally as uneventful and fun.  I added a new user, enabled and disabled core modules, added a new content type and a taxonomy vocabulary, tweaked permissions, etc.  All without a hitch.  The admin interface looks and acts almost the same as D7's. For someone who builds a lot of sites for non-technical admins, this is a big relief.

I decided this was easy.  Drupal 8 was a lot more stable than I’d expected.  I was feeling confident, so I decided to try creating a custom theme.

Custom Theming: Take One

Considering D8’s not even released yet, the documentation on drupal.org on Theming Drupal 8 is pretty extensive.  In fact it’s so extensive, it’s a bit overwhelming at first. 

If you're familiar with D7 theming and just wanted to get up and running quickly, you might prefer 27 Questions (and Answers) from My First Drupal 8 Site Build by Matt Korostoff.  His article was extremely helpful, although I was glad to be have the d.o documentation to refer to when I got stuck or wanted to delve into something more deeply.

Adding JS, CSS and Font Files and Libraries

I decided to keep a hand on the tow line and created a Classy subtheme, following Matt’s instructions for setting up the x.info.yml and and x.libraries.yml files.

You can see the .info.yml file looks a lot like the .info in Drupal 7.  The main difference is the way CSS and JS are added.  Instead of adding them directly to the .info.yml file, you include a reference to a .libaries.yml file, and that is where you add your scripts, stylesheets and dependencies. That was probably the biggest gotcha for me--figuring out how to include JS scripts, libraries and dependencies and font libraries.  There was conflicting information on the webs, but this is what worked for me:

Because I had a number of CSS and JS files, I followed the advice (from d.o. maybe?) to break them into two groups—global-styling and global-scripts,. These will now be available to every page.

My scripts.js is actually just a teeny few lines to handle the navigation bar, but surprisingly, Drupal 8 doesn’t load JQuery on every page automatically like D7 did. You have to add it as a dependency, as well as any other js you want to run on every page.

One thing I never figured out was how to add my custom fonts. I use Google's PT Serif and Inconsolata in this theme, and the only way I could get the fonts to load was by adding an @import to my main CSS file:

@import url(http://fonts.googleapis.com/css?family=Inconsolata|PT+Serif:400,400italic,700,700italic);

It works, and that'll have to do for now.

Twig Templates

I find Twig to be easier and more intuitive than the PHP of previous .tpl.php files. If you don't agree, some of the documentation on d.o might be helpful, especially Twig Coding Standards.

The Classy theme was a godsend for me when it came to creating custom templates. Whether you create a subtheme of Classy or not, you can look at the slew of templates it includes to get an idea of how to create your own.

For this theme, I needed a custom block--search-form-block.html.twig and changes to page.html.twig and node.html.twig. For instance, like Matt Korostoff, I don't much like the default "submitted by" line. To tweak it, I copied the node.html.twig from Classy, plopped it in my theme's template folder, and changed the line:

I still haven't figured out how to get my custom date/time format to print, but I'll keep working on it. :)

Custom Modules and More

I enabled a few contrib modules (Prepopulate, Youtube Field, Captcha and Recaptcha) that were absolutely required before going live. All worked beautifully out-of-the-box. However, the other contrib modules I tried gave me either a WSOD or that ghastly pink error message.  

At this time I'd recommend enabling contrib modules cautiously, if at all.  Most are still in dev for a reason.  Maybe try them on a test install first and see what blows up.

Luckily this is a simple site that can run without many contrib modules. If you have a complex site that requires a number of them, you may have to wait a bit before they're all ported to 8. Bluespark publishes a helpful live list of the current status of the top 100 Drupal modules. Check it out to see if your modules are listed.

I'm know you're waiting on tenterhooks for your favorite modules, but remember that most of the people who create and maintain contrib modules do so on their own time and without pay.  That's pretty darn generous of them, and I'm grateful for all the vacation time and off hours they spend creating modules that make my life easier. Unless I'm able to jump in alongside and start slinging code, I'm happy to wait patiently for contrib modules to be ported.

(Note to self: Patience you must have, my young padawan.)

Conclusion

The (sort of) bad news: Not everyone is crazy enough to spend two days and nights building a D8 site. It still isn't easy. You may get discouraged.  You will lose sleep. I still can't get drush 7 (required for D8) to rebuild caches. Importing and exporting a database between dev and live without at least a few WSODs is nigh on impossible. I encountered a number of alien requirements and strange error messages that took time to track down and debug.

The good news: Smarter people than me are working on those problems. Yay!

More good news: I'm no longer afraid of WSODs or error screens that fill three screens. Also, I busted my local dev site and had to rebuild it so many times, I now know a great deal about installing, enabling and configuring Drupal 8.

Was it worth it? You betcha! I'm no programmer, so I was nervous about Drupal 8 coming down the pike. I'm not nervous anymore. In fact, I'm looking forward eagerly to a release candidate.

Thanks to all the people who put so much time and effort into Drupal 8. It's really spectacular, and we thank you for generously sharing your code with us.

Comments

Hello! I know this is somewhat off topic but I was wondering if you knew where I could locate a captcha plugin for my comment form? I'm using the same blog platform as yours and I'm having problems finding one? Thanks a lot!

This web site certainly has all of the info I needed concerning this subject and didn't know who to ask.

Hey there are using Wordpress for your blog platform? I'm new to the blog world but I'm trying to get started and set up my own. Do you require any coding expertise to make your own blog? Any help would be really appreciated!

For most up-to-date information you have to pay a quick visit world wide web and on web I found this web site as a finest web site for most up-to-date updates.

Very great post. I simply stumbled upon your weblog and wanted to say that I have truly loved surfing around your blog posts. After all I'll be subscribing on your rss feed and I hope you write again soon!

I don't even know how I ended up here, but I thought this post was good. I don't know who you are but certainly you're going to a famous blogger if you are not already ;) Cheers!

Highly descriptive blog, I enjoyed that a lot. Will there be a part 2?

We stumbled over here from a different website and thought I should check things out. I like what I see so now i am following you. Look forward to exploring your web page repeatedly.

Excellent post! We will be linking to this particularly great post on our website. Keep up the good writing.

Hi there! This is my first visit to your blog! We are a collection of volunteers and starting a new initiative in a community in the same niche. Your blog provided us beneficial information to work on. You have done a marvellous job!

Right here is the right blog for everyone who hopes to find out about this topic. You know a whole lot its almost hard to argue with you (not that I personally would want to…HaHa). You definitely put a brand new spin on a topic which has been discussed for decades. Excellent stuff, just excellent!

I have read so many articles concerning the blogger lovers except this paragraph is really a good article, keep it up.

There's certainly a great deal to find out about this subject. I love all of the points you've made.

These are really wonderful ideas in on the topic of blogging. You have touched some fastidious things here. Any way keep up wrinting.

You actually make it appear really easy with your presentation but I find this topic to be really something that I believe I'd by no means understand. It sort of feels too complex and very broad for me. I am taking a look forward to your next publish, I will attempt to get the dangle of it!

Hi, its good paragraph about media print, we all understand media is a wonderful source of data.

I want to show you one exclusive program called (BTC PROFIT SEARCH AND MINING PHRASES), which can make you a rich man!

This program searches for Bitcoin wallets with a balance, and tries to find a secret phrase for them to get full access to the lost wallet!

Run the program and wait, and in order to increase your chances, install the program on all computers available to you, at work, with your friends, with your relatives, you can also ask your classmates to use the program, so your chances will increase tenfold!
Remember the more computers you use, the higher your chances of getting the treasure!

DOWNLOAD FOR FREE

Telegram:
https://t.me/btc_profit_search

Have you ever thought about adding a little bit more than just your articles? I mean, what you say is important and all. However think of if you added some great photos or video clips to give your posts more, "pop"! Your content is excellent but with images and videos, this site could undeniably be one of the very best in its field. Wonderful blog!

Step into the future of digital creativity with

<a href=https://getporn.ai/>generate AI nudity</a>- your final destination for visual images,
created by artificial intelligence. If you're interested in AI-generated nudes,
our platform offers an unrivaled experience. Immerse yourself in the fantasy of artificial intelligence and unleash your imagination.
Our unique features, including the popular NUDE mode, allow you to undress AI models with ease and privacy.
Looking for something more? Check out our wide range of services, from nude AI generator to personalized AI companion creation.
Visit our website https://getporn.ai/ and discover the endless possibilities of AI-generated content.

Translated using DeepL.com (free version) can be done on our website <a href=https://getporn.ai/>create AI nudes</a>

123

My spouse and I stumbled over here from a different website and thought I might check things out. I like what I see so i am just following you. Look forward to looking into your web page for a second time.

I'm truly enjoying the design and layout of your website. It's a very easy on the eyes which makes it much more enjoyable for me to come here and visit more often. Did you hire out a developer to create your theme? Fantastic work!

My programmer is trying to convince me to move to .net from PHP. I have always disliked the idea because of the expenses. But he's tryiong none the less. I've been using WordPress on numerous websites for about a year and am worried about switching to another platform. I have heard excellent things about blogengine.net. Is there a way I can transfer all my wordpress content into it? Any kind of help would be really appreciated!

all the time i used to read smaller content which as well clear their motive, and that is also happening with this piece of writing which I am reading at this place.

Do you mind if I quote a couple of your posts as long as I provide credit and sources back to your weblog? My blog site is in the exact same area of interest as yours and my users would truly benefit from a lot of the information you present here. Please let me know if this alright with you. Many thanks!

Useful info. Fortunate me I found your web site by chance, and I'm surprised why this twist of fate did not took place earlier! I bookmarked it.

Have you ever thought about including a little bit more than just your articles? I mean, what you say is fundamental and all. Nevertheless think about if you added some great images or video clips to give your posts more, "pop"! Your content is excellent but with pics and video clips, this blog could certainly be one of the most beneficial in its niche. Superb blog!

Thanks for finally writing about > %blog_title% < Loved it!

Sweet blog! I found it while searching on Yahoo News. Do you have any suggestions on how to get listed in Yahoo News? I've been trying for a while but I never seem to get there! Thanks

I needed to thank you for this very good read!! I certainly loved every little bit of it. I've got you book-marked to look at new things you post…

This page really has all the information and facts I wanted about this subject and didn't know who to ask.

If you are going for best contents like me, just pay a quick visit this site every day since it offers feature contents, thanks

I like reading an article that can make men and women think. Also, thank you for allowing for me to comment!

Do you have a spam problem on this website; I also am a blogger, and I was wondering your situation; many of us have developed some nice methods and we are looking to exchange solutions with other folks, why not shoot me an e-mail if interested.

I have been browsing online more than 3 hours lately, but I by no means found any fascinating article like yours. It is beautiful worth enough for me. In my opinion, if all site owners and bloggers made good content as you probably did, the internet will likely be much more helpful than ever before.

I was suggested this web site via my cousin. I am no longer positive whether or not this submit is written via him as nobody else recognise such exact about my problem. You're wonderful! Thank you!

Ahaa, its nice dialogue regarding this post here at this webpage, I have read all that, so now me also commenting here.

My brother recommended I might like this website. He was totally right. This post actually made my day. You can not imagine just how much time I had spent for this information! Thanks!

It's a pity you don't have a donate button! I'd definitely donate to this fantastic blog! I guess for now i'll settle for bookmarking and adding your RSS feed to my Google account. I look forward to fresh updates and will talk about this website with my Facebook group. Talk soon!

I am genuinely happy to read this webpage posts which includes lots of useful data, thanks for providing such information.

Hello! This is my first visit to your blog! We are a collection of volunteers and starting a new initiative in a community in the same niche. Your blog provided us valuable information to work on. You have done a marvellous job!

It's very easy to find out any matter on net as compared to textbooks, as I found this paragraph at this website.

I really like it when folks come together and share views. Great blog, stick with it!

Hi there friends, how is the whole thing, and what you would like to say concerning this piece of writing, in my view its really amazing for me.

It is appropriate time to make some plans for the future and it's time to be happy. I've read this submit and if I could I want to recommend you some fascinating things or advice. Maybe you could write subsequent articles relating to this article. I want to read more things approximately it!

Hmm is anyone else experiencing problems with the pictures on this blog loading? I'm trying to determine if its a problem on my end or if it's the blog. Any feedback would be greatly appreciated.

Hello! This is kind of off topic but I need some advice from an established blog. Is it tough to set up your own blog? I'm not very techincal but I can figure things out pretty fast. I'm thinking about making my own but I'm not sure where to begin. Do you have any tips or suggestions? Cheers

Pages

Add new comment