Skip to content

Commit

Permalink
feat: improve the iOS blog post
Browse files Browse the repository at this point in the history
  • Loading branch information
WcaleNieWolny committed Jan 21, 2025
1 parent f32ca75 commit 138b9db
Show file tree
Hide file tree
Showing 12 changed files with 208 additions and 101 deletions.
Binary file added public/apple_team_id.webp
Binary file not shown.
Binary file added public/github_new_secret.webp
Binary file not shown.
Binary file added public/ios_sign_tutorial_download.webp
Binary file not shown.
Binary file added public/ios_sign_tutorial_keytype.webp
Binary file not shown.
Binary file added public/ios_sign_tutorial_plus.webp
Binary file not shown.
Binary file added public/ios_sign_tutorial_upload.webp
Binary file not shown.
Binary file added public/terminal_ios_key_sign.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/terminal_ios_key_sign_v2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/xcode_app_click.webp
Binary file not shown.
Binary file added public/xcode_bundle_id.webp
Binary file not shown.
294 changes: 193 additions & 101 deletions src/content/blog/en/automatic-capacitor-ios-build-github-action.md

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions src/vue-pages/blog/[slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ const props = defineProps<{
description?: string
head_image_alt?: string
author_image_url?: string
coauthored_by?: string
coauthor_image_url?: string
coauthor_url?: string
}>()
const isFixedTocVisible = ref(false)
Expand Down Expand Up @@ -139,6 +142,18 @@ onMounted(() => window.addEventListener('scroll', handleScroll))
{{ props?.author }}
</a>
</div>
<template v-if="props?.coauthored_by">
<div class="flex flex-row items-center px-4 mx-auto mt-5 lg:max-w-1/2">
<div class="min-w-max min-h-[1px]">Co-authored By</div>
<div class="ml-3 h-[1px] w-full bg-white/30" />
</div>
<div class="flex items-center px-4 mx-auto mt-5 lg:max-w-1/2">
<img :src="props?.coauthor_image_url" class="object-cover rounded-full size-8" :alt="`author image ${props?.coauthored_by}`" :title="`author image ${props?.coauthored_by}`" />
<a :href="props?.coauthor_url" class="ml-3 text-lg font-medium" target="_blank" rel="noopener noreferrer">
{{ props?.coauthored_by }}
</a>
</div>
</template>
</div>
<section class="py-12 sm:py-16 lg:py-20 xl:py-24">
<div class="px-4 mx-auto max-w-7xl sm:px-6 lg:px-8">
Expand Down

0 comments on commit 138b9db

Please sign in to comment.