Importing Blueprints broken with 1.7?

@domsson, You said you are using a theme which makes use of imported blueprints. I therefor guess that blueprints are stored in ‘/user/themes/<theme>/blueprints’.

If so, the blueprints will not be found when using the following import@ statement:

import@:
   type: partials/downloads
   context: blueprints://

Explanation:
According a late answer to one of your previous question regarding the same topic, context: blueprints:// points by default to the blueprints folder of the Admin plugin (/user/plugins/admin/blueprints). Above import@ will therefor point to /user/plugins/admin/blueprints/partials/downloads.yaml.

To have Grav search in the blueprints folder of a theme, one should use the following import@ instead:

import@:
  type: partials/downloads
  context: user://themes/<theme>/blueprints

The combiniation of type and context will now point to /user/themes/<theme>/blueprints/partials/downloads.yaml

Untitled