fix: support images array for featured image (#967)
## Summary
* Adds `Params.images` fallback support to
`layouts/_partials/func/GetFeaturedImage.html`.
* Keeps `featured_image` as the primary source for backwards
compatibility.
* Uses the first value from `images` when `featured_image` is not set,
matching Hugo's embedded-template image metadata convention.
* Preserves existing Page Resource resolution for exact matches and the
existing `cover`/`feature` page-resource fallback.
## Issue
Closes #77.
## Documentation
Documentation PR: gohugo-ananke/documentation#10
## Verification
* Inspected issue #77 and its comments.
* Checked repository contribution guidance in `CONTRIBUTING.md`.
* Reviewed the existing featured image helper before changing it.
* No local Hugo build was run because the execution container cannot
resolve `github.com` for cloning dependencies.
## Notes
The lookup order after this change is:
1. `featured_image`
2. First value in `images`
3. First page resource containing `feature` or `cover` in its path